--- /dev/null
+#
+# 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-2018 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
+#
+# This is free software, licensed under the Apache License, Version 2.0
+
+include $(TOPDIR)/rules.mk
+
+# PKG_NAME:=luci-app-ddns
+
+# Version == major.minor.patch
+# increase on new functionality (minor) or patches (patch)
+PKG_VERSION:=2.4.9
+
+# Release == build
+# increase on changes of translation files
+PKG_RELEASE:=7
+
+PKG_LICENSE:=Apache-2.0
+PKG_MAINTAINER:=Ansuel Smith <ansuelsmth@gmail.com>
+
+# LuCI specific settings
+LUCI_TITLE:=LuCI Support for Dynamic DNS Client (ddns-scripts)
+LUCI_DEPENDS:=+luci-lib-ipkg +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)
+endef
+
+include $(TOPDIR)/package/luci/luci.mk
+
+# call BuildPackage - OpenWrt buildroot signature
--- /dev/null
+-- 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-2018 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.controller.ddns", package.seeall)
+
+local NX = require "nixio"
+local NXFS = require "nixio.fs"
+local DISP = require "luci.dispatcher"
+local HTTP = require "luci.http"
+local I18N = require "luci.i18n" -- not globally avalible here
+local IPKG = require "luci.model.ipkg"
+local SYS = require "luci.sys"
+local UCI = require "luci.model.uci"
+local UTIL = require "luci.util"
+local DDNS = require "luci.tools.ddns" -- ddns multiused functions
+
+luci_helper = "/usr/lib/ddns/dynamic_dns_lucihelper.sh"
+
+local srv_name = "ddns-scripts"
+local srv_ver_min = "2.7.7" -- minimum version of service required
+local app_name = "luci-app-ddns"
+local app_title = "Dynamic DNS"
+local app_version = "2.4.9-1"
+
+local translate = I18N.translate
+
+function index()
+ local nxfs = require "nixio.fs" -- global definitions not available
+ local sys = require "luci.sys" -- in function index()
+ local muci = require "luci.model.uci"
+
+ -- no config create an empty one
+ if not nxfs.access("/etc/config/ddns") then
+ nxfs.writefile("/etc/config/ddns", "")
+ end
+
+ -- preset new option "lookup_host" if not already defined
+ local uci = muci.cursor()
+ local commit = false
+ uci:foreach("ddns", "service", function (s)
+ if not s["lookup_host"] and s["domain"] then
+ uci:set("ddns", s[".name"], "lookup_host", s["domain"])
+ commit = true
+ end
+ end)
+ if commit then uci:commit("ddns") end
+ uci:unload("ddns")
+
+ entry( {"admin", "services", "ddns"}, cbi("ddns/overview"), _("Dynamic DNS"), 59)
+ 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"}, post("startstop") ).leaf = true
+ entry( {"admin", "services", "ddns", "status"}, call("status") ).leaf = true
+end
+
+-- Application specific information functions
+function app_description()
+ local tmp = {}
+ tmp[#tmp+1] = translate("Dynamic DNS allows that your router can be reached with \
+ a fixed hostname while having a dynamically changing IP address.")
+ tmp[#tmp+1] = [[<br />]]
+ tmp[#tmp+1] = translate("OpenWrt Wiki") .. ": "
+ tmp[#tmp+1] = [[<a href="https://openwrt.org/docs/guide-user/services/ddns/client" target="_blank">]]
+ tmp[#tmp+1] = translate("DDNS Client Documentation")
+ tmp[#tmp+1] = [[</a>]]
+ tmp[#tmp+1] = " --- "
+ tmp[#tmp+1] = [[<a href="https://openwrt.org/docs/guide-user/base-system/ddns" target="_blank">]]
+ tmp[#tmp+1] = translate("DDNS Client Configuration")
+ tmp[#tmp+1] = [[</a>]]
+
+ return table.concat(tmp)
+end
+function app_title_back()
+ local tmp = {}
+ tmp[#tmp+1] = [[<a href="]]
+ tmp[#tmp+1] = DISP.build_url("admin", "services", "ddns")
+ tmp[#tmp+1] = [[">]]
+ tmp[#tmp+1] = translate(app_title)
+ tmp[#tmp+1] = [[</a>]]
+ return table.concat(tmp)
+end
+
+-- Standardized application/service functions
+function app_title_main()
+ local tmp = {}
+ tmp[#tmp+1] = [[<a href="javascript:alert(']]
+ tmp[#tmp+1] = translate("Version Information")
+ tmp[#tmp+1] = [[\n\n]] .. app_name
+ tmp[#tmp+1] = [[\n]] .. translate("Version") .. [[: ]] .. app_version
+ tmp[#tmp+1] = [[\n\n]] .. srv_name .. [[ ]] .. translate("required") .. [[:]]
+ tmp[#tmp+1] = [[\n]] .. translate("Version") .. [[: ]]
+ tmp[#tmp+1] = srv_ver_min .. [[ ]] .. translate("or higher")
+ tmp[#tmp+1] = [[\n\n]] .. srv_name .. [[ ]] .. translate("installed") .. [[:]]
+ tmp[#tmp+1] = [[\n]] .. translate("Version") .. [[: ]]
+ tmp[#tmp+1] = (service_version() or translate("NOT installed"))
+ tmp[#tmp+1] = [[\n\n]]
+ tmp[#tmp+1] = [[')">]]
+ tmp[#tmp+1] = translate(app_title)
+ tmp[#tmp+1] = [[</a>]]
+
+ return table.concat(tmp)
+end
+
+function service_version()
+
+ local srv_ver_cmd = luci_helper .. " -V | awk {'print $2'} "
+ local ver
+
+ if IPKG then
+ ver = IPKG.info(srv_name)[srv_name].Version
+ else
+ ver = UTIL.exec(srv_ver_cmd)
+ end
+
+ if ver and #ver > 0 then return ver or nil end
+
+end
+
+function service_ok()
+ return IPKG.compare_versions((service_version() or "0"), ">=", srv_ver_min)
+end
+
+-- internal function to read all sections status and return data array
+local function _get_status()
+ local uci = UCI.cursor()
+ local service = SYS.init.enabled("ddns") and 1 or 0
+ local url_start = DISP.build_url("admin", "system", "startup")
+ local data = {} -- Array to transfer data to javascript
+
+ data[#data+1] = {
+ enabled = service, -- service enabled
+ url_up = url_start, -- link to enable DDS (System-Startup)
+ }
+
+ uci:foreach("ddns", "service", function (s)
+
+ -- Get section we are looking at
+ -- and enabled state
+ local section = s[".name"]
+ local enabled = tonumber(s["enabled"]) or 0
+ local datelast = "_empty_" -- formatted date of last update
+ local datenext = "_empty_" -- formatted date of next update
+ local datenextstat = nil
+
+ -- get force seconds
+ local force_seconds = DDNS.calc_seconds(
+ tonumber(s["force_interval"]) or 72 ,
+ s["force_unit"] or "hours" )
+ -- get/validate pid and last update
+ local pid = DDNS.get_pid(section)
+ local uptime = SYS.uptime()
+ local lasttime = DDNS.get_lastupd(section)
+ if lasttime > uptime then -- /var might not be linked to /tmp
+ lasttime = 0 -- and/or not cleared on reboot
+ end
+
+ -- no last update happen
+ if lasttime == 0 then
+ datelast = "_never_"
+
+ -- we read last update
+ else
+ -- calc last update
+ -- sys.epoch - sys uptime + lastupdate(uptime)
+ local epoch = os.time() - uptime + lasttime
+ -- use linux date to convert epoch
+ datelast = DDNS.epoch2date(epoch)
+ -- calc and fill next update
+ datenext = DDNS.epoch2date(epoch + force_seconds)
+ end
+
+ -- process running but update needs to happen
+ -- 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_"
+ datenextstat = translate("Verify")
+
+ -- run once
+ elseif force_seconds == 0 then
+ datenext = "_runonce_"
+ datenextstat = translate("Run once")
+
+ -- no process running and NOT enabled
+ elseif pid == 0 and enabled == 0 then
+ datenext = "_disabled_"
+ datenextstat = translate("Disabled")
+
+ -- no process running and enabled
+ elseif pid == 0 and enabled ~= 0 then
+ datenext = "_stopped_"
+ datenextstat = translate("Stopped")
+ end
+
+ -- get/set monitored interface and IP version
+ local iface = s["interface"] or "wan"
+ local use_ipv6 = tonumber(s["use_ipv6"]) or 0
+ local ipv = (use_ipv6 == 1) and "IPv6" or "IPv4"
+ iface = ipv .. " / " .. iface
+
+ -- try to get registered IP
+ local lookup_host = s["lookup_host"] or "_nolookup_"
+
+ local chk_sec = DDNS.calc_seconds(
+ tonumber(s["check_interval"]) or 10,
+ s["check_unit"] or "minutes" )
+ local reg_ip = DDNS.get_regip(section, chk_sec)
+
+ if reg_ip == "NOFILE" then
+ local dnsserver = s["dns_server"] or ""
+ local force_ipversion = tonumber(s["force_ipversion"] or 0)
+ local force_dnstcp = tonumber(s["force_dnstcp"] or 0)
+ local is_glue = tonumber(s["is_glue"] or 0)
+ local command = luci_helper .. [[ -]]
+ if (use_ipv6 == 1) then command = command .. [[6]] end
+ if (force_ipversion == 1) then command = command .. [[f]] end
+ if (force_dnstcp == 1) then command = command .. [[t]] end
+ if (is_glue == 1) then command = command .. [[g]] end
+ command = command .. [[l ]] .. lookup_host
+ command = command .. [[ -S ]] .. section
+ if (#dnsserver > 0) then command = command .. [[ -d ]] .. dnsserver end
+ command = command .. [[ -- get_registered_ip]]
+ reg_ip = SYS.exec(command)
+ end
+
+ -- fill transfer array
+ data[#data+1] = {
+ section = section,
+ enabled = enabled,
+ iface = iface,
+ lookup = lookup_host,
+ reg_ip = reg_ip,
+ pid = pid,
+ datelast = datelast,
+ datenext = datenext,
+ datenextstat = datenextstat
+ }
+ end)
+
+ uci:unload("ddns")
+ return data
+end
+
+-- called by XHR.get from detail_logview.htm
+function logread(section)
+ -- read application settings
+ local uci = UCI.cursor()
+ local ldir = uci:get("ddns", "global", "ddns_logdir") or "/var/log/ddns"
+ local lfile = ldir .. "/" .. section .. ".log"
+ local ldata = NXFS.readfile(lfile)
+
+ if not ldata or #ldata == 0 then
+ ldata="_nodata_"
+ end
+ uci:unload("ddns")
+ HTTP.write(ldata)
+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
+ if pid > 0 then
+ local tmp = NX.kill(pid, 15) -- terminate
+ NX.nanosleep(2) -- 2 second "show time"
+ -- status changed so return full status
+ data = _get_status()
+ HTTP.prepare_content("application/json")
+ HTTP.write_json(data)
+ return
+ end
+
+ -- read uncommitted changes
+ -- we don't save and commit data from other section or other options
+ -- only enabled will be done
+ local exec = true
+ local changed = uci:changes("ddns")
+ for k_config, v_section in pairs(changed) do
+ -- security check because uci.changes only gets our config
+ if k_config ~= "ddns" then
+ exec = false
+ break
+ end
+ for k_section, v_option in pairs(v_section) do
+ -- check if only section of button was changed
+ if k_section ~= section then
+ exec = false
+ break
+ end
+ for k_option, v_value in pairs(v_option) do
+ -- check if only enabled was changed
+ if k_option ~= "enabled" then
+ exec = false
+ break
+ end
+ end
+ end
+ end
+
+ -- we can not execute because other
+ -- uncommitted changes pending, so exit here
+ if not exec then
+ HTTP.write("_uncommitted_")
+ return
+ end
+
+ -- save enable state
+ uci:set("ddns", section, "enabled", ( (enabled == "true") and "1" or "0") )
+ uci:save("ddns")
+ uci:commit("ddns")
+ uci:unload("ddns")
+
+ -- start ddns-updater for section
+ local command = "%s -S %s -- start" %{ luci_helper, UTIL.shellquote(section) }
+ os.execute(command)
+ NX.nanosleep(3) -- 3 seconds "show time"
+
+ -- status changed so return full status
+ data = _get_status()
+ HTTP.prepare_content("application/json")
+ HTTP.write_json(data)
+end
+
+-- called by XHR.poll from overview_status.htm
+function status()
+ local data = _get_status()
+ HTTP.prepare_content("application/json")
+ HTTP.write_json(data)
+end
+
--- /dev/null
+-- 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-2016 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 SYS = require "luci.sys"
+local UTIL = require "luci.util"
+local HTTP = require "luci.http"
+local DISP = require "luci.dispatcher"
+local WADM = require "luci.tools.webadmin"
+local DTYP = require "luci.cbi.datatypes"
+local CTRL = require "luci.controller.ddns" -- this application's controller
+local DDNS = require "luci.tools.ddns" -- ddns multiused functions
+
+-- takeover arguments -- #######################################################
+local section = arg[1]
+
+-- html constants -- ###########################################################
+local font_red = "<font color='red'>"
+local font_off = "</font>"
+local bold_on = "<strong>"
+local bold_off = "</strong>"
+
+-- error text constants -- #####################################################
+local err_ipv6_plain = translate("IPv6 not supported") .. " - " ..
+ translate("please select 'IPv4' address version")
+local err_ipv6_basic = bold_on ..
+ font_red ..
+ translate("IPv6 not supported") ..
+ font_off ..
+ "<br />" .. translate("please select 'IPv4' address version") ..
+ bold_off
+local err_ipv6_other = bold_on ..
+ font_red ..
+ translate("IPv6 not supported") ..
+ font_off ..
+ "<br />" .. translate("please select 'IPv4' address version in") .. " " ..
+ [[<a href="]] ..
+ DISP.build_url("admin", "services", "ddns", "detail", section) ..
+ "?tab.dns." .. section .. "=basic" ..
+ [[">]] ..
+ translate("Basic Settings") ..
+ [[</a>]] ..
+ bold_off
+
+function err_tab_basic(self)
+ return translate("Basic Settings") .. " - " .. self.title .. ": "
+end
+function err_tab_adv(self)
+ return translate("Advanced Settings") .. " - " .. self.title .. ": "
+end
+function err_tab_timer(self)
+ return translate("Timer Settings") .. " - " .. self.title .. ": "
+end
+
+-- read services/services_ipv6 files -- ########################################
+local services4 = { } -- IPv4 --
+local fd4 = io.open("/etc/ddns/services", "r")
+if fd4 then
+ local ln, s, t
+ repeat
+ ln = fd4:read("*l")
+ s = ln and ln:match('^%s*".*') -- only handle lines beginning with "
+ s = s and s:gsub('"','') -- remove "
+ t = s and UTIL.split(s,"(%s+)",nil,true) -- split on whitespaces
+ if t then services4[t[1]]=t[2] end
+ until not ln
+ fd4:close()
+end
+
+local services6 = { } -- IPv6 --
+local fd6 = io.open("/etc/ddns/services_ipv6", "r")
+if fd6 then
+ local ln, s, t
+ repeat
+ ln = fd6:read("*l")
+ s = ln and ln:match('^%s*".*') -- only handle lines beginning with "
+ s = s and s:gsub('"','') -- remove "
+ t = s and UTIL.split(s,"(%s+)",nil,true) -- split on whitespaces
+ if t then services6[t[1]]=t[2] end
+ until not ln
+ fd6:close()
+end
+
+-- multi-used functions -- ####################################################
+-- function to verify settings around ip_source
+-- will use dynamic_dns_lucihelper to check if
+-- local IP can be read
+local function _verify_ip_source()
+ -- section is globally defined here be calling argument (see above)
+ local _arg
+
+ local _ipv6 = usev6:formvalue(section)
+ local _source = (_ipv6 == "1")
+ and src6:formvalue(section)
+ or src4:formvalue(section)
+
+ local command = CTRL.luci_helper .. [[ -]]
+ if (_ipv6 == "1") then command = command .. [[6]] end
+
+ if _source == "network" then
+ _arg = (_ipv6 == "1")
+ and ipn6:formvalue(section)
+ or ipn4:formvalue(section)
+ command = command .. [[n ]] .. _arg
+ elseif _source == "web" then
+ _arg = (_ipv6 == "1")
+ and iurl6:formvalue(section)
+ or iurl4:formvalue(section)
+ command = command .. [[u ]] .. _arg
+
+ -- proxy only needed for checking url
+ _arg = (pxy) and pxy:formvalue(section) or ""
+ if (_arg and #_arg > 0) then
+ command = command .. [[ -p ]] .. _arg
+ end
+ elseif _source == "interface" then
+ command = command .. [[i ]] .. ipi:formvalue(section)
+ elseif _source == "script" then
+ command = command .. [[s ]] .. ips:formvalue(section)
+ end
+ command = command .. [[ -- get_local_ip]]
+ return (SYS.call(command) == 0)
+end
+
+-- function to check if option is used inside url or script
+-- return -1 on error, 0 NOT required, 1 required
+local function _option_used(option, urlscript)
+ local surl -- search string for url
+ local ssh -- search string for script
+ local required -- option used inside url or script
+
+ if option == "domain" then surl, ssh = '%[DOMAIN%]', '%$domain'
+ elseif option == "username" then surl, ssh = '%[USERNAME%]', '%$username'
+ elseif option == "password" then surl, ssh = '%[PASSWORD%]', '%$password'
+ elseif option == "param_enc" then surl, ssh = '%[PARAMENC%]', '%$param_enc'
+ elseif option == "param_opt" then surl, ssh = '%[PARAMOPT%]', '%$param_opt'
+ else
+ error("undefined option")
+ return -1 -- return on error
+ end
+
+ local required = false
+ -- handle url
+ if urlscript:find('http') then
+ required = ( urlscript:find(surl) )
+ -- handle script
+ else
+ if not urlscript:find("/") then
+ -- might be inside ddns-scripts directory
+ urlscript = "/usr/lib/ddns/" .. urlscript
+ end
+ -- problem with script exit here
+ if not NXFS.access(urlscript) then return -1 end
+
+ local f = io.input(urlscript)
+ -- still problem with script exit here
+ if not f then return -1 end
+ for l in f:lines() do
+ repeat
+ if l:find('^#') then break end -- continue on comment lines
+ required = ( l:find(surl) or l:find(ssh) )
+ until true
+ if required then break end
+ end
+ f:close()
+ end
+ return (required and 1 or 0)
+end
+
+-- function to verify if option is valid
+local function _option_validate(self, value, optional)
+ -- section is globally defined here be calling argument (see above)
+ local fusev6 = usev6:formvalue(section) or "0"
+ local fsvc4 = svc4:formvalue(section) or "-"
+ local fsvc6 = svc6:formvalue(section) or "-"
+ local urlsh, used
+
+ -- IP-Version dependent custom service selected
+ if (fusev6 == "0" and fsvc4 == "-") or
+ (fusev6 == "1" and fsvc6 == "-") then
+ -- read custom url
+ urlsh = uurl:formvalue(section) or ""
+ -- no url then read custom script
+ if (#urlsh == 0) then
+ urlsh = ush:formvalue(section) or ""
+ end
+ -- IPv4 read from services4 table
+ elseif (fusev6 == "0") then
+ urlsh = services4[fsvc4] or ""
+ -- IPv6 read from services6 table
+ else
+ urlsh = services6[fsvc6] or ""
+ end
+ -- problem with url or script exit here
+ -- error handled somewhere else
+ if (#urlsh == 0) then return "" end
+
+ used = _option_used(self.option, urlsh)
+ -- on error or not used return empty string
+ if used < 1 then return "" end
+ -- needed but no data then return error
+ if not value or (#value == 0) then
+ if optional then return nil end
+ return nil, err_tab_basic(self) .. translate("missing / required")
+ end
+ return value
+end
+
+-- cbi-map definition -- #######################################################
+local m = Map("ddns")
+m.title = CTRL.app_title_back()
+m.description = CTRL.app_description()
+m.redirect = DISP.build_url("admin", "services", "ddns")
+
+m.on_after_commit = function(self)
+ if self.changed then -- changes ?
+ local pid = DDNS.get_pid(section)
+ if pid > 0 then -- running ?
+ local tmp = NX.kill(pid, 1) -- send SIGHUP
+ end
+ end
+end
+
+-- provider switch was requested, save and reload page
+if m:formvalue("cbid.ddns.%s._switch" % section) then -- section == arg[1]
+ local fsvc
+ local fusev6 = m:formvalue("cbid.ddns.%s.use_ipv6" % section) or "0"
+ if fusev6 == "1" then
+ fsvc = m:formvalue("cbid.ddns.%s.ipv6_service_name" % section) or ""
+ else
+ fsvc = m:formvalue("cbid.ddns.%s.ipv4_service_name" % section) or ""
+ end
+
+ if fusev6 ~= (m:get(section, "use_ipv6") or "0") then -- IPv6 was changed
+ m:set(section, "use_ipv6", fusev6) -- save it
+ end
+
+ if fsvc ~= "-" then -- NOT "custom"
+ m:set(section, "service_name", fsvc) -- save it
+ else -- else
+ m:del(section, "service_name") -- delete it
+ end
+ m.uci:save(m.config)
+
+ -- reload page
+ HTTP.redirect( DISP.build_url("admin", "services", "ddns", "detail", section) )
+ return
+end
+
+-- read application settings -- ################################################
+-- log directory
+local logdir = m.uci:get(m.config, "global", "ddns_logdir") or "/var/log/ddns"
+
+-- cbi-section definition -- ###################################################
+local ns = m:section( NamedSection, section, "service",
+ translate("Details for") .. ([[: <strong>%s</strong>]] % section),
+ translate("Configure here the details for selected Dynamic DNS service.") )
+ns.instance = section -- arg [1]
+ns:tab("basic", translate("Basic Settings"), nil )
+ns:tab("advanced", translate("Advanced Settings"), nil )
+ns:tab("timer", translate("Timer Settings"), nil )
+ns:tab("logview", translate("Log File Viewer"), nil )
+
+-- TAB: Basic #####################################################################################
+-- enabled -- #################################################################
+en = ns:taboption("basic", Flag, "enabled",
+ translate("Enabled"),
+ translate("If this service section is disabled it could not be started." .. "<br />" ..
+ "Neither from LuCI interface nor from console") )
+en.orientation = "horizontal"
+
+-- IPv4/IPv6 - lookup_host -- #################################################
+luh = ns:taboption("basic", Value, "lookup_host",
+ translate("Lookup Hostname"),
+ translate("Hostname/FQDN to validate, if IP update happen or necessary") )
+luh.rmempty = false
+luh.placeholder = "myhost.example.com"
+function luh.validate(self, value)
+ if not value
+ or not (#value > 0)
+ or not DTYP.hostname(value) then
+ return nil, err_tab_basic(self) .. translate("invalid FQDN / required - Sample") .. ": 'myhost.example.com'"
+ else
+ return UTIL.trim(value)
+ end
+end
+function luh.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- use_ipv6 -- ################################################################
+
+--We call it globally as it's called 11 times even outside specific function, saves 11 os.execute slow command!
+local has_ipv6 = DDNS.env_info("has_ipv6")
+
+usev6 = ns:taboption("basic", ListValue, "use_ipv6",
+ translate("IP address version"),
+ translate("Defines which IP address 'IPv4/IPv6' is send to the DDNS provider") )
+usev6.widget = "radio"
+usev6.default = "0"
+usev6:value("0", translate("IPv4-Address") )
+function usev6.cfgvalue(self, section)
+ local value = AbstractValue.cfgvalue(self, section) or "0"
+ if has_ipv6 or (value == "1" and not has_ipv6) then
+ self:value("1", translate("IPv6-Address") )
+ end
+ if value == "1" and not has_ipv6 then
+ self.description = err_ipv6_basic
+ end
+ return value
+end
+function usev6.validate(self, value)
+ if (value == "1" and has_ipv6) or value == "0" then
+ return value
+ end
+ return nil, err_tab_basic(self) .. err_ipv6_plain
+end
+function usev6.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4 - service_name -- #####################################################
+svc4 = ns:taboption("basic", ListValue, "ipv4_service_name",
+ translate("DDNS Service provider") .. " [IPv4]" )
+svc4.default = "-"
+svc4:depends("use_ipv6", "0") -- only show on IPv4
+function svc4.cfgvalue(self, section)
+ local v = DDNS.read_value(self, section, "service_name")
+ if v and (#v > 0) then
+ for s, u in UTIL.kspairs(services4) do
+ if v == s then return v end
+ end
+ end
+ return "-"
+end
+function svc4.validate(self, value)
+ if usev6:formvalue(section) ~= "1" then -- do only on IPv4
+ return value
+ else
+ return "" -- suppress validate error
+ end
+end
+function svc4.write(self, section, value)
+ if usev6:formvalue(section) ~= "1" then -- do only IPv4 here
+ self.map:del(section, self.option) -- to be shure
+ if value ~= "-" then -- and write "service_name
+ self.map:del(section, "update_url") -- delete update_url
+ self.map:del(section, "update_script") -- delete update_script
+ return self.map:set(section, "service_name", value)
+ else
+ return self.map:del(section, "service_name")
+ end
+ end
+end
+function svc4.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv6 - service_name -- #####################################################
+svc6 = ns:taboption("basic", ListValue, "ipv6_service_name",
+ translate("DDNS Service provider") .. " [IPv6]" )
+svc6.default = "-"
+svc6:depends("use_ipv6", "1") -- only show on IPv6
+if not has_ipv6 then
+ svc6.description = err_ipv6_basic
+end
+function svc6.cfgvalue(self, section)
+ local v = DDNS.read_value(self, section, "service_name")
+ if v and (#v > 0) then
+ for s, u in UTIL.kspairs(services4) do
+ if v == s then return v end
+ end
+ end
+ return "-"
+end
+function svc6.validate(self, value)
+ if usev6:formvalue(section) == "1" then -- do only on IPv6
+ if has_ipv6 then return value end
+ return nil, err_tab_basic(self) .. err_ipv6_plain
+ else
+ return "" -- suppress validate error
+ end
+end
+function svc6.write(self, section, value)
+ if usev6:formvalue(section) == "1" then -- do only when IPv6
+ self.map:del(section, self.option) -- delete "ipv6_service_name" helper
+ if value ~= "-" then -- and write "service_name
+ self.map:del(section, "update_url") -- delete update_url
+ self.map:del(section, "update_script") -- delete update_script
+ return self.map:set(section, "service_name", value)
+ else
+ return self.map:del(section, "service_name")
+ end
+ end
+end
+function svc6.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - change Provider -- #############################################
+svs = ns:taboption("basic", Button, "_switch")
+svs.title = translate("Really change DDNS provider?")
+svs.inputtitle = translate("Change provider")
+svs.inputstyle = "apply"
+
+-- IPv4/IPv6 - update_url -- ##################################################
+uurl = ns:taboption("basic", Value, "update_url",
+ translate("Custom update-URL"),
+ translate("Update URL to be used for updating your DDNS Provider." .. "<br />" ..
+ "Follow instructions you will find on their WEB page.") )
+function uurl.validate(self, value)
+ local fush = ush:formvalue(section)
+ local fusev6 = usev6:formvalue(section)
+
+ if (fusev6 ~= "1" and svc4:formvalue(section) ~= "-") or
+ (fusev6 == "1" and svc6:formvalue(section) ~= "-") then
+ return "" -- suppress validate error
+ elseif not value or (#value == 0) then
+ if not fush or (#fush == 0) then
+ return nil, err_tab_basic(self) .. translate("missing / required")
+ else
+ return "" -- suppress validate error / update_script is given
+ end
+ elseif (#fush > 0) then
+ return nil, err_tab_basic(self) .. translate("either url or script could be set")
+ end
+
+ local url = DDNS.parse_url(value)
+ if not url.scheme == "http" then
+ return nil, err_tab_basic(self) .. translate("must start with 'http://'")
+ elseif not url.query then
+ return nil, err_tab_basic(self) .. "<QUERY> " .. translate("missing / required")
+ elseif not url.host then
+ return nil, err_tab_basic(self) .. "<HOST> " .. translate("missing / required")
+ elseif SYS.call([[nslookup ]] .. url.host .. [[ >/dev/null 2>&1]]) ~= 0 then
+ return nil, err_tab_basic(self) .. translate("can not resolve host: ") .. url.host
+ end
+
+ return value
+end
+function uurl.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - update_script -- ###############################################
+ush = ns:taboption("basic", Value, "update_script",
+ translate("Custom update-script"),
+ translate("Custom update script to be used for updating your DDNS Provider.") )
+function ush.validate(self, value)
+ local fuurl = uurl:formvalue(section)
+ local fusev6 = usev6:formvalue(section)
+
+ if (fusev6 ~= "1" and svc4:formvalue(section) ~= "-") or
+ (fusev6 == "1" and svc6:formvalue(section) ~= "-") then
+ return "" -- suppress validate error
+ elseif not value or (#value == 0) then
+ if not fuurl or (#fuurl == 0) then
+ return nil, err_tab_basic(self) .. translate("missing / required")
+ else
+ return "" -- suppress validate error / update_url is given
+ end
+ elseif (#fuurl > 0) then
+ return nil, err_tab_basic(self) .. translate("either url or script could be set")
+ elseif not NXFS.access(value) then
+ return nil, err_tab_basic(self) .. translate("File not found")
+ end
+ return value
+end
+function ush.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - domain -- ######################################################
+dom = ns:taboption("basic", Value, "domain",
+ translate("Domain"),
+ translate("Replaces [DOMAIN] in Update-URL") )
+dom.placeholder = "myhost.example.com"
+function dom.validate(self, value)
+ return _option_validate(self, value)
+end
+function dom.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - username -- ####################################################
+user = ns:taboption("basic", Value, "username",
+ translate("Username"),
+ translate("Replaces [USERNAME] in Update-URL (URL-encoded)") )
+function user.validate(self, value)
+ return _option_validate(self, value)
+end
+function user.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - password -- ####################################################
+pw = ns:taboption("basic", Value, "password",
+ translate("Password"),
+ translate("Replaces [PASSWORD] in Update-URL (URL-encoded)") )
+pw.password = true
+function pw.validate(self, value)
+ return _option_validate(self, value)
+end
+function pw.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - param_enc -- ###################################################
+pe = ns:taboption("basic", Value, "param_enc",
+ translate("Optional Encoded Parameter"),
+ translate("Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)") )
+function pe.validate(self, value)
+ return _option_validate(self, value, true)
+end
+function pe.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - param_opt -- ###################################################
+po = ns:taboption("basic", Value, "param_opt",
+ translate("Optional Parameter"),
+ translate("Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)") )
+function po.validate(self, value)
+ return _option_validate(self, value, true)
+end
+function po.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- handled service dependent show/display -- ##################################
+-- IPv4 --
+local cv4 = svc4:cfgvalue(section)
+if cv4 ~= "-" then
+ svs:depends ("ipv4_service_name", "-" ) -- show only if "-"
+ ush:depends ("ipv4_service_name", "?")
+ uurl:depends("ipv4_service_name", "?")
+else
+ uurl:depends("ipv4_service_name", "-")
+ ush:depends ("ipv4_service_name", "-")
+ dom:depends("ipv4_service_name", "-" )
+ user:depends("ipv4_service_name", "-" )
+ pw:depends("ipv4_service_name", "-" )
+ pe:depends("ipv4_service_name", "-" )
+ po:depends("ipv4_service_name", "-" )
+end
+for s, u in UTIL.kspairs(services4) do
+ svc4:value(s) -- fill DropDown-List
+ if cv4 ~= s then
+ svs:depends("ipv4_service_name", s )
+ else
+ dom:depends ("ipv4_service_name", ((_option_used(dom.option, u) == 1) and s or "?") )
+ user:depends("ipv4_service_name", ((_option_used(user.option, u) == 1) and s or "?") )
+ pw:depends ("ipv4_service_name", ((_option_used(pw.option, u) == 1) and s or "?") )
+ pe:depends ("ipv4_service_name", ((_option_used(pe.option, u) == 1) and s or "?") )
+ po:depends ("ipv4_service_name", ((_option_used(po.option, u) == 1) and s or "?") )
+ end
+end
+svc4:value("-", translate("-- custom --") )
+
+-- IPv6 --
+local cv6 = svc6:cfgvalue(section)
+if cv6 ~= "-" then
+ svs:depends ("ipv6_service_name", "-" )
+ uurl:depends("ipv6_service_name", "?")
+ ush:depends ("ipv6_service_name", "?")
+else
+ uurl:depends("ipv6_service_name", "-")
+ ush:depends ("ipv6_service_name", "-")
+ dom:depends("ipv6_service_name", "-" )
+ user:depends("ipv6_service_name", "-" )
+ pw:depends("ipv6_service_name", "-" )
+ pe:depends("ipv6_service_name", "-" )
+ po:depends("ipv6_service_name", "-" )
+end
+for s, u in UTIL.kspairs(services6) do
+ svc6:value(s) -- fill DropDown-List
+ if cv6 ~= s then
+ svs:depends("ipv6_service_name", s )
+ else
+ dom:depends ("ipv6_service_name", ((_option_used(dom.option, u) == 1) and s or "?") )
+ user:depends("ipv6_service_name", ((_option_used(user.option, u) == 1) and s or "?") )
+ pw:depends ("ipv6_service_name", ((_option_used(pw.option, u) == 1) and s or "?") )
+ pe:depends ("ipv6_service_name", ((_option_used(pe.option, u) == 1) and s or "?") )
+ po:depends ("ipv6_service_name", ((_option_used(po.option, u) == 1) and s or "?") )
+ end
+end
+svc6:value("-", translate("-- custom --") )
+
+-- IPv4/IPv6 - use_https -- ###################################################
+
+--We call it globally as it's called 4 times outside specific function.
+local has_ssl = DDNS.env_info("has_ssl")
+
+if has_ssl or ( ( m:get(section, "use_https") or "0" ) == "1" ) then
+ https = ns:taboption("basic", Flag, "use_https",
+ translate("Use HTTP Secure") )
+ https.orientation = "horizontal"
+ function https.cfgvalue(self, section)
+ local value = AbstractValue.cfgvalue(self, section)
+ if not has_ssl and value == "1" then
+ self.description = bold_on .. font_red ..
+ translate("HTTPS not supported") .. font_off .. "<br />" ..
+ translate("please disable") .. " !" .. bold_off
+ else
+ self.description = translate("Enable secure communication with DDNS provider")
+ end
+ return value
+ end
+ function https.validate(self, value)
+ if (value == "1" and has_ssl ) or value == "0" then return value end
+ return nil, err_tab_basic(self) .. translate("HTTPS not supported") .. " !"
+ end
+ function https.write(self, section, value)
+ if value == "1" then
+ return self.map:set(section, self.option, value)
+ else
+ self.map:del(section, "cacert")
+ return self.map:del(section, self.option)
+ end
+ end
+end
+
+-- IPv4/IPv6 - cacert -- ######################################################
+if has_ssl then
+ cert = ns:taboption("basic", Value, "cacert",
+ translate("Path to CA-Certificate"),
+ translate("directory or path/file") .. "<br />" ..
+ translate("or") .. bold_on .. " IGNORE " .. bold_off ..
+ translate("to run HTTPS without verification of server certificates (insecure)") )
+ cert:depends("use_https", "1")
+ cert.placeholder = "/etc/ssl/certs"
+ cert.forcewrite = true
+ function cert.validate(self, value)
+ if https:formvalue(section) ~= "1" then
+ return "" -- suppress validate error if NOT https
+ end
+ if value then -- otherwise errors in datatype check
+ if DTYP.directory(value)
+ or DTYP.file(value)
+ or (value == "IGNORE")
+ or (#value == 0) then
+ return value
+ end
+ end
+ return nil, err_tab_basic(self) ..
+ translate("file or directory not found or not 'IGNORE'") .. " !"
+ end
+ function cert.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+ end
+end
+
+-- TAB: Advanced #################################################################################
+-- IPv4 - ip_source -- ########################################################
+src4 = ns:taboption("advanced", ListValue, "ipv4_source",
+ translate("IP address source") .. " [IPv4]",
+ translate("Defines the source to read systems IPv4-Address from, that will be send to the DDNS provider") )
+src4:depends("use_ipv6", "0") -- IPv4 selected
+src4.default = "network"
+src4:value("network", translate("Network"))
+src4:value("web", translate("URL"))
+src4:value("interface", translate("Interface"))
+src4:value("script", translate("Script"))
+function src4.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "ip_source")
+end
+function src4.validate(self, value)
+ if usev6:formvalue(section) == "1" then
+ return "" -- ignore on IPv6 selected
+ elseif not _verify_ip_source() then
+ return nil, err_tab_adv(self) ..
+ translate("can not detect local IP. Please select a different Source combination")
+ else
+ return value
+ end
+end
+function src4.write(self, section, value)
+ if usev6:formvalue(section) == "1" then
+ return true -- ignore on IPv6 selected
+ elseif value == "network" then
+ self.map:del(section, "ip_url") -- delete not need parameters
+ self.map:del(section, "ip_interface")
+ self.map:del(section, "ip_script")
+ elseif value == "web" then
+ self.map:del(section, "ip_network") -- delete not need parameters
+ self.map:del(section, "ip_interface")
+ self.map:del(section, "ip_script")
+ elseif value == "interface" then
+ self.map:del(section, "ip_network") -- delete not need parameters
+ self.map:del(section, "ip_url")
+ self.map:del(section, "ip_script")
+ elseif value == "script" then
+ self.map:del(section, "ip_network")
+ self.map:del(section, "ip_url") -- delete not need parameters
+ self.map:del(section, "ip_interface")
+ end
+ self.map:del(section, self.option) -- delete "ipv4_source" helper
+ return self.map:set(section, "ip_source", value) -- and write "ip_source
+end
+function src4.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv6 - ip_source -- ########################################################
+src6 = ns:taboption("advanced", ListValue, "ipv6_source",
+ translate("IP address source") .. " [IPv6]",
+ translate("Defines the source to read systems IPv6-Address from, that will be send to the DDNS provider") )
+src6:depends("use_ipv6", 1) -- IPv6 selected
+src6.default = "network"
+src6:value("network", translate("Network"))
+src6:value("web", translate("URL"))
+src6:value("interface", translate("Interface"))
+src6:value("script", translate("Script"))
+if not has_ipv6 then
+ src6.description = err_ipv6_other
+end
+function src6.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "ip_source")
+end
+function src6.validate(self, value)
+ if usev6:formvalue(section) ~= "1" then
+ return "" -- ignore on IPv4 selected
+ elseif not has_ipv6 then
+ return nil, err_tab_adv(self) .. err_ipv6_plain
+ elseif not _verify_ip_source() then
+ return nil, err_tab_adv(self) ..
+ translate("can not detect local IP. Please select a different Source combination")
+ else
+ return value
+ end
+end
+function src6.write(self, section, value)
+ if usev6:formvalue(section) ~= "1" then
+ return true -- ignore on IPv4 selected
+ elseif value == "network" then
+ self.map:del(section, "ip_url") -- delete not need parameters
+ self.map:del(section, "ip_interface")
+ self.map:del(section, "ip_script")
+ elseif value == "web" then
+ self.map:del(section, "ip_network") -- delete not need parameters
+ self.map:del(section, "ip_interface")
+ self.map:del(section, "ip_script")
+ elseif value == "interface" then
+ self.map:del(section, "ip_network") -- delete not need parameters
+ self.map:del(section, "ip_url")
+ self.map:del(section, "ip_script")
+ elseif value == "script" then
+ self.map:del(section, "ip_network")
+ self.map:del(section, "ip_url") -- delete not need parameters
+ self.map:del(section, "ip_interface")
+ end
+ self.map:del(section, self.option) -- delete "ipv4_source" helper
+ return self.map:set(section, "ip_source", value) -- and write "ip_source
+end
+function src6.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4 - ip_network (default "wan") -- #######################################
+ipn4 = ns:taboption("advanced", ListValue, "ipv4_network",
+ translate("Network") .. " [IPv4]",
+ translate("Defines the network to read systems IPv4-Address from") )
+ipn4:depends("ipv4_source", "network")
+ipn4.default = "wan"
+WADM.cbi_add_networks(ipn4)
+function ipn4.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "ip_network")
+end
+function ipn4.validate(self, value)
+ if usev6:formvalue(section) == "1"
+ or src4:formvalue(section) ~= "network" then
+ -- ignore if IPv6 selected OR
+ -- ignore everything except "network"
+ return ""
+ else
+ return value
+ end
+end
+function ipn4.write(self, section, value)
+ if usev6:formvalue(section) == "1"
+ or src4:formvalue(section) ~= "network" then
+ -- ignore if IPv6 selected OR
+ -- ignore everything except "network"
+ return true
+ else
+ -- set also as "interface" for monitoring events changes/hot-plug
+ self.map:set(section, "interface", value)
+ self.map:del(section, self.option) -- delete "ipv4_network" helper
+ return self.map:set(section, "ip_network", value) -- and write "ip_network"
+ end
+end
+function ipn4.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv6 - ip_network (default "wan6") -- ######################################
+ipn6 = ns:taboption("advanced", ListValue, "ipv6_network",
+ translate("Network") .. " [IPv6]" )
+ipn6:depends("ipv6_source", "network")
+ipn6.default = "wan6"
+WADM.cbi_add_networks(ipn6)
+if has_ipv6 then
+ ipn6.description = translate("Defines the network to read systems IPv6-Address from")
+else
+ ipn6.description = err_ipv6_other
+end
+function ipn6.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "ip_network")
+end
+function ipn6.validate(self, value)
+ if usev6:formvalue(section) ~= "1"
+ or src6:formvalue(section) ~= "network" then
+ -- ignore if IPv4 selected OR
+ -- ignore everything except "network"
+ return ""
+ elseif has_ipv6 then
+ return value
+ else
+ return nil, err_tab_adv(self) .. err_ipv6_plain
+ end
+end
+function ipn6.write(self, section, value)
+ if usev6:formvalue(section) ~= "1"
+ or src6:formvalue(section) ~= "network" then
+ -- ignore if IPv4 selected OR
+ -- ignore everything except "network"
+ return true
+ else
+ -- set also as "interface" for monitoring events changes/hotplug
+ self.map:set(section, "interface", value)
+ self.map:del(section, self.option) -- delete "ipv6_network" helper
+ return self.map:set(section, "ip_network", value) -- and write "ip_network"
+ end
+end
+function ipn6.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4 - ip_url (default "checkip.dyndns.com") -- ############################
+iurl4 = ns:taboption("advanced", Value, "ipv4_url",
+ translate("URL to detect") .. " [IPv4]",
+ translate("Defines the Web page to read systems IPv4-Address from") )
+iurl4:depends("ipv4_source", "web")
+iurl4.default = "http://checkip.dyndns.com"
+function iurl4.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "ip_url")
+end
+function iurl4.validate(self, value)
+ if usev6:formvalue(section) == "1"
+ or src4:formvalue(section) ~= "web" then
+ -- ignore if IPv6 selected OR
+ -- ignore everything except "web"
+ return ""
+ elseif not value or #value == 0 then
+ return nil, err_tab_adv(self) .. translate("missing / required")
+ end
+
+ local url = DDNS.parse_url(value)
+ if not (url.scheme == "http" or url.scheme == "https") then
+ return nil, err_tab_adv(self) .. translate("must start with 'http://'")
+ elseif not url.host then
+ return nil, err_tab_adv(self) .. "<HOST> " .. translate("missing / required")
+ elseif SYS.call([[nslookup ]] .. url.host .. [[>/dev/null 2>&1]]) ~= 0 then
+ return nil, err_tab_adv(self) .. translate("can not resolve host: ") .. url.host
+ else
+ return value
+ end
+end
+function iurl4.write(self, section, value)
+ if usev6:formvalue(section) == "1"
+ or src4:formvalue(section) ~= "web" then
+ -- ignore if IPv6 selected OR
+ -- ignore everything except "web"
+ return true
+ else
+ self.map:del(section, self.option) -- delete "ipv4_url" helper
+ return self.map:set(section, "ip_url", value) -- and write "ip_url"
+ end
+end
+function iurl4.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv6 - ip_url (default "checkipv6.dyndns.com") -- ##########################
+iurl6 = ns:taboption("advanced", Value, "ipv6_url",
+ translate("URL to detect") .. " [IPv6]" )
+iurl6:depends("ipv6_source", "web")
+iurl6.default = "http://checkipv6.dyndns.com"
+if has_ipv6 then
+ iurl6.description = translate("Defines the Web page to read systems IPv6-Address from")
+else
+ iurl6.description = err_ipv6_other
+end
+function iurl6.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "ip_url")
+end
+function iurl6.validate(self, value)
+ if usev6:formvalue(section) ~= "1"
+ or src6:formvalue(section) ~= "web" then
+ -- ignore if IPv4 selected OR
+ -- ignore everything except "web"
+ return ""
+ elseif not has_ipv6 then
+ return nil, err_tab_adv(self) .. err_ipv6_plain
+ elseif not value or #value == 0 then
+ return nil, err_tab_adv(self) .. translate("missing / required")
+ end
+
+ local url = DDNS.parse_url(value)
+ if not (url.scheme == "http" or url.scheme == "https") then
+ return nil, err_tab_adv(self) .. translate("must start with 'http://'")
+ elseif not url.host then
+ return nil, err_tab_adv(self) .. "<HOST> " .. translate("missing / required")
+ elseif SYS.call([[nslookup ]] .. url.host .. [[>/dev/null 2>&1]]) ~= 0 then
+ return nil, err_tab_adv(self) .. translate("can not resolve host: ") .. url.host
+ else
+ return value
+ end
+end
+function iurl6.write(self, section, value)
+ if usev6:formvalue(section) ~= "1"
+ or src6:formvalue(section) ~= "web" then
+ -- ignore if IPv4 selected OR
+ -- ignore everything except "web"
+ return true
+ else
+ self.map:del(section, self.option) -- delete "ipv6_url" helper
+ return self.map:set(section, "ip_url", value) -- and write "ip_url"
+ end
+end
+function iurl6.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4 + IPv6 - ip_interface -- ##############################################
+ipi = ns:taboption("advanced", ListValue, "ip_interface",
+ translate("Interface"),
+ translate("Defines the interface to read systems IP-Address from") )
+ipi:depends("ipv4_source", "interface") -- IPv4
+ipi:depends("ipv6_source", "interface") -- or IPv6
+for _, v in pairs(SYS.net.devices()) do
+ -- show only interface set to a network
+ -- and ignore loopback
+ net = WADM.iface_get_network(v)
+ if net and net ~= "loopback" then
+ ipi:value(v)
+ end
+end
+function ipi.validate(self, value)
+ local fusev6 = usev6:formvalue(section)
+ if (fusev6 ~= "1" and src4:formvalue(section) ~= "interface")
+ or (fusev6 == "1" and src6:formvalue(section) ~= "interface") then
+ return ""
+ else
+ return value
+ end
+end
+function ipi.write(self, section, value)
+ local fusev6 = usev6:formvalue(section)
+ if (fusev6 ~= "1" and src4:formvalue(section) ~= "interface")
+ or (fusev6 == "1" and src6:formvalue(section) ~= "interface") then
+ return true
+ else
+ -- get network from device to
+ -- set also as "interface" for monitoring events changes/hotplug
+ local net = WADM.iface_get_network(value)
+ self.map:set(section, "interface", net)
+ return self.map:set(section, self.option, value)
+ end
+end
+function ipi.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4 + IPv6 - ip_script -- #################################################
+ips = ns:taboption("advanced", Value, "ip_script",
+ translate("Script"),
+ translate("User defined script to read systems IP-Address") )
+ips:depends("ipv4_source", "script") -- IPv4
+ips:depends("ipv6_source", "script") -- or IPv6
+ips.placeholder = "/path/to/script.sh"
+function ips.validate(self, value)
+ local fusev6 = usev6:formvalue(section)
+ local split
+ if value then split = UTIL.split(value, " ") end
+
+ if (fusev6 ~= "1" and src4:formvalue(section) ~= "script")
+ or (fusev6 == "1" and src6:formvalue(section) ~= "script") then
+ return ""
+ 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
+ return value
+ end
+end
+function ips.write(self, section, value)
+ local fusev6 = usev6:formvalue(section)
+ if (fusev6 ~= "1" and src4:formvalue(section) ~= "script")
+ or (fusev6 == "1" and src6:formvalue(section) ~= "script") then
+ return true
+ else
+ return self.map:set(section, self.option, value)
+ end
+end
+function ips.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4 - interface - default "wan" -- ########################################
+-- event network to monitor changes/hotplug/dynamic_dns_updater.sh
+-- only needs to be set if "ip_source"="web" or "script"
+-- if "ip_source"="network" or "interface" we use their network
+eif4 = ns:taboption("advanced", ListValue, "ipv4_interface",
+ translate("Event Network") .. " [IPv4]",
+ translate("Network on which the ddns-updater scripts will be started") )
+eif4:depends("ipv4_source", "web")
+eif4:depends("ipv4_source", "script")
+eif4.default = "wan"
+WADM.cbi_add_networks(eif4)
+function eif4.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "interface")
+end
+function eif4.validate(self, value)
+ local fsrc4 = src4:formvalue(section) or ""
+ if usev6:formvalue(section) == "1"
+ or fsrc4 == "network"
+ or fsrc4 == "interface" then
+ return "" -- ignore IPv6, network, interface
+ else
+ return value
+ end
+end
+function eif4.write(self, section, value)
+ local fsrc4 = src4:formvalue(section) or ""
+ if usev6:formvalue(section) == "1"
+ or fsrc4 == "network"
+ or fsrc4 == "interface" then
+ return true -- ignore IPv6, network, interface
+ else
+ self.map:del(section, self.option) -- delete "ipv4_interface" helper
+ return self.map:set(section, "interface", value) -- and write "interface"
+ end
+end
+function eif4.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv6 - interface - default "wan6" -- #######################################
+-- event network to monitor changes/hotplug
+-- only needs to be set if "ip_source"="web" or "script"
+-- if "ip_source"="network" or "interface" we use their network
+eif6 = ns:taboption("advanced", ListValue, "ipv6_interface",
+ translate("Event Network") .. " [IPv6]" )
+eif6:depends("ipv6_source", "web")
+eif6:depends("ipv6_source", "script")
+eif6.default = "wan6"
+WADM.cbi_add_networks(eif6)
+if not has_ipv6 then
+ eif6.description = err_ipv6_other
+else
+ eif6.description = translate("Network on which the ddns-updater scripts will be started")
+end
+function eif6.cfgvalue(self, section)
+ return DDNS.read_value(self, section, "interface")
+end
+function eif6.validate(self, value)
+ local fsrc6 = src6:formvalue(section) or ""
+ if usev6:formvalue(section) ~= "1"
+ or fsrc6 == "network"
+ or fsrc6 == "interface" then
+ return "" -- ignore IPv4, network, interface
+ elseif not has_ipv6 then
+ return nil, err_tab_adv(self) .. err_ipv6_plain
+ else
+ return value
+ end
+end
+function eif6.write(self, section, value)
+ local fsrc6 = src6:formvalue(section) or ""
+ if usev6:formvalue(section) ~= "1"
+ or fsrc6 == "network"
+ or fsrc6 == "interface" then
+ return true -- ignore IPv4, network, interface
+ else
+ self.map:del(section, self.option) -- delete "ipv6_interface" helper
+ return self.map:set(section, "interface", value) -- and write "interface"
+ end
+end
+function eif6.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- IPv4/IPv6 - bind_network -- ################################################
+
+local has_bindnet = DDNS.env_info("has_bindnet")
+
+if has_bindnet 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.default = ""
+ bnet:value("", translate("-- default --"))
+ WADM.cbi_add_networks(bnet)
+ function bnet.cfgvalue(self, section)
+ local value = AbstractValue.cfgvalue(self, section)
+ if not has_bindnet 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_bindnet ) or (value == "") then return value end
+ return nil, err_tab_adv(self) .. translate("Binding to a specific network not supported") .. " !"
+ end
+ function bnet.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+ end
+end
+
+-- IPv4 + IPv6 - force_ipversion -- ###########################################
+-- optional to force wget/curl and host to use only selected IP version
+-- command parameter "-4" or "-6"
+
+local has_forceip = DDNS.env_info("has_forceip")
+
+if has_forceip or ( ( m:get(section, "force_ipversion") or "0" ) ~= "0" ) then
+ fipv = ns:taboption("advanced", Flag, "force_ipversion",
+ translate("Force IP Version") )
+ fipv.orientation = "horizontal"
+ function fipv.cfgvalue(self, section)
+ local value = AbstractValue.cfgvalue(self, section)
+ if not has_forceip and value ~= "0" then
+ self.description = bold_on .. font_red ..
+ translate("Force IP Version not supported") .. font_off .. "<br />" ..
+ translate("please disable") .. " !" .. bold_off
+ else
+ self.description = translate("OPTIONAL: Force the usage of pure IPv4/IPv6 only communication.")
+ end
+ return value
+ end
+ function fipv.validate(self, value)
+ if (value == "1" and has_forceip) or value == "0" then return value end
+ return nil, err_tab_adv(self) .. translate("Force IP Version not supported")
+ end
+end
+
+-- IPv4 + IPv6 - dns_server -- ################################################
+-- optional DNS Server to use resolving my IP
+
+local has_dnsserver = DDNS.env_info("has_dnsserver")
+
+if has_dnsserver or ( ( m:get(section, "dns_server") or "" ) ~= "" ) then
+ dns = ns:taboption("advanced", Value, "dns_server",
+ translate("DNS-Server"),
+ translate("OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'.") .. "<br />" ..
+ translate("Format: IP or FQDN"))
+ dns.placeholder = "mydns.lan"
+ function dns.validate(self, value)
+ -- if .datatype is set, then it is checked before calling this function
+ if not value or (#value == 0) then
+ return "" -- ignore on empty
+ elseif not has_dnsserver then
+ return nil, err_tab_adv(self) .. translate("Specifying a DNS-Server is not supported")
+ elseif not DTYP.host(value) then
+ return nil, err_tab_adv(self) .. translate("use hostname, FQDN, IPv4- or IPv6-Address")
+ else
+ local ipv6 = usev6:formvalue(section) or "0"
+ local force = fipv:formvalue(section) or "0"
+ local command = CTRL.luci_helper .. [[ -]]
+ if (ipv6 == 1) then command = command .. [[6]] end
+ if (force == 1) then command = command .. [[f]] end
+ command = command .. [[d ]] .. value .. [[ -- verify_dns]]
+
+ local ret = SYS.call(command)
+ if ret == 0 then return value -- everything OK
+ elseif ret == 2 then return nil, err_tab_adv(self) .. translate("nslookup can not resolve host")
+ elseif ret == 3 then return nil, err_tab_adv(self) .. translate("nc (netcat) can not connect")
+ elseif ret == 4 then return nil, err_tab_adv(self) .. translate("Forced IP Version don't matched")
+ else return nil, err_tab_adv(self) .. translate("unspecific error")
+ end
+ end
+ end
+ function dns.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+ end
+end
+
+-- IPv4 + IPv6 - force_dnstcp -- ##############################################
+
+local has_bindhost = DDNS.env_info("has_bindhost")
+
+if has_bindhost or ( ( m:get(section, "force_dnstcp") or "0" ) ~= "0" ) then
+ tcp = ns:taboption("advanced", Flag, "force_dnstcp",
+ translate("Force TCP on DNS") )
+ tcp.orientation = "horizontal"
+ function tcp.cfgvalue(self, section)
+ local value = AbstractValue.cfgvalue(self, section)
+ if not has_bindhost and value ~= "0" then
+ self.description = bold_on .. font_red ..
+ translate("DNS requests via TCP not supported") .. font_off .. "<br />" ..
+ translate("please disable") .. " !" .. bold_off
+ else
+ self.description = translate("OPTIONAL: Force the use of TCP instead of default UDP on DNS requests.")
+ end
+ return value
+ end
+ function tcp.validate(self, value)
+ if (value == "1" and has_bindhost ) or value == "0" then
+ return value
+ end
+ return nil, err_tab_adv(self) .. translate("DNS requests via TCP not supported")
+ end
+end
+
+-- IPv4 + IPv6 - proxy -- #####################################################
+-- optional Proxy to use for http/https requests [user:password@]proxyhost[:port]
+
+local has_proxy = DDNS.env_info("has_proxy")
+
+if has_proxy or ( ( m:get(section, "proxy") or "" ) ~= "" ) then
+ pxy = ns:taboption("advanced", Value, "proxy",
+ translate("PROXY-Server") )
+ pxy.placeholder="user:password@myproxy.lan:8080"
+ function pxy.cfgvalue(self, section)
+ local value = AbstractValue.cfgvalue(self, section)
+ if not has_proxy and value ~= "" then
+ self.description = bold_on .. font_red ..
+ translate("PROXY-Server not supported") .. font_off .. "<br />" ..
+ translate("please remove entry") .. "!" .. bold_off
+ else
+ self.description = translate("OPTIONAL: Proxy-Server for detection and updates.") .. "<br />" ..
+ translate("Format") .. ": " .. bold_on .. "[user:password@]proxyhost:port" .. bold_off .. "<br />" ..
+ translate("IPv6 address must be given in square brackets") .. ": " ..
+ bold_on .. " [2001:db8::1]:8080" .. bold_off
+ end
+ return value
+ end
+ function pxy.validate(self, value)
+ -- if .datatype is set, then it is checked before calling this function
+ if not value or (#value == 0) then
+ return "" -- ignore on empty
+ elseif has_proxy then
+ local ipv6 = usev6:formvalue(section) or "0"
+ local force = fipv:formvalue(section) or "0"
+ local command = CTRL.luci_helper .. [[ -]]
+ if (ipv6 == 1) then command = command .. [[6]] end
+ if (force == 1) then command = command .. [[f]] end
+ command = command .. [[p ]] .. value .. [[ -- verify_proxy]]
+ local ret = SYS.call(command)
+ if ret == 0 then return value
+ elseif ret == 2 then return nil, err_tab_adv(self) .. translate("nslookup can not resolve host")
+ elseif ret == 3 then return nil, err_tab_adv(self) .. translate("nc (netcat) can not connect")
+ elseif ret == 4 then return nil, err_tab_adv(self) .. translate("Forced IP Version don't matched")
+ elseif ret == 5 then return nil, err_tab_adv(self) .. translate("proxy port missing")
+ else return nil, err_tab_adv(self) .. translate("unspecific error")
+ end
+ else
+ return nil, err_tab_adv(self) .. translate("PROXY-Server not supported")
+ end
+ end
+ function pxy.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+ end
+end
+
+-- use_syslog -- ##############################################################
+slog = ns:taboption("advanced", ListValue, "use_syslog",
+ translate("Log to syslog"),
+ translate("Writes log messages to syslog. Critical Errors will always be written to syslog.") )
+slog.default = "2"
+slog:value("0", translate("No logging"))
+slog:value("1", translate("Info"))
+slog:value("2", translate("Notice"))
+slog:value("3", translate("Warning"))
+slog:value("4", translate("Error"))
+function slog.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- use_logfile -- #############################################################
+logf = ns:taboption("advanced", Flag, "use_logfile",
+ translate("Log to file"),
+ translate("Writes detailed messages to log file. File will be truncated automatically.") .. "<br />" ..
+ translate("File") .. [[: "]] .. logdir .. [[/]] .. section .. [[.log"]] )
+logf.orientation = "horizontal"
+logf.default = "1" -- if not defined write to log by default
+
+-- TAB: Timer ####################################################################################
+-- check_interval -- ##########################################################
+ci = ns:taboption("timer", Value, "check_interval",
+ translate("Check Interval") )
+ci.template = "ddns/detail_value"
+ci.default = "10"
+function ci.validate(self, value)
+ if not DTYP.uinteger(value)
+ or tonumber(value) < 1 then
+ return nil, err_tab_timer(self) .. translate("minimum value 5 minutes == 300 seconds")
+ end
+
+ local secs = DDNS.calc_seconds(value, cu:formvalue(section))
+ if secs >= 300 then
+ return value
+ else
+ return nil, err_tab_timer(self) .. translate("minimum value 5 minutes == 300 seconds")
+ end
+end
+function ci.write(self, section, value)
+ -- remove when default
+ local secs = DDNS.calc_seconds(value, cu:formvalue(section))
+ if secs ~= 600 then --default 10 minutes
+ return self.map:set(section, self.option, value)
+ else
+ self.map:del(section, "check_unit")
+ return self.map:del(section, self.option)
+ end
+end
+function ci.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- check_unit -- ##############################################################
+cu = ns:taboption("timer", ListValue, "check_unit", "not displayed, but needed otherwise error",
+ translate("Interval to check for changed IP" .. "<br />" ..
+ "Values below 5 minutes == 300 seconds are not supported") )
+cu.template = "ddns/detail_lvalue"
+cu.default = "minutes"
+cu:value("seconds", translate("seconds"))
+cu:value("minutes", translate("minutes"))
+cu:value("hours", translate("hours"))
+--cu:value("days", translate("days"))
+function cu.write(self, section, value)
+ -- remove when default
+ local secs = DDNS.calc_seconds(ci:formvalue(section), value)
+ if secs ~= 600 then --default 10 minutes
+ return self.map:set(section, self.option, value)
+ else
+ return true
+ end
+end
+function cu.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- force_interval (modified) -- ###############################################
+fi = ns:taboption("timer", Value, "force_interval",
+ translate("Force Interval") )
+fi.template = "ddns/detail_value"
+fi.default = "72" -- see dynamic_dns_updater.sh script
+--fi.rmempty = false -- validate ourselves for translatable error messages
+function fi.validate(self, value)
+ if not DTYP.uinteger(value)
+ or tonumber(value) < 0 then
+ return nil, err_tab_timer(self) .. translate("minimum value '0'")
+ end
+
+ local force_s = DDNS.calc_seconds(value, fu:formvalue(section))
+ if force_s == 0 then
+ return value
+ end
+
+ local ci_value = ci:formvalue(section)
+ if not DTYP.uinteger(ci_value) then
+ return "" -- ignore because error in check_interval above
+ end
+
+ local check_s = DDNS.calc_seconds(ci_value, cu:formvalue(section))
+ if force_s >= check_s then
+ return value
+ end
+
+ return nil, err_tab_timer(self) .. translate("must be greater or equal 'Check Interval'")
+end
+function fi.write(self, section, value)
+ -- simulate rmempty=true remove default
+ local secs = DDNS.calc_seconds(value, fu:formvalue(section))
+ if secs ~= 259200 then --default 72 hours == 3 days
+ return self.map:set(section, self.option, value)
+ else
+ self.map:del(section, "force_unit")
+ return self.map:del(section, self.option)
+ end
+end
+function fi.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- force_unit -- ##############################################################
+fu = ns:taboption("timer", ListValue, "force_unit", "not displayed, but needed otherwise error",
+ translate("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") )
+fu.template = "ddns/detail_lvalue"
+fu.default = "hours"
+--fu.rmempty = false -- want to control write process
+--fu:value("seconds", translate("seconds"))
+fu:value("minutes", translate("minutes"))
+fu:value("hours", translate("hours"))
+fu:value("days", translate("days"))
+function fu.write(self, section, value)
+ -- simulate rmempty=true remove default
+ local secs = DDNS.calc_seconds(fi:formvalue(section), value)
+ if secs ~= 259200 and secs ~= 0 then --default 72 hours == 3 days
+ return self.map:set(section, self.option, value)
+ else
+ return true
+ end
+end
+function fu.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- retry_count -- #############################################################
+rc = ns:taboption("timer", Value, "retry_count")
+rc.title = translate("Error Retry Counter")
+rc.description = translate("On Error the script will stop execution after given number of retrys")
+ .. "<br />"
+ .. translate("The default setting of '0' will retry infinite.")
+rc.default = "0"
+function rc.validate(self, value)
+ if not DTYP.uinteger(value) then
+ return nil, err_tab_timer(self) .. translate("minimum value '0'")
+ else
+ return value
+ end
+end
+function rc.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- retry_interval -- ##########################################################
+ri = ns:taboption("timer", Value, "retry_interval",
+ translate("Error Retry Interval") )
+ri.template = "ddns/detail_value"
+ri.default = "60"
+function ri.validate(self, value)
+ if not DTYP.uinteger(value)
+ or tonumber(value) < 1 then
+ return nil, err_tab_timer(self) .. translate("minimum value '1'")
+ else
+ return value
+ end
+end
+function ri.write(self, section, value)
+ -- simulate rmempty=true remove default
+ local secs = DDNS.calc_seconds(value, ru:formvalue(section))
+ if secs ~= 60 then --default 60seconds
+ return self.map:set(section, self.option, value)
+ else
+ self.map:del(section, "retry_unit")
+ return self.map:del(section, self.option)
+ end
+end
+function ri.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- retry_unit -- ##############################################################
+ru = ns:taboption("timer", ListValue, "retry_unit", "not displayed, but needed otherwise error",
+ translate("On Error the script will retry the failed action after given time") )
+ru.template = "ddns/detail_lvalue"
+ru.default = "seconds"
+--ru.rmempty = false -- want to control write process
+ru:value("seconds", translate("seconds"))
+ru:value("minutes", translate("minutes"))
+--ru:value("hours", translate("hours"))
+--ru:value("days", translate("days"))
+function ru.write(self, section, value)
+ -- simulate rmempty=true remove default
+ local secs = DDNS.calc_seconds(ri:formvalue(section), value)
+ if secs ~= 60 then --default 60seconds
+ return self.map:set(section, self.option, value)
+ else
+ return true -- will be deleted by retry_interval
+ end
+end
+function ru.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- TAB: LogView ##################################################################################
+lv = ns:taboption("logview", DummyValue, "_logview")
+lv.template = "ddns/detail_logview"
+lv.inputtitle = translate("Read / Reread log file")
+lv.rows = 50
+function lv.cfgvalue(self, section)
+ local lfile=logdir .. "/" .. section .. ".log"
+ if NXFS.access(lfile) then
+ return lfile .. "\n" .. translate("Please press [Read] button")
+ end
+ return lfile .. "\n" .. translate("File not found or empty")
+end
+
+return m
--- /dev/null
+-- 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 CTRL = require "luci.controller.ddns" -- this application's controller
+local DDNS = require "luci.tools.ddns" -- ddns multiused functions
+
+-- cbi-map definition -- #######################################################
+local m = Map("ddns")
+m.title = CTRL.app_title_back()
+m.description = CTRL.app_description()
+m.redirect = DISP.build_url("admin", "services", "ddns")
+
+function m.commit_handler(self)
+ if self.changed then -- changes ?
+ local command = CTRL.luci_helper .. " -- reload"
+ os.execute(command) -- 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="https://openwrt.org/docs/guide-user/base-system/ddns#section_ddns" 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
+
+-- upd_privateip -- ###########################################################
+local ali = ns:option(Flag, "upd_privateip")
+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.default = "0"
+
+-- ddns_dateformat -- #########################################################
+local df = ns:option(Value, "ddns_dateformat")
+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.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.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- ddns_rundir -- #############################################################
+local rd = ns:option(Value, "ddns_rundir")
+rd.title = translate("Status directory")
+rd.description = translate("Directory contains PID and other status information for each running section")
+rd.default = "/var/run/ddns"
+-- no need to validate. if empty default is used everything else created by dns-scripts
+function rd.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- ddns_logdir -- #############################################################
+local ld = ns:option(Value, "ddns_logdir")
+ld.title = translate("Log directory")
+ld.description = translate("Directory contains Log files for each running section")
+ld.default = "/var/log/ddns"
+-- no need to validate. if empty default is used everything else created by dns-scripts
+function ld.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+end
+
+-- ddns_loglines -- ###########################################################
+local ll = ns:option(Value, "ddns_loglines")
+ll.title = translate("Log length")
+ll.description = translate("Number of last lines stored in log files")
+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
+ return value
+end
+function ll.parse(self, section, novld)
+ DDNS.value_parse(self, section, novld)
+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.default = "0"
+end
+
+return m
--- /dev/null
+-- Copyright 2014-2016 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
+-- Licensed to the public under the Apache License 2.0.
+
+local DISP = require "luci.dispatcher"
+local SYS = require "luci.sys"
+local CTRL = require "luci.controller.ddns" -- this application's controller
+local DDNS = require "luci.tools.ddns" -- ddns multiused functions
+
+-- html constants
+font_red = [[<font color="red">]]
+font_off = [[</font>]]
+bold_on = [[<strong>]]
+bold_off = [[</strong>]]
+
+-- cbi-map definition -- #######################################################
+m = Map("ddns")
+m.title = CTRL.app_title_back()
+m.description = CTRL.app_description()
+m.redirect = DISP.build_url("admin", "services", "ddns")
+
+-- SimpleSection definition -- #################################################
+-- show Hints to optimize installation and script usage
+s = m:section( SimpleSection,
+ translate("Hints"),
+ translate("Below a list of configuration tips for your system to run Dynamic DNS updates without limitations") )
+
+-- ddns-scripts needs to be updated for full functionality
+if not CTRL.service_ok() then
+ local so = s:option(DummyValue, "_update_needed")
+ so.titleref = DISP.build_url("admin", "system", "opkg")
+ so.rawhtml = true
+ so.title = font_red .. bold_on ..
+ translate("Software update required") .. bold_off .. font_off
+ so.value = translate("The currently installed 'ddns-scripts' package did not support all available settings.") ..
+ "<br />" ..
+ translate("Please update to the current version!")
+end
+
+-- DDNS Service disabled
+if not SYS.init.enabled("ddns") then
+ local se = s:option(DummyValue, "_not_enabled")
+ se.titleref = DISP.build_url("admin", "system", "startup")
+ se.rawhtml = true
+ se.title = bold_on ..
+ translate("DDNS Autostart disabled") .. bold_off
+ se.value = translate("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')" )
+end
+
+-- No IPv6 support
+if not DDNS.env_info("has_ipv6") then
+ local v6 = s:option(DummyValue, "_no_ipv6")
+ v6.titleref = 'http://www.openwrt.org" target="_blank'
+ v6.rawhtml = true
+ v6.title = bold_on ..
+ translate("IPv6 not supported") .. bold_off
+ v6.value = translate("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")
+end
+
+-- No HTTPS support
+if not DDNS.env_info("has_ssl") then
+ local sl = s:option(DummyValue, "_no_https")
+ sl.titleref = DISP.build_url("admin", "system", "opkg")
+ sl.rawhtml = true
+ sl.title = bold_on ..
+ translate("HTTPS not supported") .. bold_off
+ sl.value = translate("Neither GNU Wget with SSL nor cURL installed to support secure updates via HTTPS protocol.") ..
+ "<br />- " ..
+ translate("You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-*ssl' package.") ..
+ "<br />- " ..
+ translate("In some versions cURL/libcurl in OpenWrt is compiled without proxy support.")
+end
+
+-- No bind_network
+if not DDNS.env_info("has_bindnet") then
+ local bn = s:option(DummyValue, "_no_bind_network")
+ bn.titleref = DISP.build_url("admin", "system", "opkg")
+ bn.rawhtml = true
+ bn.title = bold_on ..
+ translate("Binding to a specific network not supported") .. bold_off
+ bn.value = translate("Neither GNU Wget with SSL nor cURL installed to select a network to use for communication.") ..
+ "<br />- " ..
+ translate("You should install 'wget' 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
+
+-- currently only cURL possibly without proxy support
+if not DDNS.env_info("has_proxy") then
+ local px = s:option(DummyValue, "_no_proxy")
+ px.titleref = DISP.build_url("admin", "system", "opkg")
+ px.rawhtml = true
+ px.title = bold_on ..
+ translate("cURL without Proxy Support") .. bold_off
+ px.value = translate("cURL is installed, but libcurl was compiled without proxy support.") ..
+ "<br />- " ..
+ translate("You should install 'wget' or 'uclient-fetch' package or replace libcurl.") ..
+ "<br />- " ..
+ translate("In some versions cURL/libcurl in OpenWrt is compiled without proxy support.")
+end
+
+-- "Force IP Version not supported"
+if not DDNS.env_info("has_forceip") then
+ local fi = s:option(DummyValue, "_no_force_ip")
+ fi.titleref = DISP.build_url("admin", "system", "opkg")
+ fi.rawhtml = true
+ fi.title = bold_on ..
+ translate("Force IP Version not supported") .. bold_off
+ local value = translate("BusyBox's nslookup and Wget do not support to specify " ..
+ "the IP version to use for communication with DDNS Provider!")
+ if not (DDNS.env_info("has_wgetssl") or DDNS.env_info("has_curl") or DDNS.env_info("has_fetch")) then
+ value = value .. "<br />- " ..
+ translate("You should install 'wget' or 'curl' or 'uclient-fetch' package.")
+ end
+ if not DDNS.env_info("has_bindhost") then
+ value = value .. "<br />- " ..
+ translate("You should install 'bind-host' or 'knot-host' or 'drill' package for DNS requests.")
+ end
+ fi.value = value
+end
+
+-- "DNS requests via TCP not supported"
+if not DDNS.env_info("has_bindhost") then
+ local dt = s:option(DummyValue, "_no_dnstcp")
+ dt.titleref = DISP.build_url("admin", "system", "opkg")
+ dt.rawhtml = true
+ dt.title = bold_on ..
+ translate("DNS requests via TCP not supported") .. bold_off
+ dt.value = translate("BusyBox's nslookup and hostip do not support to specify to use TCP " ..
+ "instead of default UDP when requesting DNS server!") ..
+ "<br />- " ..
+ translate("You should install 'bind-host' or 'knot-host' or 'drill' package for DNS requests.")
+end
+
+-- nslookup compiled with musl produce problems when using
+if not DDNS.env_info("has_dnsserver") then
+ local ds = s:option(DummyValue, "_no_dnsserver")
+ ds.titleref = DISP.build_url("admin", "system", "opkg")
+ ds.rawhtml = true
+ ds.title = bold_on ..
+ translate("Using specific DNS Server not supported") .. bold_off
+ ds.value = translate("BusyBox's nslookup in the current compiled version " ..
+ "does not handle given DNS Servers correctly!") ..
+ "<br />- " ..
+ translate("You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' package, " ..
+ "if you need to specify a DNS server to detect your registered IP.")
+end
+
+-- certificates installed
+if DDNS.env_info("has_ssl") and not DDNS.env_info("has_cacerts") then
+ local ca = s:option(DummyValue, "_no_certs")
+ ca.titleref = DISP.build_url("admin", "system", "opkg")
+ ca.rawhtml = true
+ ca.title = bold_on ..
+ translate("No certificates found") .. bold_off
+ ca.value = translate("If using secure communication you should verify server certificates!") ..
+ "<br />- " ..
+ translate("Install 'ca-certificates' package or needed certificates " ..
+ "by hand into /etc/ssl/certs default directory")
+end
+
+return m
--- /dev/null
+-- Copyright 2014-2018 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
+-- Licensed to the public under the Apache License 2.0.
+
+local DISP = require "luci.dispatcher"
+local HTTP = require "luci.http"
+local SYS = require "luci.sys"
+local CTRL = require "luci.controller.ddns" -- this application's controller
+local DDNS = require "luci.tools.ddns" -- ddns multiused functions
+
+local show_hints = not (DDNS.env_info("has_ipv6") -- IPv6 support
+ and DDNS.env_info("has_ssl") -- HTTPS support
+ and DDNS.env_info("has_proxy") -- Proxy support
+ and DDNS.env_info("has_bindhost") -- DNS TCP support
+ and DDNS.env_info("has_forceip") -- Force IP version
+ and DDNS.env_info("has_dnsserver") -- DNS server support
+ and DDNS.env_info("has_bindnet") -- Bind to network/interface
+ and DDNS.env_info("has_cacerts") -- certificates installed at /etc/ssl/certs
+ )
+local not_enabled = not SYS.init.enabled("ddns")
+local need_update = not CTRL.service_ok()
+
+-- html constants
+font_red = [[<font color="red">]]
+font_off = [[</font>]]
+bold_on = [[<strong>]]
+bold_off = [[</strong>]]
+
+-- cbi-map definition -- #######################################################
+m = Map("ddns")
+m.title = CTRL.app_title_main()
+m.description = CTRL.app_description()
+
+m.on_after_commit = function(self)
+ if self.changed then -- changes ?
+ local command = CTRL.luci_helper
+ if SYS.init.enabled("ddns") then -- ddns service enabled, restart all
+ command = command .. " -- restart"
+ os.execute(command)
+ else -- ddns service disabled, send SIGHUP to running
+ command = command .. " -- reload"
+ os.execute(command)
+ end
+ end
+end
+
+-- SimpleSection definition -- ##################################################
+-- with all the JavaScripts we need for "a good Show"
+a = m:section( SimpleSection )
+a.template = "ddns/overview_status"
+
+-- SimpleSection definition -- #################################################
+-- show Hints to optimize installation and script usage
+if show_hints or need_update or not_enabled then
+
+ s = m:section( SimpleSection, translate("Hints") )
+
+ -- ddns-scripts needs to be updated for full functionality
+ if need_update then
+ local dv = s:option(DummyValue, "_update_needed")
+ dv.titleref = DISP.build_url("admin", "system", "packages")
+ dv.rawhtml = true
+ dv.title = font_red .. bold_on ..
+ translate("Software update required") .. bold_off .. font_off
+ dv.value = translate("The currently installed 'ddns-scripts' package did not support all available settings.") ..
+ "<br />" ..
+ translate("Please update to the current version!")
+ end
+
+ -- DDNS Service disabled
+ if not_enabled then
+ local dv = s:option(DummyValue, "_not_enabled")
+ dv.titleref = DISP.build_url("admin", "system", "startup")
+ dv.rawhtml = true
+ dv.title = bold_on ..
+ translate("DDNS Autostart disabled") .. bold_off
+ dv.value = translate("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.")
+ end
+
+ -- Show more hints on a separate page
+ if show_hints then
+ local dv = s:option(DummyValue, "_separate")
+ dv.titleref = DISP.build_url("admin", "services", "ddns", "hints")
+ dv.rawhtml = true
+ dv.title = bold_on ..
+ translate("Show more") .. bold_off
+ dv.value = translate("Follow this link" .. "<br />" ..
+ "You will find more hints to optimize your system to run DDNS scripts with all options")
+ end
+end
+
+-- TableSection definition -- ##################################################
+ts = m:section( TypedSection, "service",
+ translate("Overview"),
+ 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
+ts.extedit = DISP.build_url("admin", "services", "ddns", "detail", "%s")
+function ts.create(self, name)
+ AbstractSection.create(self, name)
+ HTTP.redirect( self.extedit:format(name) )
+end
+
+-- Lookup_Host and registered IP -- #################################################
+dom = ts:option(DummyValue, "_lookupIP",
+ translate("Lookup Hostname") .. "<br />" .. translate("Registered IP") )
+dom.template = "ddns/overview_doubleline"
+function dom.set_one(self, section)
+ local lookup = self.map:get(section, "lookup_host") or ""
+ if lookup ~= "" then
+ return lookup
+ else
+ return [[<em>]] .. translate("config error") .. [[</em>]]
+ end
+end
+function dom.set_two(self, section)
+ local chk_sec = DDNS.calc_seconds(
+ tonumber(self.map:get(section, "check_interval")) or 10,
+ self.map:get(section, "check_unit") or "minutes" )
+ local ip = DDNS.get_regip(section, chk_sec)
+ if ip == "NOFILE" then
+ local lookup_host = self.map:get(section, "lookup_host") or ""
+ if lookup_host == "" then return "" end
+ local dnsserver = self.map:get(section, "dnsserver") or ""
+ local use_ipv6 = tonumber(self.map:get(section, "use_ipv6") or 0)
+ local force_ipversion = tonumber(self.map:get(section, "force_ipversion") or 0)
+ local force_dnstcp = tonumber(self.map:get(section, "force_dnstcp") or 0)
+ local is_glue = tonumber(self.map:get(section, "is_glue") or 0)
+ local command = CTRL.luci_helper .. [[ -]]
+ if (use_ipv6 == 1) then command = command .. [[6]] end
+ if (force_ipversion == 1) then command = command .. [[f]] end
+ if (force_dnstcp == 1) then command = command .. [[t]] end
+ if (is_glue == 1) then command = command .. [[g]] end
+ command = command .. [[l ]] .. lookup_host
+ command = command .. [[ -S ]] .. section
+ if (#dnsserver > 0) then command = command .. [[ -d ]] .. dnsserver end
+ command = command .. [[ -- get_registered_ip]]
+ ip = SYS.exec(command)
+ end
+ if ip == "" then ip = translate("no data") end
+ return ip
+end
+
+-- enabled
+ena = ts:option( Flag, "enabled",
+ translate("Enabled"))
+ena.template = "ddns/overview_enabled"
+ena.rmempty = false
+
+-- show PID and next update
+upd = ts:option( DummyValue, "_update",
+ translate("Last Update") .. "<br />" .. translate("Next Update"))
+upd.template = "ddns/overview_doubleline"
+function upd.set_one(self, section) -- fill Last Update
+ -- get/validate last update
+ local uptime = SYS.uptime()
+ local lasttime = DDNS.get_lastupd(section)
+ if lasttime > uptime then -- /var might not be linked to /tmp and cleared on reboot
+ lasttime = 0
+ end
+
+ -- no last update happen
+ if lasttime == 0 then
+ return translate("never")
+
+ -- we read last update
+ else
+ -- calc last update
+ -- os.epoch - sys.uptime + lastupdate(uptime)
+ local epoch = os.time() - uptime + lasttime
+ -- use linux date to convert epoch
+ return DDNS.epoch2date(epoch)
+ end
+end
+function upd.set_two(self, section) -- fill Next Update
+ -- get enabled state
+ local enabled = tonumber(self.map:get(section, "enabled") or 0)
+ local datenext = translate("unknown error") -- formatted date of next update
+
+ -- get force seconds
+ local force_interval = tonumber(self.map:get(section, "force_interval") or 72)
+ local force_unit = self.map:get(section, "force_unit") or "hours"
+ local force_seconds = DDNS.calc_seconds(force_interval, force_unit)
+
+ -- get last update and get/validate PID
+ local uptime = SYS.uptime()
+ local lasttime = DDNS.get_lastupd(section)
+ if lasttime > uptime then -- /var might not be linked to /tmp and cleared on reboot
+ lasttime = 0
+ end
+ local pid = DDNS.get_pid(section)
+
+ -- calc next update
+ if lasttime > 0 then
+ local epoch = os.time() - uptime + lasttime + force_seconds
+ -- use linux date to convert epoch
+ datelast = DDNS.epoch2date(epoch)
+ end
+
+ -- process running but update needs to happen
+ if pid > 0 and ( lasttime + force_seconds - uptime ) < 0 then
+ datenext = translate("Verify")
+
+ -- run once
+ elseif force_seconds == 0 then
+ datenext = translate("Run once")
+
+ -- no process running and NOT enabled
+ elseif pid == 0 and enabled == 0 then
+ datenext = translate("Disabled")
+
+ -- no process running and NOT
+ elseif pid == 0 and enabled ~= 0 then
+ datenext = translate("Stopped")
+ end
+
+ return datenext
+end
+
+-- start/stop button
+btn = ts:option( Button, "_startstop",
+ translate("Process ID") .. "<br />" .. translate("Start / Stop") )
+btn.template = "ddns/overview_startstop"
+function btn.cfgvalue(self, section)
+ local pid = DDNS.get_pid(section)
+ if pid > 0 then
+ btn.inputtitle = "PID: " .. pid
+ btn.inputstyle = "reset"
+ btn.disabled = false
+ elseif (self.map:get(section, "enabled") or "0") ~= "0" then
+ btn.inputtitle = translate("Start")
+ btn.inputstyle = "apply"
+ btn.disabled = false
+ else
+ btn.inputtitle = "----------"
+ btn.inputstyle = "button"
+ btn.disabled = true
+ end
+ return true
+end
+
+return m
--- /dev/null
+-- Copyright 2014-2018 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.tools.ddns", package.seeall)
+
+local NX = require "nixio"
+local NXFS = require "nixio.fs"
+local UCI = require "luci.model.uci"
+local SYS = require "luci.sys"
+
+function env_info(type)
+
+ if ( type == "has_ssl" ) or ( type == "has_proxy" ) or ( type == "has_forceip" )
+ or ( type == "has_bindnet" ) or ( type == "has_fetch" )
+ or ( type == "has_wgetssl" ) or ( type == "has_curl" )
+ or ( type == "has_curlssl" ) or ( type == "has_curlpxy" )
+ or ( type == "has_fetchssl" ) or ( type == "has_bbwget" ) then
+
+ local function has_wgetssl()
+ return (SYS.call( [[which wget-ssl >/dev/null 2>&1]] ) == 0) -- and true or nil
+ end
+
+ local function has_curlssl()
+ return (SYS.call( [[$(which curl) -V 2>&1 | grep -qF "https"]] ) == 0)
+ end
+
+ local function has_fetch()
+ return (SYS.call( [[which uclient-fetch >/dev/null 2>&1]] ) == 0)
+ end
+
+ local function has_fetchssl()
+ return NXFS.access("/lib/libustream-ssl.so")
+ end
+
+ local function has_curl()
+ return (SYS.call( [[which curl >/dev/null 2>&1]] ) == 0)
+ end
+
+ local function has_curlpxy()
+ return (SYS.call( [[grep -i "all_proxy" /usr/lib/libcurl.so* >/dev/null 2>&1]] ) == 0)
+ end
+
+ local function has_bbwget()
+ return (SYS.call( [[$(which wget) -V 2>&1 | grep -iqF "busybox"]] ) == 0)
+ end
+
+ if type == "has_wgetssl" then
+ return has_wgetssl()
+
+ elseif type == "has_curl" then
+ return has_curl()
+
+ elseif type == "has_curlssl" then
+ return has_curlssl()
+
+ elseif type == "has_curlpxy" then
+ return has_curlpxy()
+
+ elseif type == "has_fetch" then
+ return has_fetch()
+
+ elseif type == "has_fetchssl" then
+ return has_fetchssl()
+
+ elseif type == "has_bbwget" then
+ return has_bbwget()
+
+ elseif type == "has_ssl" then
+ if has_wgetssl() then return true end
+ if has_curlssl() then return true end
+ if (has_fetch() and has_fetchssl()) then return true end
+ return false
+
+ elseif type == "has_proxy" then
+ if has_wgetssl() then return true end
+ if has_curlpxy() then return true end
+ if has_fetch() then return true end
+ if has_bbwget() then return true end
+ return false
+
+ elseif type == "has_forceip" then
+ if has_wgetssl() then return true end
+ if has_curl() then return true end
+ if has_fetch() then return true end -- only really needed for transfer
+ return false
+
+ elseif type == "has_bindnet" then
+ if has_curl() then return true end
+ if has_wgetssl() then return true end
+ return false
+ end
+
+ elseif ( type == "has_dnsserver" ) or ( type == "has_bindhost" ) or ( type == "has_hostip" ) or ( type == "has_nslookup" ) then
+ local function has_bindhost()
+ if (SYS.call( [[which host >/dev/null 2>&1]] ) == 0) then return true end
+ if (SYS.call( [[which khost >/dev/null 2>&1]] ) == 0) then return true end
+ if (SYS.call( [[which drill >/dev/null 2>&1]] ) == 0) then return true end
+ return false
+ end
+
+ local function has_hostip()
+ return (SYS.call( [[which hostip >/dev/null 2>&1]] ) == 0)
+ end
+
+ local function has_nslookup()
+ return (SYS.call( [[which nslookup >/dev/null 2>&1]] ) == 0)
+ end
+
+ if type == "has_bindhost" then
+ return has_bindhost()
+ elseif type == "has_hostip" then
+ return has_hostip()
+ elseif type == "has_nslookup" then
+ return has_nslookup()
+ elseif type == "has_dnsserver" then
+ if has_bindhost() then return true end
+ if has_hostip() then return true end
+ if has_nslookup() then return true end
+ return false
+ end
+
+ elseif type == "has_ipv6" then
+ return (NXFS.access("/proc/net/ipv6_route") and NXFS.access("/usr/sbin/ip6tables"))
+
+ elseif type == "has_cacerts" then
+ --old _check_certs() local function
+ local _, v = NXFS.glob("/etc/ssl/certs/*.crt")
+ if ( v == 0 ) then _, v = NXFS.glob("/etc/ssl/certs/*.pem") end
+ return (v > 0)
+ else
+ return
+ end
+
+end
+
+-- function to calculate seconds from given interval and unit
+function calc_seconds(interval, unit)
+ if not tonumber(interval) then
+ return nil
+ elseif unit == "days" then
+ return (tonumber(interval) * 86400) -- 60 sec * 60 min * 24 h
+ elseif unit == "hours" then
+ return (tonumber(interval) * 3600) -- 60 sec * 60 min
+ elseif unit == "minutes" then
+ return (tonumber(interval) * 60) -- 60 sec
+ elseif unit == "seconds" then
+ return tonumber(interval)
+ else
+ return nil
+ end
+end
+
+-- convert epoch date to given format
+function epoch2date(epoch, format)
+ if not format or #format < 2 then
+ local uci = UCI.cursor()
+ format = uci:get("ddns", "global", "ddns_dateformat") or "%F %R"
+ uci:unload("ddns")
+ end
+ format = format:gsub("%%n", "<br />") -- replace newline
+ format = format:gsub("%%t", " ") -- replace tab
+ return os.date(format, epoch)
+end
+
+-- read lastupdate from [section].update file
+function get_lastupd(section)
+ local uci = UCI.cursor()
+ local rdir = uci:get("ddns", "global", "ddns_rundir") or "/var/run/ddns"
+ local etime = tonumber(NXFS.readfile("%s/%s.update" % { rdir, section } ) or 0 )
+ uci:unload("ddns")
+ return etime
+end
+
+-- read registered IP from [section].ip file
+function get_regip(section, chk_sec)
+ local uci = UCI.cursor()
+ local rdir = uci:get("ddns", "global", "ddns_rundir") or "/var/run/ddns"
+ local ip = "NOFILE"
+ if NXFS.access("%s/%s.ip" % { rdir, section }) then
+ local ftime = NXFS.stat("%s/%s.ip" % { rdir, section }, "ctime") or 0
+ local otime = os.time()
+ -- give ddns-scripts time (9 sec) to update file
+ if otime < (ftime + chk_sec + 9) then
+ ip = NXFS.readfile("%s/%s.ip" % { rdir, section })
+ end
+ end
+ uci:unload("ddns")
+ return ip
+end
+
+-- read PID from run file and verify if still running
+function get_pid(section)
+ local uci = UCI.cursor()
+ local rdir = uci:get("ddns", "global", "ddns_rundir") or "/var/run/ddns"
+ local pid = tonumber(NXFS.readfile("%s/%s.pid" % { rdir, section } ) or 0 )
+ if pid > 0 and not NX.kill(pid, 0) then
+ pid = 0
+ end
+ uci:unload("ddns")
+ return pid
+end
+
+-- replacement of build-in read of UCI option
+-- modified AbstractValue.cfgvalue(self, section) from cbi.lua
+-- needed to read from other option then current value definition
+function read_value(self, section, option)
+ local value
+ if self.tag_error[section] then
+ value = self:formvalue(section)
+ else
+ value = self.map:get(section, option)
+ end
+
+ if not value then
+ return nil
+ elseif not self.cast or self.cast == type(value) then
+ return value
+ elseif self.cast == "string" then
+ if type(value) == "table" then
+ return value[1]
+ end
+ elseif self.cast == "table" then
+ return { value }
+ end
+end
+
+-- replacement of build-in parse of "Value"
+-- modified AbstractValue.parse(self, section, novld) from cbi.lua
+-- validate is called if rmempty/optional true or false
+-- before write check if forcewrite, value eq default, and more
+function value_parse(self, section, novld)
+ local fvalue = self:formvalue(section)
+ local fexist = ( fvalue and (#fvalue > 0) ) -- not "nil" and "not empty"
+ local cvalue = self:cfgvalue(section)
+ local rm_opt = ( self.rmempty or self.optional )
+ local eq_cfg -- flag: equal cfgvalue
+
+ -- If favlue and cvalue are both tables and have the same content
+ -- make them identical
+ if type(fvalue) == "table" and type(cvalue) == "table" then
+ eq_cfg = (#fvalue == #cvalue)
+ if eq_cfg then
+ for i=1, #fvalue do
+ if cvalue[i] ~= fvalue[i] then
+ eq_cfg = false
+ end
+ end
+ end
+ if eq_cfg then
+ fvalue = cvalue
+ end
+ end
+
+ -- removed parameter "section" from function call because used/accepted nowhere
+ -- also removed call to function "transfer"
+ local vvalue, errtxt = self:validate(fvalue)
+
+ -- error handling; validate return "nil"
+ if not vvalue then
+ if novld then -- and "novld" set
+ return -- then exit without raising an error
+ end
+
+ if fexist then -- and there is a formvalue
+ self:add_error(section, "invalid", errtxt or self.title .. ": invalid")
+ return -- so data are invalid
+ elseif not rm_opt then -- and empty formvalue but NOT (rmempty or optional) set
+ self:add_error(section, "missing", errtxt or self.title .. ": missing")
+ return -- so data is missing
+ elseif errtxt then
+ self:add_error(section, "invalid", errtxt)
+ return
+ end
+-- error ("\n option: " .. self.option ..
+-- "\n fvalue: " .. tostring(fvalue) ..
+-- "\n fexist: " .. tostring(fexist) ..
+-- "\n cvalue: " .. tostring(cvalue) ..
+-- "\n vvalue: " .. tostring(vvalue) ..
+-- "\n vexist: " .. tostring(vexist) ..
+-- "\n rm_opt: " .. tostring(rm_opt) ..
+-- "\n eq_cfg: " .. tostring(eq_cfg) ..
+-- "\n eq_def: " .. tostring(eq_def) ..
+-- "\n novld : " .. tostring(novld) ..
+-- "\n errtxt: " .. tostring(errtxt) )
+ end
+
+ -- lets continue with value returned from validate
+ eq_cfg = ( vvalue == cvalue ) -- update equal_config flag
+ local vexist = ( vvalue and (#vvalue > 0) ) and true or false -- not "nil" and "not empty"
+ local eq_def = ( vvalue == self.default ) -- equal_default flag
+
+ -- (rmempty or optional) and (no data or equal_default)
+ if rm_opt and (not vexist or eq_def) then
+ if self:remove(section) then -- remove data from UCI
+ self.section.changed = true -- and push events
+ end
+ return
+ end
+
+ -- not forcewrite and no changes, so nothing to write
+ if not self.forcewrite and eq_cfg then
+ return
+ end
+
+ -- we should have a valid value here
+ assert (vvalue, "\n option: " .. self.option ..
+ "\n fvalue: " .. tostring(fvalue) ..
+ "\n fexist: " .. tostring(fexist) ..
+ "\n cvalue: " .. tostring(cvalue) ..
+ "\n vvalue: " .. tostring(vvalue) ..
+ "\n vexist: " .. tostring(vexist) ..
+ "\n rm_opt: " .. tostring(rm_opt) ..
+ "\n eq_cfg: " .. tostring(eq_cfg) ..
+ "\n eq_def: " .. tostring(eq_def) ..
+ "\n errtxt: " .. tostring(errtxt) )
+
+ -- write data to UCI; raise event only on changes
+ if self:write(section, vvalue) and not eq_cfg then
+ self.section.changed = true
+ end
+end
+
+-----------------------------------------------------------------------------
+-- copied from https://svn.nmap.org/nmap/nselib/url.lua
+-- @author Diego Nehab
+-- @author Eddie Bell <ejlbell@gmail.com>
+--[[
+ URI parsing, composition and relative URL resolution
+ LuaSocket toolkit.
+ Author: Diego Nehab
+ RCS ID: $Id: url.lua,v 1.37 2005/11/22 08:33:29 diego Exp $
+ parse_query and build_query added For nmap (Eddie Bell <ejlbell@gmail.com>)
+]]--
+---
+-- Parses a URL and returns a table with all its parts according to RFC 2396.
+--
+-- The following grammar describes the names given to the URL parts.
+-- <code>
+-- <url> ::= <scheme>://<authority>/<path>;<params>?<query>#<fragment>
+-- <authority> ::= <userinfo>@<host>:<port>
+-- <userinfo> ::= <user>[:<password>]
+-- <path> :: = {<segment>/}<segment>
+-- </code>
+--
+-- The leading <code>/</code> in <code>/<path></code> is considered part of
+-- <code><path></code>.
+-- @param url URL of request.
+-- @param default Table with default values for each field.
+-- @return A table with the following fields, where RFC naming conventions have
+-- been preserved:
+-- <code>scheme</code>, <code>authority</code>, <code>userinfo</code>,
+-- <code>user</code>, <code>password</code>, <code>host</code>,
+-- <code>port</code>, <code>path</code>, <code>params</code>,
+-- <code>query</code>, and <code>fragment</code>.
+-----------------------------------------------------------------------------
+function parse_url(url) --, default)
+ -- initialize default parameters
+ local parsed = {}
+-- for i,v in base.pairs(default or parsed) do
+-- parsed[i] = v
+-- end
+
+ -- remove whitespace
+-- url = string.gsub(url, "%s", "")
+ -- get fragment
+ url = string.gsub(url, "#(.*)$",
+ function(f)
+ parsed.fragment = f
+ return ""
+ end)
+ -- get scheme. Lower-case according to RFC 3986 section 3.1.
+ url = string.gsub(url, "^([%w][%w%+%-%.]*)%:",
+ function(s)
+ parsed.scheme = string.lower(s);
+ return ""
+ end)
+ -- get authority
+ url = string.gsub(url, "^//([^/]*)",
+ function(n)
+ parsed.authority = n
+ return ""
+ end)
+ -- get query stringing
+ url = string.gsub(url, "%?(.*)",
+ function(q)
+ parsed.query = q
+ return ""
+ end)
+ -- get params
+ url = string.gsub(url, "%;(.*)",
+ function(p)
+ parsed.params = p
+ return ""
+ end)
+ -- path is whatever was left
+ parsed.path = url
+
+ local authority = parsed.authority
+ if not authority then
+ return parsed
+ end
+ authority = string.gsub(authority,"^([^@]*)@",
+ function(u)
+ parsed.userinfo = u;
+ return ""
+ end)
+ authority = string.gsub(authority, ":([0-9]*)$",
+ function(p)
+ if p ~= "" then
+ parsed.port = p
+ end;
+ return ""
+ end)
+ if authority ~= "" then
+ parsed.host = authority
+ end
+
+ local userinfo = parsed.userinfo
+ if not userinfo then
+ return parsed
+ end
+ userinfo = string.gsub(userinfo, ":([^:]*)$",
+ function(p)
+ parsed.password = p;
+ return ""
+ end)
+ parsed.user = userinfo
+ return parsed
+end
--- /dev/null
+<%+ddns/system_status%>
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ detail_logview.htm ++ -->
+<script type="text/javascript">//<![CDATA[
+ function onclick_logview(section, bottom) {
+ // get elements
+ var txt = document.getElementById("cbid.ddns." + section + "._logview.txt"); // TextArea
+ if ( !txt ) { return; } // security check
+
+ XHR.get('<%=url([[admin]], [[services]], [[ddns]], [[logview]])%>/' + section, null,
+ function(x) {
+ if (x.responseText == "_nodata_")
+ txt.value = "<%:File not found or empty%>";
+ else
+ txt.value = x.responseText;
+ if (bottom)
+ txt.scrollTop = txt.scrollHeight;
+ else
+ txt.scrollTop = 0; }
+ );
+ }
+//]]></script>
+
+<%+cbi/valueheader%>
+
+<br />
+
+<%
+-- one button on top, one at the buttom
+%>
+<input class="cbi-button cbi-input-button" style="align: center; width: 100%" type="button" onclick="onclick_logview(this.name, false)"
+<%=
+attr("name", section) .. attr("id", cbid .. ".btn1") .. attr("value", self.inputtitle)
+%> />
+
+<br /><br />
+
+<%
+-- set a readable style taken from openwrt theme for textarea#syslog
+-- in openwrt theme there are problems with a width of 100 so we check for theme and set to lower value
+%>
+<textarea style="width: <%if media == "/luci-static/openwrt.org" then%>98.7%<%else%>100%<%end%> ; min-height: 500px; border: 3px solid #cccccc; padding: 5px; font-family: monospace; resize: none;" wrap="off" readonly="readonly"
+<%=
+attr("name", cbid .. ".txt") .. attr("id", cbid .. ".txt") .. ifattr(self.rows, "rows")
+%> >
+<%-=pcdata(self:cfgvalue(section))-%>
+</textarea>
+<br /><br />
+
+<%
+-- one button on top, one at the buttom
+%>
+<input class="cbi-button cbi-input-button" style="align: center; width: 100%" type="button" onclick="onclick_logview(this.name, true)"
+<%= attr("name", section) .. attr("id", cbid .. ".btn2") .. attr("value", self.inputtitle) %> />
+
+<%+cbi/valuefooter%>
+<!-- ++ END ++ Dynamic DNS ++ detail_logview.htm ++ -->
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ detail_lvalue.htm ++ -->
+<!-- no value header to suppress next line -->
+ 
+<% if self.widget == "select" then %>
+ <select class="cbi-input-select" onchange="cbi_d_update(this.id)"<%= attr("id", cbid) .. attr("name", cbid) .. ifattr(self.size, "size") %>>
+ <% for i, key in pairs(self.keylist) do -%>
+ <option id="cbi-<%=self.config.."-"..section.."-"..self.option.."-"..key%>"<%= attr("value", key) .. ifattr(tostring(self:cfgvalue(section) or self.default) == key, "selected", "selected") %>><%=striptags(self.vallist[i])%></option>
+ <%- end %>
+ </select>
+<% elseif self.widget == "radio" then
+ local c = 0
+ for i, key in pairs(self.keylist) do
+ c = c + 1
+%>
+ <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%= attr("id", cbid..c) .. attr("name", cbid) .. attr("value", key) .. ifattr((self:cfgvalue(section) or self.default) == key, "checked", "checked") %> />
+ <label<%= attr("for", cbid..c) %>></label>
+ <label<%= attr("for", cbid..c) %>><%=self.vallist[i]%></label>
+<% if c == self.size then c = 0 %><% if self.orientation == "horizontal" then %> <% else %><br /><% end %>
+<% end end %>
+<% end %>
+<%+cbi/valuefooter%>
+<!-- ++ END ++ Dynamic DNS ++ detail_lvalue.htm ++ -->
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ detail_value.htm ++ -->
+<%+cbi/valueheader%>
+ <input type="text" class="cbi-input-text" style="width: 10em;" onchange="cbi_d_update(this.id)"<%=
+ attr("name", cbid) .. attr("id", cbid) .. attr("value", self:cfgvalue(section) or self.default) ..
+ ifattr(self.size, "size") .. ifattr(self.placeholder, "placeholder")
+ %> />
+<!-- no value footer to suppress next line -->
+<!-- ++ END ++ Dynamic DNS ++ detail_value.htm ++ -->
--- /dev/null
+
+<!-- ++ 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.ddns_dateformat.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%>" /></span><%=self.description%>
+ <br /><%:Current setting%>: <strong><%=self.date_string%></strong>
+</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 ++ -->
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ overview_doubleline.htm ++ -->
+<%+cbi/valueheader%>
+
+<span id="<%=cbid%>.one"><%=self:set_one(section)%></span>
+<br />
+<span id="<%=cbid%>.two"><%=self:set_two(section)%></span>
+
+<%+cbi/valuefooter%>
+<!-- ++ END ++ Dynamic DNS ++ overview_doubleline.htm ++ -->
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ overview_enabled.htm ++ -->
+<%+cbi/valueheader%>
+
+<input type="hidden" value="1"<%=
+ attr("name", "cbi.cbe." .. self.config .. "." .. section .. "." .. self.option)
+%> />
+ <!-- modified to call own function -->
+<input class="cbi-input-checkbox" onclick="cbi_d_update(this.id)" onchange="onchange_enabled(this.id)" type="checkbox"<%=
+ attr("id", cbid) .. attr("name", cbid) .. attr("value", self.enabled or 1) ..
+ ifattr((self:cfgvalue(section) or self.default) == self.enabled, "checked", "checked")
+%> />
+<label<%= attr("for", cbid)%>></label>
+
+<%+cbi/valuefooter%>
+<!-- ++ END ++ Dynamic DNS ++ overview_enabled.htm ++ -->
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ overview_startstop.htm ++ -->
+<%+cbi/valueheader%>
+
+<% if self:cfgvalue(section) ~= false then
+-- We need to garantie that function cfgvalue run first to set missing parameters
+%>
+ <!-- style="font-size: 100%;" needed for openwrt theme to fix font size -->
+ <!-- type="button" onclick="..." enable standard onclick functionality -->
+ <input class="cbi-button cbi-input-<%=self.inputstyle or "button" %>" style="font-size: 100%;" type="button" onclick="onclick_startstop(this.id)"
+ <%=
+ attr("name", section) .. attr("id", cbid) .. attr("value", self.inputtitle) .. ifattr(self.disabled, "disabled")
+ %> />
+<% end %>
+
+<%+cbi/valuefooter%>
+<!-- ++ END ++ Dynamic DNS ++ overview_startstop.htm ++ -->
--- /dev/null
+
+<!-- ++ BEGIN ++ Dynamic DNS ++ overview_status.htm ++ -->
+<script type="text/javascript">//<![CDATA[
+
+ // helper to extract section from objects id
+ // cbi.ddns.SECTION._xyz
+ function _id2section(id) {
+ var x = id.split(".");
+ return x[2];
+ }
+
+ // helper to move status data to the relevant
+ // screen objects
+ // called by XHR.poll and onclick_startstop
+ function _data2elements(data) {
+ // Service sections
+ for( var i = 1; i < data.length; i++ )
+ {
+ var section = data[i].section // Section to handle
+ var cbx = document.getElementById("cbid.ddns." + section + ".enabled"); // Enabled
+ var btn = document.getElementById("cbid.ddns." + section + "._startstop"); // Start/Stop button
+ var rip = document.getElementById("cbid.ddns." + section + "._lookupIP.two"); // Registered IP
+ var lup = document.getElementById("cbid.ddns." + section + "._update.one"); // Last Update
+ var nup = document.getElementById("cbid.ddns." + section + "._update.two"); // Next Update
+ if ( !(cbx && btn && rip && lup && nup) ) { return; } // security check
+
+ // process id
+ if (data[i].pid > 0) {
+ // stop always possible if process running
+ btn.value = "PID: " + data[i].pid;
+ btn.className = "cbi-button cbi-input-reset";
+ } else {
+ // default Start / enabled
+ btn.value = "<%:Start%>";
+ btn.className = "cbi-button cbi-input-apply";
+ }
+ btn.disabled = false; // button enabled
+
+ // last update
+ switch (data[i].datelast) {
+ case "_empty_":
+ lup.innerHTML = '<em><%:Unknown error%></em>' ;
+ break;
+ case "_never_":
+ lup.innerHTML = '<em><%:Never%></em>' ;
+ break;
+ default:
+ lup.innerHTML = data[i].datelast;
+ break;
+ }
+
+ // next update
+ switch (data[i].datenext) {
+ case "_empty_":
+ nup.innerHTML = '<em><%:Unknown error%></em>' ;
+ break;
+ case "_verify_":
+ nup.innerHTML = '<em><%:Verify%></em>';
+ break;
+ case "_runonce_":
+ case "_stopped_":
+ case "_disabled_":
+ if (cbx.checked && data[i].datenext == "_runonce_") {
+ nup.innerHTML = '<em><%:Run once%></em>';
+ } else if (cbx.checked) {
+ nup.innerHTML = '<em><%:Stopped%></em>';
+ } else {
+ nup.innerHTML = '<em><%:Disabled%></em>';
+ btn.value = '----------';
+ btn.className = "cbi-button cbi-input-button"; // no image
+ btn.disabled = true; // disabled
+ }
+ break;
+ default:
+ nup.innerHTML = data[i].datenext;
+ break;
+ }
+
+ // lookup
+ // (data[i].lookup ignored here
+
+ // registered IP
+ // rip.innerHTML = "Registered IP";
+ if (data[i].lookup == "_nolookup_")
+ rip.innerHTML = '';
+ else if (data[i].reg_ip == "_nodata_")
+ rip.innerHTML = '<em><%:No data%></em>';
+ else
+ rip.innerHTML = data[i].reg_ip;
+
+ // monitored interfacce
+ // data[i].iface ignored here
+ }
+ }
+
+ // event handler for enabled checkbox
+ function onchange_enabled(id) {
+ // run original function in cbi.js
+ // whatever is done there
+ cbi_d_update(id);
+
+ var section = _id2section(id);
+ var cbx = document.getElementById("cbid.ddns." + section + ".enabled");
+ var btn = document.getElementById("cbid.ddns." + section + "._startstop");
+ if ( !(cbx && btn) ) { return; } // security check
+
+ var pid_txt = btn.value;
+ var pid_found = ( pid_txt.search("PID") >= 0 ) ? true : false;
+
+ if (pid_found) {
+ // btn.value = "PID: 0000";
+ btn.className = "cbi-button cbi-button-reset";
+ btn.disabled = false;
+ } else if (cbx.checked) {
+ btn.value = "<%:Start%>";
+ btn.className = "cbi-button cbi-button-apply";
+ btn.disabled = false;
+ } else {
+ btn.value = '----------';
+ btn.className = "cbi-button cbi-input-button"; // no image
+ btn.disabled = true; // disabled
+ }
+ }
+
+ // event handler for start/stop button
+ function onclick_startstop(id) {
+ // extract section
+ var section = _id2section(id);
+ // get elements
+ var cbx = document.getElementById("cbid.ddns." + section + ".enabled"); // Enabled
+ var obj = document.getElementById("cbi-ddns-overview-status-legend"); // object defined below to make in-/visible
+ if ( !(obj && cbx) ) { return; } // security check
+
+ // make me visible
+ obj.parentNode.style.display = "block";
+
+ // do start/stop
+ var btnXHR = new XHR();
+ btnXHR.post('<%=url([[admin]], [[services]], [[ddns]], [[startstop]])%>/' + section + '/' + cbx.checked, { token: '<%=token%>' },
+ function(x, data) {
+ if (x.responseText == "_uncommitted_") {
+ // we need a trick to display Ampersand "&" in stead of "&" or "&"
+ // after translation
+ var txt="<%:Please [Save & Apply] your changes first%>";
+ alert( txt.replace(new RegExp("<%:&%>", "g"), "&") );
+ } else {
+ // should have data because status changed
+ // so update screen
+ if (data) { _data2elements(data); }
+ }
+ // make me invisible
+ obj.parentNode.style.display = "none";
+ }
+ );
+ }
+
+ // force to immediate show status on page load (not waiting for XHR.poll)
+ XHR.get('<%=url([[admin]], [[services]], [[ddns]], [[status]])%>', null,
+ function(x, 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
+ XHR.poll(-1, '<%=url([[admin]], [[services]], [[ddns]], [[status]])%>', null,
+ function(x, data) {
+ if (data) { _data2elements(data); }
+ }
+ );
+
+//]]></script>
+
+<fieldset class="cbi-section" style="display:none">
+ <legend id="cbi-ddns-overview-status-legend"><%:Applying changes%></legend>
+ <img src="<%=resource%>/icons/loading.gif" alt="<%:Loading%>" style="vertical-align:middle" />
+ <span id="cbi-ddns-overview-status-text"><%:Waiting for changes to be applied...%></span>
+</fieldset>
+<!-- ++ END ++ Dynamic DNS ++ overview_status.htm ++ -->
--- /dev/null
+<!-- ++ BEGIN ++ Dynamic DNS ++ system_status.htm ++ -->
+<script type="text/javascript">//<![CDATA[
+
+ //start polling data every 30 second, this doesn't change so much
+ XHR.poll(30, '<%=url([[admin]], [[services]], [[ddns]], [[status]])%>', null,
+ function(x, data) {
+ if (data) {
+ var tbl = document.getElementById('ddns_status_table');
+ // security check
+ if ( !(tbl) ) { return; }
+
+ var rows = [];
+
+ // DDNS Service disabled
+ if (data[0].enabled == 0) {
+ var ddns_legend = document.getElementById('ddns_status_legend');
+ ddns_legend.style.display='none';
+ rows.push([
+ '<strong><font color="red"><%:DDNS Autostart disabled%></font>',
+ '<a class="cbi-button cbi-button-action important" type="button" href="' + data[0].url_up + '"><%:enable here%></a></strong>'
+ ]);
+ } else {
+ for(var j = 1; j < data.length; j++ )
+ {
+
+ rows.push([
+ '<strong>' + data[j].section + '</strong>', //configuration
+ data[j].datenextstat ? '<em>'+data[j].datenextstat+'</em>' : '<em>'+data[j].datenext+'</em>',
+ data[j].lookup ? data[j].lookup : '<em><%:config error%></em>',
+ data[j].reg_ip ? data[j].reg_ip : '<em><%:No data%></em>',
+ data[j].iface // monitored interface
+ ]);
+ }
+ }
+
+ cbi_update_table(tbl, rows, '<%:There is no service configured.%>');
+ }
+ }
+ );
+
+//]]></script>
+
+<fieldset class="cbi-section" id="ddns_status_section">
+ <legend><a href="<%=url([[admin]], [[services]], [[ddns]])%>"><%:Dynamic DNS%></a></legend>
+ <div class="cbi-section-node">
+ <div class="table" id="ddns_status_table">
+ <div class="tr table-titles" id="ddns_status_legend">
+ <div class="th"><%:Configuration%></div>
+ <div class="th"><%:Next Update%></div>
+ <div class="th"><%:Lookup Hostname%></div>
+ <div class="th"><%:Registered IP%></div>
+ <div class="th"><%:Network%></div>
+ </div>
+ <div class="tr">
+ <div class="td"><em><br /><%:Collecting data...%></em></div>
+ </div>
+ </div>
+ </div>
+</fieldset>
+<!-- ++ END ++ Dynamic DNS ++ system_status.htm ++ -->
--- /dev/null
+# ddns.pot
+# generated from ./applications/luci-ddns/luasrc/i18n/ddns.en.lua
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2014-07-03 20:30+0200\n"
+"Last-Translator: Alex <alexhenrie24@gmail.com>\n"
+"Language-Team: \n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+#, fuzzy
+msgid "Custom update-URL"
+msgstr "URL d'actualització personalitzada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS dinàmic"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+#, fuzzy
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interfície"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Xarxa"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Contrasenya"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Nom d'usuari"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+# Generated from applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2014-06-20 23:22+0200\n"
+"Last-Translator: koli <lukas.koluch@gmail.com>\n"
+"Language-Team: \n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Vlastní aktualizační-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dynamické DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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í."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Rozhraní"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Síť"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Heslo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Uživatelské jméno"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.2-1\n"
+"POT-Creation-Date: 2016-09-25 10:43+0200\n"
+"PO-Revision-Date: 2016-09-25 10:43+0200\n"
+"Last-Translator: Christian Schönebeck <christian.schoenebeck@gmail.com>\n"
+"Language-Team: \n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.7.1\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-Basepath: .\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "&"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- benutzerdefiniert --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- Standard --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "Erweiterte Einstellungen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "Erlaube Nicht-öffentliche IPs"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "Änderungen anwenden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "Grundlegende Einstellungen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+"Liste der Konfigurationshinweise um Dynamische DNS Aktualisierungen ohne "
+"Einschränkungen zu nutzen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+"Liste der konfigurierten DDNS Konfigurationen und ihr momentaner Status."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "Bind-Netzwerk"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "'Bind' an ein bestimmtes Netzwerk wird nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+"BusyBox's nslookup und Wget unterstützen nicht die IP Version für die "
+"Kommunikation festzulegen!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"BusyBox's nslookup und hostip unterstützen es nicht das TCP-Protokoll für "
+"DNS Anfragen anstelle des standardmäßigen UDP-Protokolls zu verwenden!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+"BusyBox nslookup in der aktuellen compilierten Version kann gegebenen DNS-"
+"Server nicht korrekt verarbeiten!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "Standard Benutzer sollten diese Einstellung nicht ändern."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "Anbieter wechseln"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "Prüfinterval"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "Sammle Daten..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "Einstellungen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr "Konfiguriere hier die Details für den gewählten Dynamik DNS Dienst."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "Aktuelle Einstellung"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+"Aktuell werden keine DDNS Aktualisierungen beim Systemstart oder bei "
+"Netzwerkereignissen gestartet.<br />Dieses ist der Standard, wenn Sie die "
+"DDSN Skripte über eigene Routinen (z.B. cron und Erzwungener Aktualisierung "
+"von '0') starten."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+"Aktuell werden DDNS Aktualisierungen nicht bei Systemstart oder bei "
+"Netzwerkereignissen gestartet.<br />Sie können jede Konfiguration hier "
+"starten und stoppen. Sie wird bis zum nächsten Neustart ausgeführt."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr "Update-Skript um Aktualisierungen an Ihren DDNS Anbieter zu senden."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Eigene Update-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "Eigenes Update-Skript"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "DDNS Autostart deaktiviert"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "DDNS Client Konfiguration"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "DDNS Client Dokumentation"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "DDNS-Dienstanbieter"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "DNS Anfragen über TCP nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "DNS-Server"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "Datumsformat "
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+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 "
+"wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+"Definiert die Web-Seite von der die aktuelle IPv6-Adresse des System gelesen "
+"wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+"Definiert die Schnittstelle von der die aktuelle IP-Adresse des System "
+"gelesen wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+"Definiert das Netzwerk von dem die aktuelle IPv4-Adresse des System gelesen "
+"wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+"Definiert das Netzwerk von dem die aktuelle IPv6-Adresse des System gelesen "
+"wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Definiert die Quelle von der die aktuelle IPv4-Adresse des Systems gelesen "
+"wird, die an Ihren DDNS Anbieter gesendet wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Definiert die Quelle von der die aktuelle IPv6-Adresse des Systems gelesen "
+"wird, die an Ihren DDNS Anbieter gesendet wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+"Legt fest welche IP-Adresse 'IPv4/IPv6' zum DDNS Anbieter gesendet wird"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "Details für"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+"Das Verzeichnis enthält die Protokolldateien aller laufenden Konfigurationen."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+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."
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "Deaktiviert"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "Domäne"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dynamisches DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"Dynamisches DNS erlaubt es, den Router bei dynamischer IP-Adresse über einen "
+"festen DNS-Namen zu erreichen."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "Aktiviert sichere Kommunikation mit dem DDNS Anbieter"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "Aktiviert"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "Fehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "Wiederholungszähler bei Fehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "Wiederholungsintervall bei Fehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "Ereignis Netzwerk"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "Datei"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "Datei nicht gefunden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "Datei nicht gefunden oder leer"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+"Detaillierte Informationen zu den Parametereinstellungen finden Sie hier."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "Unterstützte Kodierungen finden Sie hier."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "Erzwinge IP-Version"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "Erzwinge IP-Version nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "Erzwungene Aktualisierung"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "Erzwinge TCP bei DNS-Anfragen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "Erzwungene IP Version stimmt nicht überein"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "Format"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "Format: IP-Adresse oder FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "Globale Einstellungen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "HTTPS nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "Hinweise"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+"Hostname/FQDN um zu überprüfen, ob eine Aktualisierung stattgefunden hat "
+"oder notwendig ist"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "IP-Adressquelle"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "IP-Adressversion"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "IPv4-Adresse"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "Eine IPv6 Adresse muss in eckigen Klammern angegeben werden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 wird vom System nicht (voll) unterstützt.<br /> Bitte folgen Sie den "
+"Hinweisen auf der Homepage von OpenWrt um die volle IPv6-Unterstützung zu "
+"aktivieren<br /> oder installieren Sie die aktuellste OpenWrt Version."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "IPv6-Adresse"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"Wenn deaktiviert kann die Aktualisierung nicht gestartet werden.<br />Weder "
+"über das LuCI Web Interface noch von der Geräte-Konsole"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+"Wenn Sie sichere Kommunikation verwenden, sollten Sie Serverzertifikate "
+"überprüfen!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+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 "
+"compiliert."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "Info"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"Installieren Sie das 'ca-certificates' Paket oder die benötigten Zertifikate "
+"von Hand in das Standardverzeichnis /etc/ssl/certs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Schnittstelle"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+"Intervall zur Prüfung auf geänderte IP-Adresse<br />Minimum Wert 5 Minuten "
+"== 300 Sekunden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+"Intervall mit dem Aktualisierungen erzwungen an den DDNS Anbieter gesendet "
+"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'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "Letztes Aktualisierung"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "Lade"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "Protokolldatei"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "Protokoll-Verzeichnis"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "Protokolllänge"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "Protokoll in Datei schreiben"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "Systemprotokoll verwenden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "Nachschlage-Hostname"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "NICHT installiert"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"Weder GNU Wget mit SSL noch cURL sind installiert um sichere "
+"Aktualisierungen über HTTPS Protokoll zu unterstützen."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Netzwerk"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "Netzwerk auf dem Ereignisse die ddns-updater Skripte starten"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "Nie"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "Nächste Aktualisierung"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "Keine Zertifikate gefunden"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "Keine Daten"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "Keine Protokollierung"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "Nicht-öffentliche und standardmäßig blockierte IPs."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "Notiz"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+"Anzahl der letzten Zeilen die in der Protokolldatei gespeichert werden."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+"OPTIONAL: Erzwingt die Verwendung einer reinen IPv4/IPv6 Kommunikation."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "OPTIONAL: Netzwerk das zur Kommunikation verwendet werden soll."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "OPTIONAL: Proxy-Server für Adresserkennung und Aktualisierungen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+"OPTIONAL: Ersetzt den voreingestellten DNS-Server um die 'Registrierte IP' "
+"zu ermitteln."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+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 "
+"wiederholen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr "Das Skript wird nach der gegebenen Anzahl von Fehlversuchen beendet."
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "OpenWrt Wiki"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "Optionaler codierten Parameter"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "Optionaler Parameter"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr "Optional: Ersetzt [PARAMENC] in der Update-URL (URL-codiert)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr "Optional: Ersetzt [PARAMENC] in der Update-URL (NICHT URL-codiert)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "Übersicht"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "Proxy-Server"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "Proxy-Server nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Passwort"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "Pfad zum CA-Zertifikat"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "Bitte [Speichern & Anwenden] Sie Änderungen zunächst"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "Bitte Protokolldatei einlesen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "Aktualisieren Sie bitte auf die aktuelle Version!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "Prozess ID"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "Protokolldatei (neu) einlesen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "Wirklich DDNS-Anbieter wechseln?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "Registrierte IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "Ersetzt [DOMAIN] in der Update-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "Ersetzt [PASSWORD] in der Update-URL (URL-codiert)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr "Ersetzt [USERNAME] in der Update-URL (URL-codiert)"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "Einmalig ausführen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "Skript"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "Zeige mehr"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "Softwareaktualisierung nötig"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "Die Angabe eines DNS-Server wird nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "Start"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "Start / Stopp"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr "Status-Verzeichnis"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "Angehalten"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+"Die installierte Software 'ddns-scripts' unterstützt nicht alle verfügbaren "
+"Optionen."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "Beim Standard-Wert von '0' wird es endlos erneut versucht."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "Kein Dienst konfiguriert"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "Zeitgeber Einstellungen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "Globale Einstellungen können sie hier ändern."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "Um cURL zu verwenden aktivieren sie diese Einstellung."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "URL zur Adresserkennung für"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "Unbekannter Fehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+"Update-URL um Aktualisierungen an Ihren DDNS Anbieter zu senden.<br />Folgen "
+"Sie der Anleitung auf der Internet Seite des Anbieters."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "Verwende sicheres HTTP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "Verwende cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+"Definiert das Skript mit dem die aktuelle IP-Adresse des System gelesen "
+"wird."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Benutzername"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "Verwendung spezifischer DNS-Server wird nicht unterstützt"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "Überprüfen"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "Versionsinformationen"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "Änderungen werden angewandt..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "Warnung"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+"Schreibt detaillierte Meldungen in die Protokolldatei. Die Datei wird "
+"automatisch gekürzt."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+"Schreibt Meldungen ins Systemprotokoll. Kritische Fehler werden immer in das "
+"Systemprotokoll geschrieben."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"Sie sollten das Programmpakete 'bind-host' oder 'knot-host' oder 'drill' "
+"oder 'hostip' installieren, wenn Sie einen DNS Server angeben müssen um Ihre "
+"registrierte IP zu ermitteln."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+"Sie sollten das Programmpakete 'bind-host' oder 'knot-host' oder 'drill' für "
+"DNS Anfragen installieren."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+"Sie sollten das Programmpaket 'wget' oder 'curl' oder 'uclient-fetch' "
+"installieren."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+"Sie sollten das Programmpaket 'wget' oder 'curl' oder 'uclient-fetch' mit "
+"'libustream-*ssl' installieren."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "Sie sollten das Programmpaket 'wget' oder 'curl' installieren."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+"Sie sollten das Programmpaket 'wget' oder 'uclient-fetch' installieren oder "
+"libcurl ersetzen."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+"cURL ist installiert, aber libcurl wurde ohne Proxy Unterstützung compiliert"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL ohne Proxy Unterstützung"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+"kann lokale IP-Adresse nicht ermitteln. Bitte wählen Sie eine andere Quelle."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "Konnte Server nicht finden:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "Konfigurationsfehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "Tage"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "Verzeichnis oder Pfad/zur/Datei"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "Weder Url noch Script ist definiert"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "hier aktivieren"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "Datei oder Verzeichnis nicht gefunden oder nicht 'IGNORE'"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "Hilfe"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "Stunden"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "installiert"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "ungültige FQDN / Pflichtfeld - Beispiel"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "Minimum Wert '0'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "Minimum Wert '1'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "Minimum Wert 5 Minuten == 300 Sekunden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "Minuten"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "fehlt / Pflichteingabe"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "muss größer als das Prüfintervall sein"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "muss mit 'http://' beginnen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc (netcat) kann keine Verbindung herstellen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "nie"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "Keine Daten"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+"Skript nicht gefunden oder nicht ausführbar. - Beispiel: 'Pfad/zum/Skript.sh'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "nslookup kann den Namen nicht auflösen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "oder"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "oder höher"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "Bitte deaktivieren"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "Bitte Eintrag entfernen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "Bitte 'IPv4' Adressversion auswählen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "Bitte 'IPv4' Adressversion auswählen in den"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "Bitte auf 'Standard' setzen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "Proxy-Port fehlt"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "erforderlich"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "Sekunden"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+"um HTTPS ohne Überprüfung der Server Zertifikate auszuführen (unsicher)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "Unbekannter Fehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "Unspezifischer Fehler"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "verwende Rechnername, FQDN, IPv4- oder IPv6-Adresse"
+
+#~ msgid "Config error"
+#~ msgstr "Konfigurationsfehler"
+
+#~ msgid "Update error"
+#~ msgstr "Aktualisierungsfehler"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2012-03-18 17:08+0200\n"
+"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n"
+"Language-Team: \n"
+"Language: el\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Προσαρμοσμένο URL-ενημέρωσης"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Δυναμικό DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"Το Δυναμικό DNS επιτρέπει στον δρομολογητή σας να είναι προσβάσιμος μέσω "
+"ενός σταθερού ονόματος υπολογιστή παρόλο που η διεύθυνση IP του μπορεί να "
+"αλλάζει δυναμικά."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Διεπαφή"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Δίκτυο"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Κωδικός πρόσβασης"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Όνομα χρήστη"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2019-05-15 20:11-0300\n"
+"Last-Translator: José Vicente <josevteg@gmail.com>\n"
+"Language-Team: \n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 2.2.1\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "Y"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- Perzonalizado --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- Predeterminado --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "Ajustes avanzados"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "Permitir IPs no publicas"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "Aplicando cambios"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "Ajustes básicos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+"A continuación, una lista de sugerencias de configuración para que su "
+"sistema ejecute actualizaciones dinámicas de DNS sin limitaciones."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+"A continuación se muestra una lista de las configuraciones de DDNS "
+"configuradas y su estado actual."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "Red de enlace"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "No se admite el enlace a una red específica"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+"¡El nslookup y Wget de BusyBox no admiten especificar la versión de IP que "
+"se usará para la comunicación con el proveedor de DDNS!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"¡El nslookup y el hostip de BusyBox no admiten especificar el uso de TCP en "
+"lugar del UDP predeterminado al solicitar el servidor DNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+"¡El nslookup de BusyBox en la versión compilada actual no maneja los "
+"servidores DNS dados correctamente!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "Los usuarios ocasionales no deben cambiar esta configuración."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "Cambiar proveedor"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "Verificar intervalo"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "Recolectando datos..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "Configuración"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+"Configure aquí los detalles de todos los servicios de DNS dinámico, incluida "
+"esta aplicación LuCI."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+"Configure aquí los detalles para el servicio DNS dinámico seleccionado."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "Configuración actual"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+"Actualmente, las actualizaciones de DDNS no se inician en el arranque o en "
+"los eventos de la interfaz.<br />Este es el valor predeterminado si ejecuta "
+"usted mismo las secuencias de comandos de DDNS (es decir, a través de cron "
+"con force_interval establecido en '0')"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+"Actualmente, las actualizaciones de DDNS no se inician en el arranque o en "
+"los eventos de la interfaz.<br />Puede iniciar / detener cada configuración "
+"aquí. Se ejecutará hasta el próximo reinicio."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+"Script de actualización personalizado que se utilizará para actualizar su "
+"proveedor DDNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "URL de actualización personalizada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "Actualización de script personalizado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "Inicio automático DDNS desactivado"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "Configuración del cliente DDNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "Documentación del cliente DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "Proveedor de servicios DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "Las solicitudes de DNS a través de TCP no son compatibles"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "Servidor DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "Formato de fecha"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+"Define la página web para leer las direcciones IPv4 de los sistemas desde"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+"Define la página web para leer las direcciones IPv6 de los sistemas desde"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr "Define la interfaz para leer la dirección IP de los sistemas desde "
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr "Define la red para leer las direcciones IPv4 de los sistemas desde"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr "Define la red para leer las direcciones IPv6 de los sistemas desde"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Define la fuente para leer la dirección IPv4 de los sistemas, que se enviará "
+"al proveedor de DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Define la fuente para leer la dirección IPv6 de los sistemas, que se enviará "
+"al proveedor de DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr "Define qué dirección IP 'IPv4 / IPv6' se envía al proveedor de DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "Detalles para"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+"Directorio contiene archivos de registro para cada sección en ejecución"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+"El directorio contiene PID y otra información de estado para cada sección en "
+"ejecución"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "Deshabilitado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "Dominio"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS dinámico"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"DNS Dinámico le permite conectar a su router con un nombre concreto aunque "
+"su dirección IP cambie dinámicamente."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "Habilita la comunicación segura con el proveedor de DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "Habilitar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "Error"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "Contador de reintentos de error"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "Intervalo de reintento de error"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "Red de eventos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "Archivo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "Archivo no encontrado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "Archivo no encontrado o vacío"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+"Siga este enlace<br />Encontrará más sugerencias para optimizar su sistema "
+"para ejecutar scripts DDNS con todas las opciones"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+"Para obtener información detallada sobre la configuración de parámetros, "
+"consulte aquí."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "Para ver los códigos soportados mira aquí"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "Forzar versión de IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "Forzar versión de IP no soportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "Forzar actualización"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "Forzar TCP en DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "La versión de IP forzada no coincide"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "Formato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "Formato: IP o FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr "GNU Wget usará la IP de la red dada, cURL usará la interfaz física."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "Ajustes globales"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "HTTPS no soportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "Consejos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+"Nombre de host / FQDN para validar, si la actualización de IP ocurre o es "
+"necesaria"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "Fuente de direccion IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "Versión de dirección IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "Dirección IPv4"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "La dirección IPv6 debe darse entre corchetes"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 actualmente no es (totalmente) compatible con este sistema<br />Siga "
+"las instrucciones en la página de inicio de OpenWrt para habilitar el "
+"soporte de IPv6<br />o actualice su sistema a la última versión de OpenWrt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 no soportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "Dirección IPv6"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+"Si tanto cURL como GNU Wget están instalados, Wget se utiliza de forma "
+"predeterminada."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"Si no se habilita esta opción, no se iniciará el servicio.<br />Ni desde la "
+"interfaz de LuCI ni desde la consola"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+"Si utiliza una comunicación segura, debe verificar los certificados del "
+"servidor."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+"Si desea enviar actualizaciones para IPv4 e IPv6, debe definir dos "
+"configuraciones separadas, es decir, 'myddns_ipv4' y 'myddns_ipv6'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+"En algunas versiones, cURL / libcurl en OpenWrt se compila sin soporte de "
+"proxy."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "Información"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"Instale el paquete de 'ca-certificates' o los certificados necesarios a mano "
+"en el directorio predeterminado /etc/ssl/certs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interfaz"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+"Intervalo para verificar la IP cambiada<br />Los valores inferiores a 5 "
+"minutos == 300 segundos no son compatibles"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+"Intervalo para forzar actualizaciones enviadas al proveedor de DDNS<br /"
+">Establecer este parámetro en 0 forzará que el script se ejecute solo una "
+"vez<br />Los valores inferiores de 'Verificar intervalo' no son compatibles "
+"con '0'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+"No se recomienda que los usuarios ocasionales cambien la configuración en "
+"esta página."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "Última actualización"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "Cargando"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "Visor de archivos de registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "Directorio de registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "Longitud de registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "Registro al archivo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "Registro en syslog"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "Nombre de Host"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "No instalado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+"Ni GNU Wget con SSL ni cURL instalado para seleccionar una red para usar "
+"para la comunicación."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"Ni GNU Wget con SSL ni cURL instalado para admitir actualizaciones seguras a "
+"través del protocolo HTTPS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Red"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "Red en la que se iniciarán los scripts ddns-updater"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "Nunca"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "Siguiente actualización"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "No se encontraron certificados"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "Sin datos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "Sin registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "IPs no públicos y bloqueados por defecto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "Aviso"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr "Número de últimas líneas almacenadas en archivos de registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr "OPCIONAL: Forzar el uso de la comunicación solo IPv4 / IPv6 pura."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+"OPCIONAL: Forzar el uso de TCP en lugar del UDP predeterminado en las "
+"solicitudes de DNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "OPCIONAL: Red a utilizar para la comunicación."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "OPCIONAL: Servidor proxy para detección y actualizaciones."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+"OPCIONAL: Use un servidor DNS no predeterminado para detectar 'IP "
+"registrada'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+"En caso de error, el script volverá a intentar la acción fallida después de "
+"un tiempo determinado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+"En caso de error, el script detendrá la ejecución después de un número dado "
+"de reintentos"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "OpenWrt Wiki"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "Parámetro codificado opcional"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "Parámetro opcional"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+"Opcional: Reemplaza [PARAMENC] en la URL de actualización (codificada en URL)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+"Opcional: Reemplaza [PARAMOPT] en la URL de actualización (NO codificada por "
+"URL)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "Visión general"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "Servidor proxy"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "Servidor proxy no soportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Contraseña"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "Ruta al certificado CA"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "Por favor [Guardar y Aplicar] sus cambios primero"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "Por favor presione el botón [Leer]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "Por favor, actualice a la versión actual!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "ID de proceso"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "Leer / releer el archivo de registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "¿Cambiar proveedor de DDNS?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "IP registrada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "Reemplaza [DOMINIO] en URL de actualización"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "Reemplaza [CONTRASEÑA] en URL de actualización (codificada en URL)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+"Reemplaza [NOMBRE DE USUARIO] en URL de actualización (codificada en URL)"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "Iniciar una vez"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "Script"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "Mostrar más"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "Actualización de software requerida"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "La especificación de un servidor DNS no es compatible"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "Iniciar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "Iniciar / Detener"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr "Estado de directorio"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "Detenido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+"El paquete 'ddns-scripts' instalado actualmente no es compatible con todas "
+"las configuraciones disponibles."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "La configuración predeterminada de '0' reintentará infinito."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "No hay servicio configurado."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "Ajustes del temporizador"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "Para cambiar la configuración global, haga clic aquí."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "Para usar cURL active esta opción."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "URL para detectar"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "Error desconocido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+"Actualizar la URL que se usará para actualizar su proveedor de DDNS.<br /"
+">Siga las instrucciones que encontrará en su página WEB."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "Usar HTTP seguro (HTTPS)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "Usar cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+"Script definido por el usuario para leer la dirección IP de los sistemas"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Nombre de usuario"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "El uso de un servidor DNS específico no es compatible"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "Verificar"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "Versión"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "Información de versión"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "Esperando para aplicar los cambios..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "Advertencia"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+"Escribe mensajes detallados en el archivo de registro. El archivo se "
+"truncará automáticamente."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+"Escribe mensajes de registro en syslog. Los errores críticos siempre se "
+"escribirán en syslog."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"Debe instalar el paquete 'bind-host' o 'knot-host' o 'drill' o 'hostip', si "
+"necesita especificar un servidor DNS para detectar su IP registrada."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+"Debe instalar el paquete 'bind-host' o 'knot-host' o 'drill' para las "
+"solicitudes de DNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr "Debe instalar el paquete 'wget' o 'curl' o 'uclient-fetch'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+"Debe instalar 'wget' o 'curl' o 'uclient-fetch' con el paquete 'libustream-"
+"*ssl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "Debe instalar el paquete 'wget' o 'curl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+"Debe instalar el paquete 'wget' o 'uclient-fetch' o reemplazar libcurl."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr "cURL está instalado, pero libcurl fue compilado sin soporte de proxy."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL sin soporte de proxy"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+"No se puede detectar la IP local. Por favor, seleccione una combinación de "
+"fuente diferente"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "No se puede resolver el host:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "Error de configuración"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "Días"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "Directorio o ruta/archivo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "Se podría establecer una URL o un script"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "Habilitar aquí"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "Archivo o directorio no encontrado o no 'IGNORAR'"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "Ayuda"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "Horas"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "Instalado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "FQDN inválido / requerido - Muestra"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "Valor mínimo '0'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "Valor mínimo '1'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "Valor mínimo 5 minutos == 300 segundos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "Minutos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "Falta / Requerido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "Debe ser mayor o igual a 'Verificar intervalo'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "Debe comenzar con 'http://'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc (netcat) no se puede conectar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "Nunca"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "Sin datos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr "No encontrado o no ejecutable - Ejemplo: '/path/to/script.sh'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "nslookup no puede resolver el host"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "o"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "O más alto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "Por favor, deshabilitar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "Por favor elimina la entrada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "Por favor seleccione la versión de la dirección 'IPv4'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "Por favor seleccione la versión de la dirección 'IPv4' en"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "Por favor, establecer en 'Predeterminado'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "Falta el puerto proxy"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "Requerido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "Segundos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+"Para ejecutar HTTPS sin verificación de certificados de servidor (inseguro)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "Error desconocido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "Error no especificado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "Use nombre de host, FQDN, IPv4 o IPv6-Address"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2012-11-06 13:19+0200\n"
+"Last-Translator: hogsim <hogsim@gmail.com>\n"
+"Language-Team: \n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "URL de mise à jour personnalisée"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS Dynamique"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"Le DNS Dynamique permet au routeur d'être joint avec un nom d'hôte fixe bien "
+"que changeant dynamiquement d'adresse IP."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interface"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Réseau"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Mot de passe"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Nom d'utilisateur"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2012-09-10 04:26+0200\n"
+"Last-Translator: Snoof <sagim9@gmail.com>\n"
+"Language-Team: none\n"
+"Language: he\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+#, fuzzy
+msgid "Custom update-URL"
+msgstr "עדכן URL באופן ידני"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS דינאמי"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"שירות DDNS מאפשר גישה לנתב שלך ע\"י שם דומיין קבוע, בעוד כתובת ה- IP שלך "
+"משתנה באופן דינמי."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "ממשק"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "רשת"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "סיסמא"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "שם משתמש"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2013-01-28 13:49+0200\n"
+"Last-Translator: Gábor <vargalex@freemail.hu>\n"
+"Language-Team: none\n"
+"Language: hu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Egyéni update-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dinamikus DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interfész"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Hálózat"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Jelszó"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Felhasználónév"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2017-09-06 01:53+0200\n"
+"Last-Translator: Bubu83 <bubu83@gmail.com>\n"
+"Language-Team: \n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "Opzioni Avanzate"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "Consenti IP non pubblici"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "Applico i cambiamenti"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "Opzioni di Base"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+"Sotto c'è una lista di consigli di configurazione per il tuo sistema per "
+"eseguire aggiornamenti di Dynamic DNS senza limitazioni"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+"Sotto c'è una lista delle configurazioni DDNS configurate e il loro stato "
+"attuale."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "Collega Rete"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "Collegamento a una specifica rete non supportato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+"Nslookup di BusyBox e Wget non supportano lo specificare la versione IP da "
+"usare per la comunicazione con il Provider DDNS!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"Nslookup di BusyBox e hostip non supportano lo specificare l'uso di TCP "
+"invece di UDP di default quando richiedono il server DNS!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+"Nslookup di BusyBox nella versione compilata corrente non gestisce i dati "
+"Server DNS correttamente!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "Gli utenti casuali non dovrebbero cambiare questa opzione"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "Cambia provider"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "Controlla Intervallo"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "Raccogliendo dati..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "Configurazione"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+"Configura qui i dettagli per tutti i servizi Dynamic DNS inclusa questa "
+"applicazione LuCI."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr "Configura qui i dettagli per il servizio Dynamic DNS selezionato."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "Impostazione corrente"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+"Attualmente gli aggiornamenti DDNS non si avviano al boot o per eventi "
+"dell'interfaccia. <br />Questo è di default se esegui gli script DDNS per "
+"conto tuo (es. usando cron con force_interval impostato a '0')"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+"Attualmente gli aggiornamenti DDNS non si avviano al boot o per eventi "
+"dell'interfaccia. <br />Puoi avviare/fermare ogni configurazione qui. Verrà "
+"eseguita fino al prossimo riavvio."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+"Script aggiornamento personalizzato da usare per aggiornare il tuo DDNS "
+"Provider."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "URL di aggiornamento personalizzato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "Script di aggiornamento personalizzato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "Autoavvio DDNS disabilitato"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "Configurazione Cliente DDNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "Documentazione Cliente DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "Provider del Servizio DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "Richieste DNS via TCP non supportate"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "Server DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "Formato Data"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr "Definisce la pagina WEB che legge l'indirizzo IPv4 dei sistemi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr "Definisce la pagina WEB che legge l'indirizzo IPv6 dei sistemi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr "Definisce l'interfaccia che legge l'indirizzo IP dei sistemi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr "Definisce la rete che legge l'indirizzo IPv4 dei sistemi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr "Definisce la rete che legge l'indirizzo IPv6 dei sistemi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Definisce la sorgente che legge l'indirizzo IPv4 dei sistemi, che sarà "
+"mandata al provider DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Definisce la sorgente che legge l'indirizzo IPv6 dei sistemi, che sarà "
+"mandata al provider DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr "Definisce quale indirizzo IP 'IPv4/IPv6' è mandato al provider DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "Dettagli per"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr "Directory che contiene i file di registro per ogni sezione avviata"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+"Directory che contiene il PID e altre informazioni di stato per ogni seziona "
+"avviata"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "Disabilitato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "Dominio"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS Dinamico"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "Abilita la comunicazione sicura con il provider DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "Abilitato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "Errore"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "Conteggio errore di riprova"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "Intervallo errore di riprova"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "Network Evento"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "File non trovato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "File non trovato o vuoto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+"Segui questo collegamento<br />Troverai più aiuti per ottimizzare il tuo "
+"sistema a eseguire script DDNS con tutte le opzioni"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr "Per informazioni dettagliate sui parametri opzionali guarda qui."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "Per i codici supportati guarda qui"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "Forza Versione IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "Forza Versione IP non supportato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "Forza Intervallo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "Forza TCP su DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "La Versione IP forzata non corrisponde"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "Formato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "Formato: IP o FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr "GNU Wget userà l'IP della rete data, cURL userà l'interfaccia fisica."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "Opzioni Globali"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "HTTPS non supportato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "Suggerimenti"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+"Indirizzo/FQDN da validare, se l'aggiornamento IP avviene o è necessario"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "Sorgente indirizzo IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "Versione indirizzo IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "Indirizzo IPv4"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "Indirizzo IPv6 deve essere dato con le parentesi quadre"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 non è (pienamente) supportato da questo sistema<br />Per favore segui "
+"le istruzioni sul sito di OpenWrt per abilitare il supporto a IPv6<br />o "
+"aggiorna il tuo sistema all'ultima Release di OpenWrt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 non supportato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "Indirizzo IPv6"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr "Se sia cURL e sia GNU Wget sono installati, Wget è usato di default."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"Se questa sezione del servizio è disabilitata, non può essere avviata<br /"
+">Nè da interfaccia LuCI nè da console"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+"Se usi la comunicazione sicura dovresti verificare i certificati del server!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+"Se vuoi mandare aggiornamenti per IPv4 e IPv6, devi definire due "
+"Configurazioni separate es. 'myddns_ipv4' e 'myddns_ipv6'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+"In alcune versioni cURL/libcurl in OpenWrt è compilato senza supporto proxy."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"Installa il pacchetto 'ca-certificates' o i certificati necessari a mano "
+"nella directory di default /etc/ssl/certs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interfaccia"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+"Intervallo per controllare i cambiamenti dell'IP<br />I valori sotto i 5 "
+"minuti == 300 secondi non sono supportati"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+"Intervallo per forzare gli aggiornamenti da mandare al provider DDNS<br /"
+">Impostanto questo parametro a 0 forzerà lo script ad eseguirsi una sola "
+"volta<br />Valori sotto 'Controllo Intervallo' eccetto '0' non sono "
+"supportati"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+"Non è raccomandato agli utenti casuali di cambiare le opzioni in questa "
+"pagina."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "Ultimo Aggiornamento"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "Caricando"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "Visualizzatore Registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "Directory registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "Lunghezza registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "Registra su file"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "Registra su syslog"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "Indirizzo da consultare"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "NON installato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+"Nè GNU Wget con SSL nè cURL installati per selezionare una rete da usare per "
+"comunicazione."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"Nè GNU Wget con SSL nè cURL installati per supportare aggiornamenti sicuri "
+"via protocollo HTTPS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Rete"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "Rete su cui lo script di aggiornamento DDNS sara avviato"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "Mai"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "Prossimo Aggiornamento"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "Nessun certificato trovato"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "Nessuno dato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "Nessun registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "Ip non pubblici e bloccati di default"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "Avviso"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr "Numero di ultime linee memorizzato nei file registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr "OPZIONALE: Forza l'uso di puro IPv4/IPv6 solo comunicazione."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+"OPZIONALE: Forza l'uso del TCP invece del UDP di default per richieste DNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "OPZIONALE: Rete da usare per comunicazione"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "OPZIONALE: Server Proxy per rivelazioni e aggiornamenti."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+"OPZIONALE: Usa Server DNS non di default per individuare 'IP Registrati'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr "Ad Errore lo script riproverà l'azione fallita dopo il tempo dato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+"Ad Errore lo script fermerà l'esecuzione dopo il numero di tentativi dati"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "Parametro Codificato Opzionale"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "Parametro Opzionale"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+"Opzionale: Sostituisci [PARAMENC] nell'URL di aggiornamento (URL codificato)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+"Opzionale: Sostituisci [PARAMOPT] nell'URL di aggiornamento (URL NON "
+"codificato)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "Riassunto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "Server PROXY"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "SERVER PROXY non supportato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Password"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "Percorso per Certificato CA"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "Per favore [Salva & Applica] prima i cambiamenti"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "Per favore premi il pulsante [Leggi]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "Per favore aggiorna alla versione corrente!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "ID del Processo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "Leggi / Rileggi registro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "Cambiare provider DDNS veramente?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "IP Registrato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "Sostituisci [DOMAIN] nell'URL di aggiornamento"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "Sostituisci [PASSWORD] nell'URL di aggiornamento (URL codificato)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr "Sostituisci [NOME UTENTE] nell'URL di aggiornamento (URL codificato)"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "Esegui una volta"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "Mostra di più"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "Richiesto aggiornamento Software"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "Specificare un server DNS non è supportato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "Inizio"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "Inizio / Stop"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "Fermato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+"Il pacchetto 'ddns-scripts' attualmente installato non supporta tutte le "
+"opzioni disponibili."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "L'opzione di default '0' riproverà all'infinito."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "Non c'è un servizio configurato."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "Impostazioni del Timer"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "Per cambiare le opzioni globali clicca qui"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "Per usare cURL attiva questa opzione."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "URL da individuare"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "Errore sconosciuto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+"L'URL di aggiornamento da usare per aggiornare il tuo Provider DDNS.<br /"
+">Segui le istruzioni che trovi sulla loro pagina WEB."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "Usa HTTP Sicuro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "Usa cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr "Script definito dall'utente per leggere l'indirizzo IP dei sistemi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Nome Utente"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "Usare specifici Server DNS non supportato"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "Verifica"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "Versione"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "Informazione Versione"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "Aspettando l'applicazione dei cambiamenti..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "Allarme"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+"Scrivi messaggi dettagliati sul registro. Il file sarà tagliato "
+"automaticamente."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+"Scrivi i messaggi registro al syslog. Gli Errori Critici saranno sempre "
+"scritti sul syslog."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"Dovresti installare il pacchetto 'bind-host' o 'knot-host' o 'drill' o "
+"'hostip', se hai bisogno di specificare un server DNS che identifichi il tuo "
+"IP registrato."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+"Dovresti installare il pacchetto 'bind-host' o 'knot-host' o 'drill' per le "
+"richieste DNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr "Dovresti installare il pacchetto 'wget' o 'curl' o 'uclient-fetch'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+"Dovresti installare il pacchetto 'wget' o 'curl' o 'uclient-fetch' con il "
+"pacchetto 'libustream-*ssl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "Dovresti installare il pacchetto 'wget' o 'curl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+"Dovresti installare il pacchetto 'wget' o 'uclient-fetch' o sostituire "
+"libcurl."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr "cURL è installato, ma libcurl è compilato senza supporto proxy."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL senza Supporto Proxy"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+"non individuo l'IP locale. Per favore seleziona una combinazione Sorgente "
+"diversa"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "non posso risolvere host:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "errore configurazione"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "giorni"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "directory o percorso/file"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "o l'url o lo script può essere impostato"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "abilita qui"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "file o directory non trovati o non 'IGNORE'"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "aiuto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "ore"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "installato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "FQDN invalido / richiesto - Esempio"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "valore minimo '0'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "valore minimo '1'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "valore minimo 5 minuti == 300 secondi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "minuti"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "mancante / richiesto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "deve essere più grande o uguale 'Controlla Intervallo'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "deve iniziare con 'http://'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc (netcat) non può connettersi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "mai"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "Niente dati"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr "non trovato o non eseguibile - Esempio: '/path/to/script.sh'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "nslookup non può risolvere l'host"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "o"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "o più alto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "per favore disabilita"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "per favore rimuovi la voce"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "per favore seleziona versione indirizzo 'IPv4'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "per favore seleziona versione indirizzo 'IPv4' in"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "per favore imposta a 'default'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "porta proxy mancante"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "richiesto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "secondi"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+"per eseguire HTTPS senza la verifica dei certificati del server (insicuro)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "errore sconosciuto"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "errore non specifico"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "usa nome host, FQDN, indirizzo IPv4 o IPv6"
+
+#~ msgid "Config error"
+#~ msgstr "Errore di configurazione"
+
+#~ msgid "Update error"
+#~ msgstr "Errore di aggiornamento"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2013-10-05 17:19+0200\n"
+"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n"
+"Language-Team: \n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "手動アップデート-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "ダイナミックDNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"ダイナミックDNSを使用することで、IPアドレスが変更されても固定のホスト名を使っ"
+"てルーターにアクセスすることができます。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "インターフェース"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "ネットワーク"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "パスワード"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "ユーザー名"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: \n"
+"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\n"
+"Language-Team: \n"
+"Language: no\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Egendefinert oppdaterings-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dynamisk DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"Dynamisk DNS tillater at enheten kan kontaktes ved hjelp av et fast "
+"vertsnavn, uavhengig av om IP adressen endres dynamisk."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Grensesnitt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Nettverk"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Passord"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Brukernavn"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2013-01-06 13:08+0200\n"
+"Last-Translator: obsy <cezary@eko.one.pl>\n"
+"Language-Team: \n"
+"Language: pl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Niestandardowy adres aktualizacyjny"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dynamiczny DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"Dynamiczny DNS umożliwia dostęp do routera z użyciem stałej nazwy hosta, "
+"pomimo posiadania dynamicznie zmieniającego się adresu IP."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interfejs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Sieć"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Hasło"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Nazwa użytkownika"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2017-02-20 17:41-0300\n"
+"Last-Translator: Luiz Angelo Daros de Luca <luizluca@gmail.com>\n"
+"Language-Team: \n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"X-Generator: Poedit 1.8.11\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "&"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- personalizado --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- padrão --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "Configurações Avançadas"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "Permitir IPs não-públicos"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "Aplicar mudanças"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "Configurações Básicas"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+"Abaixo uma lista de dicas de configurações para seu sistema para rodar "
+"atualizações de DNS Dinâmico sem limitações"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+"Abaixo uma lista de configurações DDNS configuradas e seus estados atuais"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "Limitar Rede"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "Não suportado limitar a uma rede específica"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+"nslookup e Wget do BusyBox não suportam que especifique a versão de IP a ser "
+"usada para comunicação com o provedor DDNS!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"nslookup e hostip do BusyBox não suportam que especifique para usar TCP em "
+"vez do padrão UDP quando requisitando servidor DNS!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+"nslookup do BusyBox na versão compilada atualmente não trabalha corretamente "
+"com servidores DNS dados!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "Usuários iniciantes não devem alterar esta configuração"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "Mudando provedor"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "Checar Intervalo"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "Coletando dados…"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "Configuração"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+"Configure aqui os detalhes para todos os serviços DNS Dinâmicos incluindo "
+"esta aplicação LuCI."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr "Configure aqui os detalhes para o serviço DNS Dinâmico selecionado."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "Configuração atual"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+"Atualizações DDNS atuais não são iniciadas no boot ou nos eventos da "
+"interface.<br />Isso é o normal se você roda scripts DDNS por conta própria "
+"(ex. via cron com force_interval setado para ‘0’)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+"Atualizações DDNS atuais não são iniciadas no boot ou nos eventos da "
+"interface.<br />Você pode iniciar/parar cada configuração aqui. Ela irá "
+"rodar até o próximo reboto."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+"Scripts de atualização personalizados para serem usados para atualizar seu "
+"Provedor DDNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "URL para atualização personalizada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "Script para atualização personalizado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "Auto-inicialização de DDNS desabilitada"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "Configuração de cliente DDNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "Documentação de cliente DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "Provedor de serviço DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "Requisição de DNS via TCP não suportada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "Servidor DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "Formato de data"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr "Define a página Web para ler o endereço IPv4 do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr "Define a página Web para ler o endereço IPv6 do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr "Define a interface para ler o endereço IP do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr "Define a rede para ler o endereço IPv4 do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr "Define a rede para ler o endereço IPv6 do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Define a origem para ler o endereço IPv4 do sistema, que será enviado ao "
+"provedor DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Define a origem para ler o endereço IPv6 do sistema, que será enviado ao "
+"provedor DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr "Define qual endereço IP ‘IPv4/IPv6’ é enviado ao provedor DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "Detalhes para"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr "Diretório contendo arquivos de Log para cada sessão em execução"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+"Diretório contendo PID e outras informações de status para cada sessão em "
+"execução"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "Desabilitado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "Domínio"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS Dinâmico"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "Habilitar comunicação segura com o provedor DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "Habilitado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "Erro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "Contador de Tentativas em Erro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "Intervalo de tentativas em Erro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "Rede de Evento"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "Arquivo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "Arquivo não encontrado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "Arquivo não encontrado ou vazio"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+"Siga esse link<br />Você vai encontrar mais dicas para otimizar seu sistema "
+"para rodar scripts DDNS com todas as opções"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+"Olhe aqui para informações mais detalhadas sobre as configurações de "
+"parâmetro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "Olhe aqui para códigos suportados"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "Forçar versão de IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "Forçar versão de IP não suportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "Forçar intervalo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "Forçar TCP em DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "Forçar versão de IP não corresponde"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "Formato"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "Formato: IP ou FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr "GNU Wget usará o IP da rede informada, cURL usará a interface física"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "Configurações Globais"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "HTTPS não suportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "Dicas"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+"Hostname/FQDN a ser validado, se atualização de IP acontecer ou for "
+"necessária"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "Fonte do endereço IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "Versão do endereço IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "Endereço IPv4"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "Endereço IPv6 deve estar entre colchetes"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 não é (completamente) suportado por este sistema<br />Por favor siga as "
+"instruções na página inicial do OpenWrt para habilitar o suporte ao IPv6<br /"
+">ou atualize seu sistema para a última distribuição do OpenWrt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 não suportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "Endereço IPv6"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr "Se ambos cURL e GNU Wget estão instalados, Wget é utilizado por padrão"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"Se esta sessão do serviço está desabilidade, ele não pôde ser iniciado.<br /"
+">nem da interface LuCI nem do console"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+"Você deve verificar os certificados do servidor caso estiver utilizando "
+"comunicação segura"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+"Se deseja enviar atualizações para IPv4 e IPv6 você deve definir duas "
+"configurações separadas. Ex.: ‘myddns_ipv4’ e ‘myddns_ipv6’"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+"Em algumas versões do OpenWrt cURL/libcurl é compilada sem suporte a proxy."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "Informações"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"Instale manualmente o pacote ’ca-certificates’ ou certificados necessários "
+"no diretório padrão /etc/ssl/certs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interface"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+"Intervalo para checar mudança no IP<br />Valores abaixo de 5 minutos == 300 "
+"segundos não são suportados"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+"Intervalo para forçar envio de atualizações para o provedor DDNS<br /"
+">Definindo esse parâmetro em 0 irá forçar o script a rodar apenas uma "
+"vez>br />Valores menores que 'Check Interval', exceto '0', não são suportados"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+"Não é recomendado que usuários iniciantes alterem configurações nessa página"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "Última atualização"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "Carregando"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "Visualizador de arquivo de log"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "Diretório do log"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "Tamanho do log"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "Log para arquivo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "Log para log do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "Verificar nome de host"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "NÃO instalado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+"Nem GNU Wget com SSL nem cURL instalado para selecionar uma rede para usar "
+"para comunicação"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"Nem GNU Wget com SSL nem cURL instalado para suportar atualizações seguras "
+"via protocolo HTTPS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Rede"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "Rede na qual os scripts de atualização DDNS serão iniciados"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "Nunca"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "Próxima atualização"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "Nenhum certificado encontrado"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "Sem dados"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "Sem registros"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "IPs não públicos e bloqueados por padrão"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "Aviso"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr "Número das últimas linhas salvas nos arquivos de log"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr "OPCIONAL: Force o uso de apenas comunicação IPv4/IPv6 pura"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr "OPCIONAL: Force o uso de TCB em vez do padrão UDP em requisições DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "OPCIONAL: Rede para usar para comunicação"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "OPCIONAL: Servidor Proxy para detecção e atualização"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr "OPCIONAL: Use servidor DNS não-padrão para detectar 'Registered IP'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr "Em Erro, o script irá tentar a ação que falhou após um tempo definido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+"Em Erro, o script irá para a execução após um número definido de tentativas"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "Wiki do OpenWRT"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "Parâmetro Opcionalmente Codificado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "Parâmetro Opcional"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr "Opcional: Substitui [PARAMEND] na URL de atualização"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr "Opcional: Substitui [PARAMOPT] na URL de atualização"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "Visão Geral"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "servidor PROXY"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "Servidor PROXY não suportado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Senha"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "Caminho para os certificados CA"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "Por favor antes [Salve e Aplique] suas alterações"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "Por favor pressione o botão [Ler]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "Por favor atualize para a versão atual"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "ID do processo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "Ler / Ler novamente o arquivo de log"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "Mudar servidor DDNS?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "IP registrado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "Substitui [DOMAIN] na URL de atualização"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "Substitui [PASSWORD] na URL de atualização"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr "Substitui [USERNAME] na URL de atualização"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "Rodar apenas uma vez"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "Script"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "Mostrar mais"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "Atualização de software necessária"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "Não é suportado especificar um servidor DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "Iniciar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "Iniciar / Parar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr "Diretório de status"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "Parado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+"O pacote 'ddns-scripts' instalado atualmente não suporta todas as "
+"configurações disponíveis"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "A configuração padrão de '0' terá infinitas tentativas"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "Não há serviço configurado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "Configurações do Controlador de Tempo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "Clique aqui para mudar configurações globais"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "Ative essa opção para usar cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "Detectada pela URL"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "Erro desconhecido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+"URL a ser usada para atualizar seu provedor DDNS.<br />Siga as instruções "
+"encontradas na página deles."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "Usar HTTP Seguro"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "Usar cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr "Script definido pelo usuário para ler endereço IP do sistema"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Usuário"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "Usar servidor DNS específico não é suportado"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "Verificar"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "Versão"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "Informação de Versão"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "Aguardando as alterações serem aplicadas…"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "Alerta"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+"Escreve mensagens detalhadas no arquivo de log. Arquivo será automaticamente "
+"truncado."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+"Escreve mensagens de log no log do sistema. Erros críticos sempre serão "
+"escritos no log do sistema."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' ou "
+"'hostip' caso precise especificar um servidor DNS para detectar seu IP "
+"registrado."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+"Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' para "
+"requisições DNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr "Você deve instalar o pacote 'wget' ou 'curl' ou 'uclient-fetch'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+"Você deve instalar o pacote 'wget' ou 'curl' ou 'uclient-fetch' com "
+"'libustream-*ssl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "Você deve instalar o pacote ‘wget’ ou ‘curl’."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+"Você deve instalar o pacote ‘wget’ ou ‘uclient-fetch’ ou substituir libcurl."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr "cURL está instalado, mas libcurl foi compilada sem suporte a proxy"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL sem suporte a proxy"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+"não pôde detectar IP local. Por favor selecione uma combinação de fonte "
+"diferente"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "não pôde resolver host:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "erro de configuração"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "dias"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "diretório ou caminho/arquivo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "url ou script pode ser setado"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "habilite aqui"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "arquivo ou diretório não encontrado ou não ‘IGNORE’"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "ajuda"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "horas"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "instalado"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "FQDN requerido inválido - Exemplo"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "valor mínimo ‘0’"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "valor mínimo ‘1’"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "valor mínimo 5 minutos == 300 segundos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "minutos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "faltando / necessário"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "deve ser maior ou igual ‘Check Interval’"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "deve iniciar com ‘http://'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc (netcat) não pôde conectar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "nunca"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "sem dados"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr "não encontrado ou não executável - Exemplo: ‘/caminho/para/script.sh'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "nslookup não pôde resolver o host"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "ou"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "ou maior"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "por favor desabilite"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "por favor remova a entrada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "por favor selecione a versão de endereço ‘IPv4’"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "por favor selecione a versão de endereço ‘IPv4’ em"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "por favor defina como ‘default’"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "porta de proxy faltando"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "necessário"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "segundos"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+"para rodar HTTPS sem verificação dos certificados do servidor (não seguro)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "erro desconhecido"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "erro não específico"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "use hostname, FQDN, endereço IPv4 ou IPv6"
+
+#~ msgid "Config error"
+#~ msgstr "Erro de configuração"
+
+#~ msgid "Update error"
+#~ msgstr "Erro de atualização"
+
+#~ msgid ""
+#~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+#~ "package for DNS requests."
+#~ msgstr ""
+#~ "Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' ou "
+#~ "'hostip' para requisições DNS."
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2013-05-31 23:52+0200\n"
+"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n"
+"Language-Team: \n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+#, fuzzy
+msgid "Custom update-URL"
+msgstr "URL para actualização personalizada"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS Dinâmico"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+#, fuzzy
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interface"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Rede"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Password"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Nome de Utilizador"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2013-09-25 19:11+0200\n"
+"Last-Translator: Mihai <WyRwSyK@gmail.com>\n"
+"Language-Team: \n"
+"Language: ro\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
+"20)) ? 1 : 2);;\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Adresa particularizata de actualizare"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "DNS dinamic"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"DNS-ul dinamic permite accesarea routerului printr-un nume dns fix legat de "
+"adresa dinamic IP."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Interfata"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Retea"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Parola"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Utilizator"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Project-Id-Version: LuCI: ddns\n"
+"POT-Creation-Date: 2017-10-17 21:00+0300\n"
+"PO-Revision-Date: 2019-01-15 02:27+0300\n"
+"Language-Team: http://cyber-place.ru\n"
+"MIME-Version: 1.0\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.7.1\n"
+"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: ru\n"
+"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
+"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "и"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- пользовательский --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- по умолчанию --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "Дополнительные настройки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "Разрешить не публичные IP-адреса"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "Применение изменений"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "Основные настройки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+"Советы по настройке для запуска динамических обновлений DNS без ограничений."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr "Список настроек DDNS и их текущее состояние."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "Привязать сеть"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "Привязка к определенной сети не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+"Утилиты nslookup и wget из состава busybox не поддерживают указание IP-"
+"версии, используемой для связи с DDNS провайдером!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"Утилиты nslookup и hostip из состава busybox не поддерживают указание "
+"использовать TCP вместо UDP по умолчанию при запросе DNS сервера!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+"Благодаря текущей скомпилированной версии busybox, утилита nslookup не "
+"обрабатывает данные DNS сервера правильно!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "Обычный пользователь не должен изменять данную опцию"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "Сменить провайдера"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "Интервал проверки"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "Сбор данных..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "Настройка config файла"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr "Настройка для всех служб DDNS, включая это приложение LuCI."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr "Тонкая настройка выбранной службы DDNS."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "Текущие настройки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 set to '0')"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 />Вы можете запустить/остановить каждый config "
+"здесь. Он будет работать до следующей перезагрузки."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+"Пользовательский скрипт обновления, который будет использоваться для вашего "
+"провайдера DDNS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Пользовательский URL обновления"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "Пользовательский скрипт обновления"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "Автостарт DDNS отключен"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "Настройка клиента DDNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "Информация для клиента DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "Провайдер службы DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "DNS запросы по протоколу TCP не поддерживаются"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "DNS сервер"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "Формат даты"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr "Задайте веб-страницу для связи с системным IPv4-адресом из"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr "Задайте веб-страницу для связи с системным IPv6-адресом из"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr "Задайте интерфейс для чтения системного IP-адреса из"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr "Задайте сеть для связи с системным IPv4-адресом из"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr "Задайте сеть для связи с системным IPv6-адреса из"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Задайте источник для связи с системным IPv4-адресом, который будет отправлен "
+"DDNS провайдеру"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+"Задайте источник для связи с системным IPv6-адресом, который будет отправлен "
+"DDNS провайдеру"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+"Задайте версию протокола IP-адреса 'IPv4/IPv6' отправляется провайдеру DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "Подробности для"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr "Папка содержит файлы системного журнала для каждого запуска"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr "Папка содержит PID и прочую информацию о состояниии каждого запуска"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "Отключено"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "Домен"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Динамический DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"DDNS разрешает вашему маршрутизатору иметь постоянное доменное имя, при "
+"динамически изменяемом IP-адресе."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "Включить безопасное соединение с провайдером DDNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "Включено"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "Ошибка"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "Счётчик попыток повтора при ошибке"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "Интервал попытки повтора при ошибке"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "Событие сети"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "Файл"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "Файл не найден"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "Файл не найден или пустой"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+"Пройдите по этой ссылке<br />Там вы найдете больше информации, как настроить "
+"вашу систему с использованием DDNS скриптов с наиболее полным функционалом."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+"Здесь вы сможете получить более подробную информацию о параметрах настройки."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "С поддерживаемыми кодами вы можете ознакомится здесь"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "Назначенная версия IP протокола"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "Назначенная версия IP протокола не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "Назначить интервал"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "Использовать протокол TCP для DNS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "Назначенная версия IP протокола не соответствует"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "Формат"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "В виде: IP-адрес или полное доменное имя"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+"GNU wget будет использовать IP заданной сети, cURL будет использовать "
+"физический интерфейс."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "Основные настройки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "HTTPS не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "Подсказки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+"Имя хоста/полное доменное имя для проверки, если происходит обновление IP-"
+"адреса или оно необходимо"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "IP-адрес источника"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "Версия IP-адреса"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "IPv4-адрес"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "IPv6-адрес должен быть указан в квадратных скобках"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 с включенной поддержкой IPv6"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "IPv6-адрес"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+"Если установлены и cURL и GNU wget, по умолчанию будет использоваться wget."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"Если этот режим службы отключен, её нельзя будет запустить ни с веб-"
+"интерфейса LuCI, ни с консоли"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+"Если используется безопасное соединение, необходимо проверить сертификаты "
+"сервера!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+"В некоторых версиях OpenWrt пакеты cURL/libcurl скомпилированы без поддержки "
+"прокси."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "Информация"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"Установите пакет 'ca-certificates' или необходимые сертификаты вручную в "
+"папку /etc/ssl/certs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Интерфейс"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+"Интервал для проверки измененных IP-адресов.<br />Значения ниже 5 минут (300 "
+"секунд) не поддерживаются"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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' заставит сценарий отработать только один раз, значения ниже "
+"'Интервал проверки', за исключением '0', не поддерживаются"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+"Настройки на данной странице не рекомендуется изменять обычным пользователям."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "Последнее обновление"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "Загрузка"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "Просмотр системного журнала"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "Папка системного журнала"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "Просмотр журнала"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "Запись в файл"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "Запись в журнал"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "Поиск имени хоста"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "Не установлено"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+"Не установлены пакеты GNU wget c SSL или cURL для возможности выбора сети "
+"для связи."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"Не установлены пакеты GNU wget с SSL или cURL для поддержки безопасных "
+"обновлений по протоколу HTTPS."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Сеть"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "Сеть, в которой будут запущены скрипты DDNS-updater"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "Никогда"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "Следующее обновление"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "Сертификаты не найдены"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "Нет данных"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "Отключить журналирование"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "Непубличные и заблокированные по умолчанию IP-адреса"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "Заметка"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr "Число последних строк, для хранения в системном журнале"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr "Необязательно: использовать только чистые версий протоколов IPv4/IPv6."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+"Необязательно: использовать протокол TCP вместо UDP по умолчанию для DNS-"
+"запросов."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "Необязательно: сеть для связи"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "Необязательно: прокси-сервер для обнаружения и обновления."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+"Необязательно: использовать DNS сервер не используемый по умолчанию, для "
+"обнаружения 'Зарегистрированного IP-адреса'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+"В случае ошибки, скрипт повторит требуемые действия по истечении заданного "
+"времени"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+"В случае ошибки, скрипт прекратит выполнение после заданного количества "
+"повторных попыток"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "OpenWrt Wiki"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "Необязательный кодированный параметр"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "Необязательный параметр"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr "Необязательно: заменяет [PARAMENC] в Update-URL (URL-encoded)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr "Необязательно: заменяет [PARAMOPT] в Update-URL (не URL-encoded)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "Обзор"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "Прокси сервер"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "Прокси сервер не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Пароль"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "Путь к CA-сертификату"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "Нажмите [Сохранить и применить] чтобы сохранить ваши настройки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "Нажмите кнопку [Читать / Перечитывать системный журнал]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "Обновите до текущей версии!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "ID процесса"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "Читать / Перечитывать системный журнал"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "Действительно сменить DDNS провайдера?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "Зарегистрированный IP-адрес"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "Заменяет [DOMAIN] в Update-URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "Заменяет [PASSWORD] в Update-URL (URL-encoded)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr "Заменяет [USERNAME] в Update-URL (URL-encoded)"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "Запустить один раз"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "Скрипт"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "Показать больше"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "Требуется обновление программного обеспечения"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "Указанный DNS сервер не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "Старт"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "Старт / Стоп"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr "Папка состояния"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "Остановлено"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+"Установленный пакет 'ddns-scripts' не поддерживает все доступные настройки"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "Значение по умолчанию '0' используется для бесконечного повтора."
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "Сервис не настроен"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "Настройка таймера"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "Чтобы изменить основные настройки, нажмите здесь"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "Для использования cURL активируйте эту опцию."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "URL для обнаружения"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "Неизвестная ошибка"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+"URL обновления используется для обновления вашего DDNS-провайдера.<br /"
+">Следуйте инструкциям, которые вы найдете на их на веб-странице."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "Использовать HTTPS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "Использовать cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr "Заданный пользователем скрипт для чтения системного IP-адреса"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Имя пользователя"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "Использование определенного DNS сервера не поддерживается"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "Проверить"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "Версия"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "Информация о версии"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "Ожидание применения изменений..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "Внимание"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+"Записывать подробные сообщения в системный журнал. Файл будет автоматически "
+"обрезан "
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+"Задайте уровень журналирования. Критические ошибки всегда будут записаны в "
+"системный журнал."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"Установите пакет 'bind-host', 'knot-host', 'drill' или 'hostip' если вам "
+"нужно указать DNS сервер для обнаружения вашего зарегистрированного IP-"
+"адреса."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+"Установите пакет 'bind-host', 'knot-host' или 'drill' для DNS запросов."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr "Установите пакет 'wget', 'curl' или 'uclient-fetch'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+"Установите пакет 'wget', 'curl' или 'uclient-fetch' с 'libustream-*ssl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "Установите пакет 'wget' или 'curl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+"Вы должны установить пакет 'wget' или 'uclient-fetch' или заменить 'libcurl'."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr "cURL установлен, но libcurl был скомпилирован без поддержки прокси."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL без поддержки прокси"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr "Невозможно определить локальный IP-адрес. Выберите другой источник"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "Невозможно разрешить хост:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "Ошибка в config файле"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "дни"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "папка или путь/файл"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "URL или скрипт должны быть установлены"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "Включить здесь"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "Файл или папка не найдены (не установлено 'Игнорировать')"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "помощь"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "часа(ов)"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "установлено"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "Недопустимое полное доменное имя (обязательное поле) — пример"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "Минимальное значение '0'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "Минимальное значение '1'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "Минимальное значение 5 минут (300 секунд)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "минут(ы)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "отсутствует (обязательное поле)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "Должно быть больше или равно 'Интервал проверки'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "Должны начинаться с 'http://'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "Утилита nc (netcat) не может подключиться"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "никогда"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "нет данных"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr "Не найден или не является исполняемым — пример: '/path/to/script.sh'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "Утилита nslookup не может разрешить хост"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "или"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "или выше"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "отключите"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "удалите запись"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "выберите версию протокола 'IPv4' адреса"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "выберите версию протокола 'IPv4' адреса в"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "установите режим 'по умолчанию'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "отсутствует порт прокси"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "требуется"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "секунд(ы)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr "использовать HTTPS без проверки сертификатов сервера (небезопасно)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "неизвестная ошибка"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "нетипичная ошибка"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "использовать имя хоста, полное доменное имя, IPv4 или IPv6-адрес"
--- /dev/null
+msgid ""
+msgstr "Content-Type: text/plain; charset=UTF-8\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "&"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- anpassad --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- standard --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "Avancerade inställningar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "Tillåt icke-publika IP-adresser"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "Verkställer ändringar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "Standardinställningar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+"Här nedanför finns det en lista över konfigurerade DDNS-konfigurationer och "
+"deras nuvarande skick."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "Bind samman nätverk"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "Att binda samman med ett specifikt nätverk stöds inte"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "Byt operatör"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "Kontroll-intervall"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "Samlar in data..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "Konfiguration"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "Nuvarande inställning"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Anpassad webbadress för uppdatering"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "Anpassat uppdateringsskript"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "DNS-server"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "Datumformat"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "Detaljer för"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "Inaktivera"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "Domän"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dynamisk DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "Aktiverad"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "Fel"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "Fil"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "Filen hittades inte"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "Filen hittades inte eller tom"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "Tvinga IP-version"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "Påtvingad IP-version stöds inte"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "Format"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "Format: IP eller FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+"GNU Wget kommer att använda IP-adressen för det angivna nätverket, cURL "
+"kommer att använda det fysiska gränssnittet."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "Globala inställningar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "HTTPS stöds inte"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "Ledtrådar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "IP-adressens källa"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "Version för IP-adress"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "IPv4-adress"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 stöds inte"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "IPv6-adress"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+"Om både cURL och GNU Wget är installerade så används Wget som standard."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "Info"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Gränssnitt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+"Det är INTE rekommenderat för vanliga användare att ändra inställningar på "
+"den här sidan."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "Senaste uppdateringen"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "Laddar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "Visare för loggfil"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "Loggens längd"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "Logga till fil"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "Logga till syslog"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "Kolla upp värdnamn"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "INTE installerad"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Nätverk"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "Aldrig"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "Nästa uppdatering"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "Inga ceritifikat hittades"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "Ingen data"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "Ingen loggning"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "Wiki för OpenWrt"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "Valfri parameter"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "PROXY-server"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "PROXY-servern stöds inte"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Lösenord"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "Vänligen [Spara & Verkställ] dina ändringar först"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "Vänligen tryck på [Läs]-knappen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "Vänligen uppdatera till den senaste versionen!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "Läs / Läs om loggfilen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "Registrerad IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "Kör en gång"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "Skript"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "Visa mer"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "Starta"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "Starta / Stoppa"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "Stoppad"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "Det finns ingen tjänst inställd."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "Klicka här för att ändra på globala inställningar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "Webbadress"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "Webbadress att upptäcka"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "Okänt fel"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "Använd Säker HTTP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "Använd cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Användarnamn"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "Verkställ"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "Information om versionen"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "Väntar på att ändringarna ska bli verkställda..."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "Varning"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL utan Proxy-stöd"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+"kan inte upptäcka lokal IP-adress. Vänligen välj en annorlunda Käll-"
+"kombination"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "kan inte avgöra värd:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "konfigurationsfel"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "dagar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "kunde varken fastställa webbadress eller skript"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "aktivera här"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "hjälp"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "timmar"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "installerad"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "ogiltig FQDN / behövs - Urval"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "minimalt värde '0'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "minimalt värde '1'"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "minimalt värde 5 minuter == 300 sekunder"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "minutrar"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "saknas / behövs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "måste börja med 'http://"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc (netcat) kan inte ansluta"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "aldrig"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "ingen data"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "eller"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "eller större"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "vänligen inaktivera"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "vänligen ta bort inmatningen"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "vänligen välj version för 'IPv4'-adress"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "behövs"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "sekunder"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr "för att köra HTTPS utan verifiering av server-certifikaten (osäkert)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "okänt fel"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "ospecifierat fel"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "använd värdnamn, FQDN, IPv4- eller IPv6-adress"
+
+#~ msgid "Config error"
+#~ msgstr "Konfigurationsfel"
+
+#~ msgid "Update error"
+#~ msgstr "Uppdateringsfel"
--- /dev/null
+msgid ""
+msgstr "Content-Type: text/plain; charset=UTF-8"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2013-11-25 14:27+0200\n"
+"Last-Translator: \n"
+"Language-Team: \n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Arabirim"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Ağ"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Parola"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Kullanıcı adı"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+# Generated from applications/luci-ddns/luasrc/model/cbi/ddns/ddns.lua
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2012-12-29 12:47+0200\n"
+"Last-Translator: Yurii <yuripet@gmail.com>\n"
+"Language-Team: \n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "Користувацький URL оновлення"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Динамічний DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr ""
+"Динамічний DNS дозволяє вашому маршрутизатору бути доступним за фіксованим "
+"доменним ім'ям, маючи динамічну IP-адресу."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "Інтерфейс"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "Мережа"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "Пароль"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "Ім'я користувача"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2009-08-12 18:06+0200\n"
+"Last-Translator: Hong Phuc Dang <dhppat@gmail.com>\n"
+"Language-Team: \n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.4\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+msgid ""
+"BusyBox's nslookup and Wget do not support to specify the IP version to use "
+"for communication with DDNS Provider!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+#, fuzzy
+msgid "Custom update-URL"
+msgstr "Tùy chỉnh cập nhật - URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "Dynamic DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+#, fuzzy
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+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."
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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 ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+msgid ""
+"Update URL to be used for updating your DDNS Provider.<br />Follow "
+"instructions you will find on their WEB page."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr ""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr ""
--- /dev/null
+#
+# Yangfl <mmyangfl@gmail.com>, 2017, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2018-08-08 08:38+0800\n"
+"Last-Translator: Yangfl <mmyangfl@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: Gtranslator 2.91.7\n"
+"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "&"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- 自定义 --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- 默认 --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "高级设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "允许非公网 IP"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "正在应用更改"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "基础设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr "以下是一个能够让您的系统不受限制地进行动态 DNS 更新设置的提示列表"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr "以下是当前已经配置好的 DDNS 设置项列表以及它们的当前状态。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "使用的接口"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "不支持绑定到一个指定的网络"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+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 协议版"
+"本。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"向 DNS 服务器查询时,BusyBox 的 nslookup 和 hostip 不支持使用 TCP 而不是默认"
+"的 UDP!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr "当前编译版本中 BusyBox 的 nslookup 在处理给定的 DNS 服务器不正确!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "普通用户不应该改变这个设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "更改提供者"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "检查时间周期"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "正在收集数据…"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr "在这里修改动态 DNS 服务的详细配置。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr "在这里修改选择的 DDNS 服务的详细配置。"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "当前设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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),这是默认设置。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 />您可以在这里开始/停止每"
+"一个设置的条目。它在下次重启之前一直有效。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr "用来更新动态 DNS 的自定义脚本。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "自定义更新 URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "自定义更新脚本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "DDNS 自动启动已禁用。"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "DDNS 客户端配置"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "DDNS 客户端文档"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "DDNS 服务提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "不支持使用 TCP 进行 DNS 解析"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "DNS-服务器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "日期格式"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr "设定用来读取系统 IPv4 地址的网页"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr "设定用来读取系统 IPv6 地址的网页"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr "设定用来读取系统 IP 地址的接口"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr "设定用来读取系统 IPv4 地址的网络"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr "设定用来读取系统 IPv6 地址的网络"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr "设定 IPv4 地址的来源。这将会被发送给 DDNS 提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr "设定 IPv6 地址的来源。这将会被发送给 DDNS 提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr "设定哪一个 IP 地址(IPv4 或 IPv6)会被发送给 DDNS 提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "详情"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr "保存每一个运行中的设置的运行日志的目录"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr "保存每个运行中的设置的PID以及其它状态信息的目录"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "已禁用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "域名"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "动态 DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr "动态 DNS 允许为拥有动态 IP 的主机配置一个固定的可访问域名。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "启用安全连接与 DDNS 提供商联系"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "已启用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "错误"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "错误重试计数"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "错误重试间隔"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "事件网络"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "文件"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "文件未找到"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "文件未找到或为空"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+"打开这个链接<br />您将会得到更多关于如何通过所有设置项优化您的系统以运行 "
+"DDNS 脚本的提示"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr "请看这里获得关于参数设置的详细信息"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "查看这里获取支持的编码"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "强制设定 IP 版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "不支持强制设定 IP 版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "设定周期"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "强制使用 TCP 进行 DNS 查询"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "强制设定的 IP 版本不匹配"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "格式"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "格式:IP 或者 FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr "GNU Wget 将会使用给定的网络的 IP 地址,而 cURL 将会使用物理接口。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "全局设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "不支持 HTTPS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "提示"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr "主机名/FQDN 验证,如果 IP 更新发生或必要"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "IP 地址来源"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "IP 地址版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "IPv4 地址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "IPv6 地址必须填写在中括号(\"[ ]\")内"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 不被支持"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "IPv6 地址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr "如果 cURL 和 GNU Wget 同时被安装,那么 Wget 将会被优先使用。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"如果服务配置被禁用,那么它将不能被启动。<br />无论是通过 LuCI 页面或者是通过"
+"终端。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr "如果使用安全通信,您应该验证服务器证书!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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')"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr "OpenWrt 中,cURL/libcurl 的某些版本编译时没有启用代理服务器支持"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "信息"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"手动将“ca-certificates”包或需要的证书安装到 /etc/ssl/certs 的默认目录中"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "接口"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr "检查 IP 是否改变的时间隔<br />不支持小于 5 分钟(300 秒)的数值。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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)。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr "强烈不建议初次使用的用户修改本页设定。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "上次更新"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "加载中"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "日志查看器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "日志目录"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "日志长度"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "把日志记录到文件"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "把日志记录到系统日志"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "查询主机名"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "未安装"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr "包含 SSL 支持的 GNU Wget 或者 cURL 均未安装,无法选择网络用于通信。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"包含 SSL 支持的 GNU Wget 或者 cURL 均未安装,无法通过 HTTPS 协议进行安全的更"
+"新。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "网络"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "DDNS 更新脚本将会运行于该网络"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "从不"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "下次更新"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "找不到证书"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "无数据"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "无日志"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "非公网 IP 以及默认被锁定的 IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "提示"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr "日志文件中的最后几行"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr "可选:强制仅使用 IPv4/IPv6 通信。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr "可选:强制使用 TCP 而非 UDP 请求 DNS。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "可选:用于通信的网络"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "可选:用于检测以及更新的代理服务器。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr "可选:使用非默认 DNS 服务器检测\"已注册的 IP 地址\"。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr "当出错时,脚本将会重试失败的动作的次数"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr "当出错时,脚本将会重试该次数之后退出"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "OpenWrt Wiki"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "可选编码参数"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "可选参数"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr "可选:替换更新 URL(已编码 URL)中的 [PARAMENC]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr "可选:替换更新 URL(未编码 URL)中的 [PARAMENC]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "总览"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "代理服务器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "不支持代理服务器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "密码"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "CA 证书路径"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "请先保存并应用您的设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "请按下\"读取\"按钮"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "请更新到最新版本!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "进程 ID"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "读取/重新读取日志文件"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "确定更改 DDNS 提供商吗?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "已注册的 IP 地址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "替换更新 URL 中的 [DOMAIN]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "替换更新 URL(已编码 URL)中的 [PASSWORD]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr "替换更新 URL(已编码 URL)中的 [USERNAME]"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "运行一次"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "脚本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "查看更多"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "需要进行软件更新"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "不支持指定 DNS 服务器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "启动"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "启动 / 停止"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr "状态目录"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "已停止"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr "当前已安装的“ddns-scripts”软件包不支持所有可用设置项。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "默认设置“0”将无限重试。"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "没有已经配置好的服务项"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "计时器设定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "点击这里更改全局设置"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "选中此项以使用 cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "用于检测的 URL"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "未知错误"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+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。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "使用 HTTPS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "使用 cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr "使用设定的脚本来读取系统 IP 地址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "用户名"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "不支持使用特定的 DNS 服务器"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "验证"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "版本"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "版本信息"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "正在应用更改…"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "等待"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr "向日志中写入详细信息。文件将自动缩小。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr "把日志写入系统日志。无论是否启用这项,错误信息总是会被写入系统日志。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"如果您需要指定 DNS 服务器来检测您注册的 IP,您应该安装“bind-host”或“knot-"
+"host”或“drill”或“hostip”软件包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr "您应该为 DNS 请求安装“bind-host”或“knot-host”或“drill”软件包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr "您应该安装“wget”或“curl”或“uclient-fetch”软件包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr "您应该安装“wget”或“curl”或“uclient-fetch”,及“libustream-*ssl”软件包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "您应该安装“wget”或“curl”软件包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr "您应该安装“wget”或“uclient-fetch”软件包,或替换 libcurl。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr "cURL 已经安装,但是 libcurl 编译时没有启用代理支持。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL 没有包含代理支持"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr "无法确定本地 IP。请更换 IP 来源。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "无法解析主机:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "配置错误"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "天"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "目录或者到文件的路径"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "接受 URL 或者脚本"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "在这里启用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "文件或目录未找到或未\"被忽视\""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "帮助"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "小时"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "已安装"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "FQDN 无效 / 必需 - 示例"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "最小值 0"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "最小值 1"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "最小值为 5 分钟(300 秒)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "分钟"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "必须填写"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "必须大于或等于\"检查时间周期\""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "必须以'http://'开头"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc(netcat)不可连接"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "从不"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "无数据"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr "未找到或者不可执行 - 示例:“/path/to/script.sh”"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "nslookup 不能解析主机"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "或者"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "或者更大"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "请禁用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "请移除该字段"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "请设定 IPv4 地址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "请设定 IPv4 地址于"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "请设置为\"默认\""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "代理端口未填"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "必须填写"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "秒"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "未知错误"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "未指定的错误"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "使用主机名或 IPv4/IPv6 地址"
+
+#~ msgid "Config error"
+#~ msgstr "配置错误"
+
+#~ msgid "Update error"
+#~ msgstr "更新错误"
+
+#~ msgid ""
+#~ "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS "
+#~ "protocol."
+#~ msgstr "包含SSL支持的GNU Wget或者cURL均未被安装.无法使用HTTPS更新DDNS"
+
+#~ msgid "You should install BIND host package for DNS requests."
+#~ msgstr "您需要安装BIND以请求DNS记录."
+
+#~ msgid "You should install GNU Wget with SSL (preferred) 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."
--- /dev/null
+#
+# Yangfl <mmyangfl@gmail.com>, 2017, 2018.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: luci-app-ddns 2.4.0-1\n"
+"POT-Creation-Date: 2016-01-30 11:07+0100\n"
+"PO-Revision-Date: 2018-08-08 08:38+0800\n"
+"Last-Translator: Yangfl <mmyangfl@gmail.com>\n"
+"Language: zh_TW\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: Gtranslator 2.91.7\n"
+"Language-Team: <debian-l10n-chinese@lists.debian.org>\n"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:145
+msgid "&"
+msgstr "&"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:562
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:591
+msgid "-- custom --"
+msgstr "-- 自訂 --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1108
+msgid "-- default --"
+msgstr "-- 預設 --"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:53
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:264
+msgid "Advanced Settings"
+msgstr "高階設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:46
+msgid "Allow non-public IP's"
+msgstr "允許非公網 IP"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:176
+msgid "Applying changes"
+msgstr "正在應用更改"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:50
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:263
+msgid "Basic Settings"
+msgstr "基礎設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:25
+msgid ""
+"Below a list of configuration tips for your system to run Dynamic DNS "
+"updates without limitations"
+msgstr "以下是一個能夠讓您的系統不受限制地進行動態 DNS 更新設定的提示列表"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:95
+msgid ""
+"Below is a list of configured DDNS configurations and their current state."
+msgstr "以下是當前已經配置好的 DDNS 設定項列表以及它們的當前狀態。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1104
+msgid "Bind Network"
+msgstr "使用的介面"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1114
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82
+msgid "Binding to a specific network not supported"
+msgstr "不支援繫結到一個指定的網路"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113
+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 協議版"
+"本。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:133
+msgid ""
+"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
+"of default UDP when requesting DNS server!"
+msgstr ""
+"向 DNS 伺服器查詢時,BusyBox 的 nslookup 和 hostip 不支援使用 TCP 而不是預設"
+"的 UDP!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:146
+msgid ""
+"BusyBox's nslookup in the current compiled version does not handle given DNS "
+"Servers correctly!"
+msgstr "當前編譯版本中 BusyBox 的 nslookup 在處理給定的 DNS 伺服器不正確!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1118
+msgid "Casual users should not change this setting"
+msgstr "普通使用者不應該改變這個設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:407
+msgid "Change provider"
+msgstr "更改提供者"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1302
+msgid "Check Interval"
+msgstr "檢查時間週期"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:55
+msgid "Collecting data..."
+msgstr "正在收集資料…"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:102
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:48
+msgid "Configuration"
+msgstr "設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:27
+msgid ""
+"Configure here the details for all Dynamic DNS services including this LuCI "
+"application."
+msgstr "在這裡修改動態 DNS 服務的詳細配置。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:261
+msgid "Configure here the details for selected Dynamic DNS service."
+msgstr "在這裡修改選擇的 DDNS 服務的詳細配置。"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:16
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:29
+msgid "Current setting"
+msgstr "當前設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:46
+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),這是預設設定。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:76
+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 />您可以在這裡開始/停止每"
+"一個設定的條目。它在下次重啟之前一直有效。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:452
+msgid "Custom update script to be used for updating your DDNS Provider."
+msgstr "用來更新動態 DNS 的自訂指令碼。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:412
+msgid "Custom update-URL"
+msgstr "自訂更新 URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:451
+msgid "Custom update-script"
+msgstr "自訂更新指令碼"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:45
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:75
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:19
+msgid "DDNS Autostart disabled"
+msgstr "DDNS 自動啟動已禁用。"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:74
+msgid "DDNS Client Configuration"
+msgstr "DDNS 客戶端配置"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:70
+msgid "DDNS Client Documentation"
+msgstr "DDNS 客戶端文件"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:328
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:365
+msgid "DDNS Service provider"
+msgstr "DDNS 服務提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1211
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1222
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:132
+msgid "DNS requests via TCP not supported"
+msgstr "不支援使用 TCP 進行 DNS 解析"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1165
+msgid "DNS-Server"
+msgstr "DNS-伺服器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:56
+msgid "Date format"
+msgstr "日期格式"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:846
+msgid "Defines the Web page to read systems IPv4-Address from"
+msgstr "設定用來讀取系統 IPv4 位址的網頁"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:894
+msgid "Defines the Web page to read systems IPv6-Address from"
+msgstr "設定用來讀取系統 IPv6 位址的網頁"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:942
+msgid "Defines the interface to read systems IP-Address from"
+msgstr "設定用來讀取系統 IP 位址的介面"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:766
+msgid "Defines the network to read systems IPv4-Address from"
+msgstr "設定用來讀取系統 IPv4 位址的網路"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:807
+msgid "Defines the network to read systems IPv6-Address from"
+msgstr "設定用來讀取系統 IPv6 位址的網路"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:661
+msgid ""
+"Defines the source to read systems IPv4-Address from, that will be send to "
+"the DDNS provider"
+msgstr "設定 IPv4 位址的來源。這將會被髮送給 DDNS 提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:711
+msgid ""
+"Defines the source to read systems IPv6-Address from, that will be send to "
+"the DDNS provider"
+msgstr "設定 IPv6 位址的來源。這將會被髮送給 DDNS 提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:302
+msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
+msgstr "設定哪一個 IP 位址(IPv4 或 IPv6)會被髮送給 DDNS 提供商"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:260
+msgid "Details for"
+msgstr "詳情"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:86
+msgid "Directory contains Log files for each running section"
+msgstr "儲存每一個執行中的設定的執行日誌的目錄"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:76
+msgid ""
+"Directory contains PID and other status information for each running section"
+msgstr "儲存每個執行中的設定的PID以及其它狀態資訊的目錄"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:193
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:217
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:68
+msgid "Disabled"
+msgstr "已禁用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:479
+msgid "Domain"
+msgstr "域名"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:52
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:44
+msgid "Dynamic DNS"
+msgstr "動態 DNS"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:65
+msgid ""
+"Dynamic DNS allows that your router can be reached with a fixed hostname "
+"while having a dynamically changing IP address."
+msgstr "動態 DNS 允許為擁有動態 IP 的主機配置一個固定的可訪問域名。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:609
+msgid "Enable secure communication with DDNS provider"
+msgstr "啟用安全連線與 DDNS 提供商聯絡"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:271
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:153
+msgid "Enabled"
+msgstr "已啟用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1286
+msgid "Error"
+msgstr "錯誤"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425
+msgid "Error Retry Counter"
+msgstr "錯誤重試計數"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443
+msgid "Error Retry Interval"
+msgstr "錯誤重試間隔"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1019
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1058
+msgid "Event Network"
+msgstr "事件網路"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1295
+msgid "File"
+msgstr "檔案"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:469
+msgid "File not found"
+msgstr "檔案未找到"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1501
+#: applications/luci-app-ddns/luasrc/view/ddns/detail_logview.htm:12
+msgid "File not found or empty"
+msgstr "檔案未找到或為空"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:87
+msgid ""
+"Follow this link<br />You will find more hints to optimize your system to "
+"run DDNS scripts with all options"
+msgstr ""
+"開啟這個連結<br />您將會得到更多關於如何通過所有設定項優化您的系統以執行 "
+"DDNS 指令碼的提示"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:32
+msgid "For detailed information about parameter settings look here."
+msgstr "請看這裡獲得關於引數設定的詳細資訊"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:58
+msgid "For supported codes look here"
+msgstr "檢視這裡獲取支援的編碼"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1139
+msgid "Force IP Version"
+msgstr "強制設定 IP 版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1145
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1154
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:112
+msgid "Force IP Version not supported"
+msgstr "不支援強制設定 IP 版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1357
+msgid "Force Interval"
+msgstr "設定週期"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205
+msgid "Force TCP on DNS"
+msgstr "強制使用 TCP 進行 DNS 查詢"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264
+msgid "Forced IP Version don't matched"
+msgstr "強制設定的 IP 版本不匹配"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1243
+msgid "Format"
+msgstr "格式"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1167
+msgid "Format: IP or FQDN"
+msgstr "格式:IP 或者 FQDN"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:87
+msgid ""
+"GNU Wget will use the IP of given network, cURL will use the physical "
+"interface."
+msgstr "GNU Wget 將會使用給定的網路的 IP 位址,而 cURL 將會使用物理介面。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:26
+msgid "Global Settings"
+msgstr "全域性設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:606
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:615
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:68
+msgid "HTTPS not supported"
+msgstr "不支援 HTTPS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:24
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:55
+msgid "Hints"
+msgstr "提示"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:279
+msgid "Hostname/FQDN to validate, if IP update happen or necessary"
+msgstr "主機名/FQDN 驗證,如果 IP 更新發生或必要"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:660
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:710
+msgid "IP address source"
+msgstr "IP 位址來源"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:301
+msgid "IP address version"
+msgstr "IP 位址版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:305
+msgid "IPv4-Address"
+msgstr "IPv4 位址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1244
+msgid "IPv6 address must be given in square brackets"
+msgstr "IPv6 位址必須填寫在中括號(\"[ ]\")內"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:57
+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 版本"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:28
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:32
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:38
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:56
+msgid "IPv6 not supported"
+msgstr "IPv6 不被支援"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:309
+msgid "IPv6-Address"
+msgstr "IPv6 位址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:114
+msgid "If both cURL and GNU Wget are installed, Wget is used by default."
+msgstr "如果 cURL 和 GNU Wget 同時被安裝,那麼 Wget 將會被優先使用。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:272
+msgid ""
+"If this service section is disabled it could not be started.<br />Neither "
+"from LuCI interface nor from console"
+msgstr ""
+"如果服務配置被禁用,那麼它將不能被啟動。<br />無論是通過 LuCI 頁面或者是通過"
+"終端。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:160
+msgid "If using secure communication you should verify server certificates!"
+msgstr "如果使用安全通訊,您應該驗證伺服器證書!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:97
+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')"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:73
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:89
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:103
+msgid ""
+"In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
+msgstr "OpenWrt 中,cURL/libcurl 的某些版本編譯時沒有啟用代理伺服器支援"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1283
+msgid "Info"
+msgstr "資訊"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:162
+msgid ""
+"Install 'ca-certificates' package or needed certificates by hand into /etc/"
+"ssl/certs default directory"
+msgstr ""
+"手動將“ca-certificates”包或需要的證書安裝到 /etc/ssl/certs 的預設目錄中"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:666
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:716
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:941
+msgid "Interface"
+msgstr "介面"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1334
+msgid ""
+"Interval to check for changed IP<br />Values below 5 minutes == 300 seconds "
+"are not supported"
+msgstr "檢查 IP 是否改變的時間隔<br />不支援小於 5 分鐘(300 秒)的數值。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1400
+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)。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:29
+msgid "It is NOT recommended for casual users to change settings on this page."
+msgstr "強烈不建議初次使用的使用者修改本頁設定。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+msgid "Last Update"
+msgstr "上次更新"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:177
+msgid "Loading"
+msgstr "載入中"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:266
+msgid "Log File Viewer"
+msgstr "日誌檢視器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:85
+msgid "Log directory"
+msgstr "日誌目錄"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:95
+msgid "Log length"
+msgstr "日誌長度"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1293
+msgid "Log to file"
+msgstr "把日誌記錄到檔案"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1279
+msgid "Log to syslog"
+msgstr "把日誌記錄到系統日誌"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:278
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:50
+msgid "Lookup Hostname"
+msgstr "查詢主機名"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:101
+msgid "NOT installed"
+msgstr "未安裝"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:83
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
+"communication."
+msgstr "包含 SSL 支援的 GNU Wget 或者 cURL 均未安裝,無法選擇網路用於通訊。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:69
+msgid ""
+"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
+"HTTPS protocol."
+msgstr ""
+"包含 SSL 支援的 GNU Wget 或者 cURL 均未安裝,無法通過 HTTPS 協議進行安全的更"
+"新。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:664
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:714
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:765
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:802
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:52
+msgid "Network"
+msgstr "網路"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1020
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1066
+msgid "Network on which the ddns-updater scripts will be started"
+msgstr "DDNS 更新指令碼將會運行於該網路"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:45
+msgid "Never"
+msgstr "從不"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:159
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:49
+msgid "Next Update"
+msgstr "下次更新"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:159
+msgid "No certificates found"
+msgstr "找不到證書"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:87
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:30
+msgid "No data"
+msgstr "無資料"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1282
+msgid "No logging"
+msgstr "無日誌"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:47
+msgid "Non-public and by default blocked IP's"
+msgstr "非公網 IP 以及預設被鎖定的 IP"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1284
+msgid "Notice"
+msgstr "提示"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:96
+msgid "Number of last lines stored in log files"
+msgstr "日誌檔案中的最後幾行"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1148
+msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
+msgstr "可選:強制僅使用 IPv4/IPv6 通訊。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1214
+msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
+msgstr "可選:強制使用 TCP 而非 UDP 請求 DNS。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1117
+msgid "OPTIONAL: Network to use for communication"
+msgstr "可選:用於通訊的網路"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1242
+msgid "OPTIONAL: Proxy-Server for detection and updates."
+msgstr "可選:用於檢測以及更新的代理伺服器。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1166
+msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
+msgstr "可選:使用非預設 DNS 伺服器檢測\"已註冊的 IP 位址\"。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1470
+msgid "On Error the script will retry the failed action after given time"
+msgstr "當出錯時,指令碼將會重試失敗的動作的次數"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426
+msgid "On Error the script will stop execution after given number of retrys"
+msgstr "當出錯時,指令碼將會重試該次數之後退出"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:68
+msgid "OpenWrt Wiki"
+msgstr "OpenWrt Wiki"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:514
+msgid "Optional Encoded Parameter"
+msgstr "可選編碼引數"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:525
+msgid "Optional Parameter"
+msgstr "可選引數"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:515
+msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
+msgstr "可選:替換更新 URL(已編碼 URL)中的 [PARAMENC]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:526
+msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
+msgstr "可選:替換更新 URL(未編碼 URL)中的 [PARAMENC]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:94
+msgid "Overview"
+msgstr "總覽"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1233
+msgid "PROXY-Server"
+msgstr "代理伺服器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1239
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1269
+msgid "PROXY-Server not supported"
+msgstr "不支援代理伺服器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:502
+msgid "Password"
+msgstr "密碼"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:630
+msgid "Path to CA-Certificate"
+msgstr "CA 證書路徑"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:144
+msgid "Please [Save & Apply] your changes first"
+msgstr "請先儲存並應用您的設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1499
+msgid "Please press [Read] button"
+msgstr "請按下\"讀取\"按鈕"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:36
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:66
+msgid "Please update to the current version!"
+msgstr "請更新到最新版本!"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Process ID"
+msgstr "程序 ID"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1494
+msgid "Read / Reread log file"
+msgstr "讀取/重新讀取日誌檔案"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:406
+msgid "Really change DDNS provider?"
+msgstr "確定更改 DDNS 提供商嗎?"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:113
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:51
+msgid "Registered IP"
+msgstr "已註冊的 IP 位址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480
+msgid "Replaces [DOMAIN] in Update-URL"
+msgstr "替換更新 URL 中的 [DOMAIN]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503
+msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
+msgstr "替換更新 URL(已編碼 URL)中的 [PASSWORD]"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492
+msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
+msgstr "替換更新 URL(已編碼 URL)中的 [USERNAME]"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:64
+msgid "Run once"
+msgstr "執行一次"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:667
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:717
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:981
+msgid "Script"
+msgstr "指令碼"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:86
+msgid "Show more"
+msgstr "檢視更多"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:33
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:63
+msgid "Software update required"
+msgstr "需要進行軟體更新"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1174
+msgid "Specifying a DNS-Server is not supported"
+msgstr "不支援指定 DNS 伺服器"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:238
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:34
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:115
+msgid "Start"
+msgstr "啟動"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:229
+msgid "Start / Stop"
+msgstr "啟動 / 停止"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:75
+msgid "Status directory"
+msgstr "狀態目錄"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:198
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:221
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:66
+msgid "Stopped"
+msgstr "已停止"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:34
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:64
+msgid ""
+"The currently installed 'ddns-scripts' package did not support all available "
+"settings."
+msgstr "當前已安裝的“ddns-scripts”軟體包不支援所有可用設定項。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1428
+msgid "The default setting of '0' will retry infinite."
+msgstr "預設設定“0”將無限重試。"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:36
+msgid "There is no service configured."
+msgstr "沒有已經配置好的服務項"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:56
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:265
+msgid "Timer Settings"
+msgstr "計時器設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:101
+msgid "To change global settings click here"
+msgstr "點選這裡更改全域性設定"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:116
+msgid "To use cURL activate this option."
+msgstr "選中此項以使用 cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:665
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:715
+msgid "URL"
+msgstr "URL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:845
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:890
+msgid "URL to detect"
+msgstr "用於檢測的 URL"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:42
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:55
+msgid "Unknown error"
+msgstr "未知錯誤"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:413
+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。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:600
+msgid "Use HTTP Secure"
+msgstr "使用 HTTPS"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:113
+msgid "Use cURL"
+msgstr "使用 cURL"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:982
+msgid "User defined script to read systems IP-Address"
+msgstr "使用設定的指令碼來讀取系統 IP 位址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:491
+msgid "Username"
+msgstr "使用者名稱"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:145
+msgid "Using specific DNS Server not supported"
+msgstr "不支援使用特定的 DNS 伺服器"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:183
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:209
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:58
+msgid "Verify"
+msgstr "驗證"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:95
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:97
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:100
+msgid "Version"
+msgstr "版本"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:93
+msgid "Version Information"
+msgstr "版本資訊"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/overview_status.htm:178
+msgid "Waiting for changes to be applied..."
+msgstr "正在應用更改…"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1285
+msgid "Warning"
+msgstr "等待"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1294
+msgid ""
+"Writes detailed messages to log file. File will be truncated automatically."
+msgstr "向日志中寫入詳細資訊。檔案將自動縮小。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1280
+msgid ""
+"Writes log messages to syslog. Critical Errors will always be written to "
+"syslog."
+msgstr "把日誌寫入系統日誌。無論是否啟用這項,錯誤資訊總是會被寫入系統日誌。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:149
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' "
+"package, if you need to specify a DNS server to detect your registered IP."
+msgstr ""
+"如果您需要指定 DNS 伺服器來檢測您註冊的 IP,您應該安裝“bind-host”或“knot-"
+"host”或“drill”或“hostip”軟體包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:121
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:136
+msgid ""
+"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
+"requests."
+msgstr "您應該為 DNS 請求安裝“bind-host”或“knot-host”或“drill”軟體包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:117
+msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+msgstr "您應該安裝“wget”或“curl”或“uclient-fetch”軟體包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:71
+msgid ""
+"You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
+"*ssl' package."
+msgstr "您應該安裝“wget”或“curl”或“uclient-fetch”,及“libustream-*ssl”軟體包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:85
+msgid "You should install 'wget' or 'curl' package."
+msgstr "您應該安裝“wget”或“curl”軟體包。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:101
+msgid ""
+"You should install 'wget' or 'uclient-fetch' package or replace libcurl."
+msgstr "您應該安裝“wget”或“uclient-fetch”軟體包,或替換 libcurl。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:99
+msgid "cURL is installed, but libcurl was compiled without proxy support."
+msgstr "cURL 已經安裝,但是 libcurl 編譯時沒有啟用代理支援。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:98
+msgid "cURL without Proxy Support"
+msgstr "cURL 沒有包含代理支援"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:676
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:731
+msgid "can not detect local IP. Please select a different Source combination"
+msgstr "無法確定本地 IP。請更換 IP 來源。"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:440
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:868
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:919
+msgid "can not resolve host:"
+msgstr "無法解析主機:"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:120
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:29
+msgid "config error"
+msgstr "配置錯誤"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1341
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1409
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1477
+msgid "days"
+msgstr "天"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:631
+msgid "directory or path/file"
+msgstr "目錄或者到檔案的路徑"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:429
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:467
+msgid "either url or script could be set"
+msgstr "接受 URL 或者指令碼"
+
+#: applications/luci-app-ddns/luasrc/view/ddns/system_status.htm:20
+msgid "enable here"
+msgstr "在這裡啟用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:650
+msgid "file or directory not found or not 'IGNORE'"
+msgstr "檔案或目錄未找到或未\"被忽視\""
+
+#: applications/luci-app-ddns/luasrc/view/ddns/global_value.htm:28
+msgid "help"
+msgstr "幫助"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1340
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1408
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1476
+msgid "hours"
+msgstr "小時"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:99
+msgid "installed"
+msgstr "已安裝"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:286
+msgid "invalid FQDN / required - Sample"
+msgstr "FQDN 無效 / 必需 - 示例"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1364
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1432
+msgid "minimum value '0'"
+msgstr "最小值 0"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1449
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua:101
+msgid "minimum value '1'"
+msgstr "最小值 1"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1308
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1315
+msgid "minimum value 5 minutes == 300 seconds"
+msgstr "最小值為 5 分鐘(300 秒)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1339
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1407
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1475
+msgid "minutes"
+msgstr "分鐘"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:208
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:424
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:436
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:438
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:462
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:859
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:866
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:910
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:917
+msgid "missing / required"
+msgstr "必須填寫"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1382
+msgid "must be greater or equal 'Check Interval'"
+msgstr "必須大於或等於\"檢查時間週期\""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:434
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:864
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:915
+msgid "must start with 'http://'"
+msgstr "必須以'http://'開頭"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1188
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1263
+msgid "nc (netcat) can not connect"
+msgstr "nc(netcat)不可連線"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:171
+msgid "never"
+msgstr "從不"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:147
+msgid "no data"
+msgstr "無資料"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:996
+msgid "not found or not executable - Sample: '/path/to/script.sh'"
+msgstr "未找到或者不可執行 - 示例:“/path/to/script.sh”"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1187
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1262
+msgid "nslookup can not resolve host"
+msgstr "nslookup 不能解析主機"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:632
+msgid "or"
+msgstr "或者"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:98
+msgid "or higher"
+msgstr "或者更大"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:607
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1146
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1212
+msgid "please disable"
+msgstr "請禁用"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1240
+msgid "please remove entry"
+msgstr "請移除該欄位"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:29
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:34
+msgid "please select 'IPv4' address version"
+msgstr "請設定 IPv4 位址"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:40
+msgid "please select 'IPv4' address version in"
+msgstr "請設定 IPv4 位址於"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1115
+msgid "please set to 'default'"
+msgstr "請設定為\"預設\""
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1265
+msgid "proxy port missing"
+msgstr "代理埠未填"
+
+#: applications/luci-app-ddns/luasrc/controller/ddns.lua:96
+msgid "required"
+msgstr "必須填寫"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1338
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1406
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1474
+msgid "seconds"
+msgstr "秒"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:633
+msgid "to run HTTPS without verification of server certificates (insecure)"
+msgstr "使用 HTTPS 但不檢查伺服器證書(不安全)"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:185
+msgid "unknown error"
+msgstr "未知錯誤"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1190
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1266
+msgid "unspecific error"
+msgstr "未指定的錯誤"
+
+#: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176
+msgid "use hostname, FQDN, IPv4- or IPv6-Address"
+msgstr "使用主機名或 IPv4/IPv6 位址"
+
+#~ msgid "Config error"
+#~ msgstr "配置錯誤"
+
+#~ msgid "Update error"
+#~ msgstr "更新錯誤"
+
+#~ msgid ""
+#~ "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS "
+#~ "protocol."
+#~ msgstr "包含SSL支援的GNU Wget或者cURL均未被安裝.無法使用HTTPS更新DDNS"
+
+#~ msgid "You should install BIND host package for DNS requests."
+#~ msgstr "您需要安裝BIND以請求DNS記錄."
+
+#~ msgid "You should install GNU Wget with SSL (preferred) 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."
--- /dev/null
+#!/bin/sh
+
+# no longer needed for "Save and Apply" to restart ddns
+uci -q batch <<-EOF >/dev/null
+ delete ucitrack.@ddns[-1]
+ commit ucitrack
+EOF
+
+rm -f /tmp/luci-indexcache
+return 0