diff options
Diffstat (limited to 'applications/luci-app-ddns')
37 files changed, 12296 insertions, 9295 deletions
diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js index 2bda3f3bc5..4592c47c4c 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js @@ -1,4 +1,5 @@ 'use strict'; +'require ui'; 'require view'; 'require dom'; 'require poll'; @@ -8,43 +9,40 @@ 'require form'; 'require tools.widgets as widgets'; -var callGetLogServices, callInitAction, callDDnsGetStatus; - -var NextUpdateStrings = {}; - -NextUpdateStrings = { - 'Verify' : _("Verify"), - 'Run once' : _("Run once"), - 'Disabled' : _("Disabled"), - 'Stopped' : _("Stopped") -} +return view.extend({ -var time_res = {}; -time_res['seconds'] = 1; -time_res['minutes'] = 60; -time_res['hours'] = 3600; + NextUpdateStrings : { + 'Verify' : _("Verify"), + 'Run once' : _("Run once"), + 'Disabled' : _("Disabled"), + 'Stopped' : _("Stopped") + }, -callGetLogServices = rpc.declare({ - object: 'luci.ddns', - method: 'get_services_log', - params: [ 'service_name' ], - expect: { }, -}); + time_res : { + seconds : 1, + minutes : 60, + hours : 3600, + }, -callInitAction = rpc.declare({ - object: 'luci', - method: 'setInitAction', - params: [ 'name', 'action' ], - expect: { result: false } -}); + callGetLogServices: rpc.declare({ + object: 'luci.ddns', + method: 'get_services_log', + params: [ 'service_name' ], + expect: { }, + }), -callDDnsGetStatus = rpc.declare({ - object: 'luci.ddns', - method: 'get_ddns_state', - expect: { } -}); + callInitAction: rpc.declare({ + object: 'luci', + method: 'setInitAction', + params: [ 'name', 'action' ], + expect: { result: false } + }), -return view.extend({ + callDDnsGetStatus: rpc.declare({ + object: 'luci.ddns', + method: 'get_ddns_state', + expect: { } + }), callDDnsGetEnv: rpc.declare({ object: 'luci.ddns', @@ -58,14 +56,137 @@ return view.extend({ expect: { } }), + services: {}, + + /* + * Services list is gen by 3 different source: + * 1. /usr/share/ddns/default contains the service installed by opkg + * 2. /usr/share/ddns/custom contains any service installed by the + * user or the ddns script (for example when service are + * downloaded) + * 3. /usr/share/ddns/list contains all the service that can be + * downloaded by using the ddns script ('service on demand' feature) + * + * (Special services that requires a dedicated package ARE NOT + * supported by the 'service on demand' feature) + */ + callGenServiceList: function(m, ev) { + return Promise.all([ + L.resolveDefault(fs.list('/usr/share/ddns/default'), []), + L.resolveDefault(fs.list('/usr/share/ddns/custom'), []), + L.resolveDefault(fs.read('/usr/share/ddns/list'), null) + ]).then(L.bind(function (data) { + var default_service = data[0], + custom_service = data[1], + list_service = data[2] && data[2].split("\n") || [], + _this = this; + + this.services = {}; + + default_service.forEach(function (service) { + _this.services[service.name.replace('.json','')] = true + }); + + custom_service.forEach(function (service) { + _this.services[service.name.replace('.json','')] = true + }); + + list_service.forEach(function (service) { + if (!_this.services[service]) + _this.services[service] = false; + }); + }, this)) + }, + + /* + * Check if the service is supported. + * If the script doesn't find any json assume a 'service on demand' install. + * If a json is found check if the ip type is supported. + * Invalidate the service_name if is not supported. + */ + handleCheckService : function(s, service_name, ipv6, ev, section_id) { + + var value = service_name.formvalue(section_id); + s.service_supported = null; + service_name.triggerValidation(section_id); + + return this.handleGetServiceData(value) + .then(L.bind(function (service_data) { + if (value != '-' && service_data) { + service_data = JSON.parse(service_data); + if (ipv6.formvalue(section_id) == "1" && !service_data.ipv6) { + s.service_supported = false; + return; + } + } + s.service_supported = true; + }, service_name)) + .then(L.bind(service_name.triggerValidation, service_name, section_id)) + }, + + handleGetServiceData: function(service) { + return Promise.all([ + L.resolveDefault(fs.read('/usr/share/ddns/custom/'+service+'.json'), null), + L.resolveDefault(fs.read('/usr/share/ddns/default/'+service+'.json'), null) + ]).then(function(data) { + return data[0] || data[1] || null; + }) + }, + + handleInstallService: function(m, service_name, section_id, section, _this, ev) { + var service = service_name.formvalue(section_id) + return fs.exec('/usr/bin/ddns', ['service', 'install', service]) + .then(L.bind(_this.callGenServiceList, _this)) + .then(L.bind(m.render, m)) + .then(L.bind(this.renderMoreOptionsModal, this, section)) + .catch(function(e) { ui.addNotification(null, E('p', e.message)) }); + }, + + handleRefreshServicesList: function(m, ev) { + return fs.exec('/usr/bin/ddns', ['service', 'update']) + .then(L.bind(this.load, this)) + .then(L.bind(this.render, this)) + .catch(function(e) { ui.addNotification(null, E('p', e.message)) }); + }, + + handleReloadDDnsRule: function(m, section_id, ev) { + return fs.exec('/usr/lib/ddns/dynamic_dns_lucihelper.sh', + [ '-S', section_id, '--', 'start' ]) + .then(L.bind(m.load, m)) + .then(L.bind(m.render, m)) + .catch(function(e) { ui.addNotification(null, E('p', e.message)) }); + }, + + HandleStopDDnsRule: function(m, section_id, ev) { + return fs.exec('/usr/lib/ddns/dynamic_dns_lucihelper.sh', + [ '-S', section_id, '--', 'start' ]) + .then(L.bind(m.render, m)) + .catch(function(e) { ui.addNotification(null, E('p', e.message)) }); + }, + + handleToggleDDns: function(m, ev) { + return this.callInitAction('ddns', 'enabled') + .then(L.bind(function (action) { return this.callInitAction('ddns', action ? 'disable' : 'enable')}, this)) + .then(L.bind(function (action) { return this.callInitAction('ddns', action ? 'stop' : 'start')}, this)) + .then(L.bind(m.render, m)) + .catch(function(e) { ui.addNotification(null, E('p', e.message)) }); + }, + + handleRestartDDns: function(m, ev) { + return this.callInitAction('ddns', 'restart') + .then(L.bind(m.render, m)); + }, + poll_status: function(map, data) { var status = data[1] || [], service = data[0] || [], rows = map.querySelectorAll('.cbi-section-table-row[data-sid]'), section_id, cfg_detail_ip, cfg_update, cfg_status, host, ip, last_update, next_update, service_status, reload, cfg_enabled, stop, ddns_enabled = map.querySelector('[data-name="_enabled"]').querySelector('.cbi-value-field'), - ddns_toggle = map.querySelector('[data-name="_toggle"]').querySelector('button'); + ddns_toggle = map.querySelector('[data-name="_toggle"]').querySelector('button'), + services_list = map.querySelector('[data-name="_services_list"]').querySelector('.cbi-value-field'); ddns_toggle.innerHTML = status['_enabled'] ? _('Stop DDNS') : _('Start DDNS') + services_list.innerHTML = status['_services_list']; dom.content(ddns_enabled, function() { return E([], [ @@ -101,7 +222,7 @@ return view.extend({ if (service[section_id].last_update) last_update = service[section_id].last_update; if (service[section_id].next_update) - next_update = NextUpdateStrings[service[section_id].next_update] || service[section_id].next_update; + next_update = this.NextUpdateStrings[service[section_id].next_update] || service[section_id].next_update; if (service[section_id].pid) service_status = '<b>' + _('Running') + '</b> : ' + service[section_id].pid; } @@ -117,10 +238,9 @@ return view.extend({ load: function() { return Promise.all([ this.callDDnsGetServicesStatus(), - callDDnsGetStatus(), + this.callDDnsGetStatus(), this.callDDnsGetEnv(), - fs.lines('/etc/ddns/services'), - fs.lines('/etc/ddns/services_ipv6'), + this.callGenServiceList(), uci.load('ddns') ]); }, @@ -131,35 +251,23 @@ return view.extend({ var env = data[2] || []; var logdir = uci.get('ddns', 'global', 'ddns_logdir') || "/var/log/ddns"; - var services4 = []; - var services6 = []; - - data[3].forEach(function(item) { - if (!item.startsWith("#")) { - services4.push(item.split('\t')[0].slice(1,-1)); - } - }); - - data[4].forEach(function(item) { - if (!item.startsWith("#")) { - services6.push(item.split('\t')[0].slice(1,-1)); - } - }); + var _this = this; var m, s, o; m = new form.Map('ddns', _('Dynamic DNS')); - var is = m.section(form.NamedSection, 'global', 'ddns', _('Information')); + s = m.section(form.NamedSection, 'global', 'ddns',); - s = is; + s.tab('info', _('Information')); + s.tab('global', _('Global Settings')); - o = s.option(form.DummyValue, '_version', _('Dynamic DNS Version')); + o = s.taboption('info', form.DummyValue, '_version', _('Dynamic DNS Version')); o.cfgvalue = function() { return status[this.option]; }; - o = s.option(form.DummyValue, '_enabled', _('State')); + o = s.taboption('info', form.DummyValue, '_enabled', _('State')); o.cfgvalue = function() { var res = status[this.option]; if (!res) { @@ -169,37 +277,33 @@ return view.extend({ return res ? _('DDNS Autostart enabled') : _('DDNS Autostart disabled') }; - o = s.option(form.DummyValue, '_toggle', ' '); - o.cfgvalue = function() { - var action = status['_enabled'] ? 'stop' : 'start'; - return E([], [ - E('button', { - 'class': 'cbi-button cbi-button-apply', - 'click': L.ui.createHandlerFn(this, function() { - return callDDnsGetStatus().then(L.bind(function(data) { - return callInitAction('ddns', action == 'stop' ? 'disable' : 'enable').then(function() { - return callInitAction('ddns', action); - }); - }, this)).then(L.bind(m.render, m)); - }) - }, _(action.toUpperCase() + ' DDns'))]); - }; + o = s.taboption('info', form.Button, '_toggle'); + o.title = ' '; + o.inputtitle = _((status['_enabled'] ? 'stop' : 'start').toUpperCase() + ' DDns'); + o.inputstyle = 'apply'; + o.onclick = L.bind(this.handleToggleDDns, this, m); - o = s.option(form.DummyValue, '_restart', ' '); + o = s.taboption('info', form.Button, '_restart'); + o.title = ' '; + o.inputtitle = _('Restart DDns'); + o.inputstyle = 'apply'; + o.onclick = L.bind(this.handleRestartDDns, this, m); + + o = s.taboption('info', form.DummyValue, '_services_list', _('Services list last update')); o.cfgvalue = function() { - return E([], [ - E('button', { - 'class': 'cbi-button cbi-button-apply', - 'click': L.ui.createHandlerFn(this, function() { - return callInitAction('ddns', 'restart').then(L.bind(m.render, m)); - }) - }, _('Restart DDns'))]); + return status[this.option]; }; + o = s.taboption('info', form.Button, '_refresh_services'); + o.title = ' '; + o.inputtitle = _('Update DDns Services List'); + o.inputstyle = 'apply'; + o.onclick = L.bind(this.handleRefreshServicesList, this, m); + // DDns hints if (!env['has_ipv6']) { - o = s.option(form.DummyValue, '_no_ipv6'); + o = s.taboption('info', form.DummyValue, '_no_ipv6'); o.rawhtml = true; o.title = '<b>' + _("IPv6 not supported") + '</b>'; o.cfgvalue = function() { return _("IPv6 is currently not (fully) supported by this system") + "<br />" + @@ -208,7 +312,7 @@ return view.extend({ } if (!env['has_ssl']) { - o = s.option(form.DummyValue, '_no_https'); + o = s.taboption('info', form.DummyValue, '_no_https'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("HTTPS not supported") + '</b>'; @@ -220,7 +324,7 @@ return view.extend({ } if (!env['has_bindnet']) { - o = s.option(form.DummyValue, '_no_bind_network'); + o = s.taboption('info', form.DummyValue, '_no_bind_network'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("Binding to a specific network not supported") + '</b>'; @@ -234,7 +338,7 @@ return view.extend({ } if (!env['has_proxy']) { - o = s.option(form.DummyValue, '_no_proxy'); + o = s.taboption('info', form.DummyValue, '_no_proxy'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("cURL without Proxy Support") + '</b>'; @@ -246,7 +350,7 @@ return view.extend({ } if (!env['has_forceip']) { - o = s.option(form.DummyValue, '_no_force_ip'); + o = s.taboption('info', form.DummyValue, '_no_force_ip'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("Force IP Version not supported") + '</b>'; @@ -257,7 +361,7 @@ return view.extend({ } if (!env['has_bindhost']) { - o = s.option(form.DummyValue, '_no_dnstcp'); + o = s.taboption('info', form.DummyValue, '_no_dnstcp'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("DNS requests via TCP not supported") + '</b>'; @@ -268,7 +372,7 @@ return view.extend({ } if (!env['has_dnsserver']) { - o = s.option(form.DummyValue, '_no_dnsserver'); + o = s.taboption('info', form.DummyValue, '_no_dnsserver'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("Using specific DNS Server not supported") + '</b>'; @@ -280,7 +384,7 @@ return view.extend({ } if (env['has_ssl'] && !env['has_cacerts']) { - o = s.option(form.DummyValue, '_no_certs'); + o = s.taboption('info', form.DummyValue, '_no_certs'); o.titleref = L.url("admin", "system", "opkg") o.rawhtml = true; o.title = '<b>' + _("No certificates found") + '</b>'; @@ -290,6 +394,67 @@ return view.extend({ "by hand into /etc/ssl/certs default directory")}; } + // Advanced Configuration Section + + o = s.taboption('global', form.Flag, 'upd_privateip', _("Allow non-public IP's")); + o.description = _("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"'; + o.default = "0"; + o.optional = true; + + o = s.taboption('global', form.Value, 'ddns_dateformat', _('Date format')); + o.description = '<a href="http://www.cplusplus.com/reference/ctime/strftime/" target="_blank">' + + _("For supported codes look here") + + '</a><br />' + + _('Current setting: ') + '<b>' + status['_curr_dateformat'] + '</b>'; + o.default = "%F %R" + o.optional = true; + o.rmempty = true; + + o = s.taboption('global', form.Value, 'ddns_rundir', _('Status directory')); + o.description = _('Directory contains PID and other status information for each running section.'); + o.default = "/var/run/ddns"; + o.optional = true; + o.rmempty = true; + + o = s.taboption('global', form.Value, 'ddns_logdir', _('Log directory')); + o.description = _('Directory contains Log files for each running section.'); + o.default = "/var/log/ddns"; + o.optional = true; + o.rmempty = true; + o.validate = function(section_id, formvalue) { + if (formvalue.indexOf('../') !== -1) + return _('"../" not allowed in path for Security Reason.') + + return true; + } + + o = s.taboption('global', form.Value, 'ddns_loglines', _('Log length')); + o.description = _('Number of last lines stored in log files'); + o.datatype = 'min(1)'; + o.default = '250'; + + if (env['has_wget'] && env['has_curl']) { + + o = s.taboption('global', form.Flag, 'use_curl', _('Use cURL')); + o.description = _('If Wget and cURL package are installed, Wget is used for communication by default.'); + o.default = "0"; + o.optional = true; + o.rmempty = true; + + } + + o = s.taboption('global', form.Value, 'cacert', _('Ca Certs path')); + o.description = _('Ca Certs path that will be used to download services data. Set IGNORE to skip certificate validation.'); + o.placeholder = 'IGNORE'; + + o = s.taboption('global', form.Value, 'services_url', _('Services URL Download')); + o.description = _('Url used to download services file. By default is the master openwrt ddns package repo.'); + o.placeholder = 'https://raw.githubusercontent.com/openwrt/packages/master/net/ddns-scripts/files'; + // DDns services s = m.section(form.GridSection, 'service', _('Services')); s.anonymous = true; @@ -300,9 +465,25 @@ return view.extend({ s.addremove = true; s.sortable = true; + s.handleCreateDDnsRule = function(m, name, service_name, ipv6, ev) { + var section_id = name.isValid('_new_') ? name.formvalue('_new_') : null, + service_value = service_name.isValid('_new_') ? service_name.formvalue('_new_') : null, + ipv6_value = ipv6.isValid('_new_') ? ipv6.formvalue('_new_') : null; + + if (section_id == null || section_id == '' || service_value == null || section_id == '' || ipv6_value == null || ipv6_value == '') + return; + + return m.save(function() { + uci.add('ddns', 'service', section_id); + uci.set('ddns', section_id, 'service_name', service_value); + uci.set('ddns', section_id, 'use_ipv6', ipv6_value); + }).then(L.bind(m.children[1].renderMoreOptionsModal, m.children[1], section_id)); + }; + s.handleAdd = function(ev) { var m2 = new form.Map('ddns'), - s2 = m2.section(form.NamedSection, '_new_'); + s2 = m2.section(form.NamedSection, '_new_'), + name, ipv6, service_name; s2.render = function() { return Promise.all([ @@ -322,26 +503,41 @@ return view.extend({ return true; }; + ipv6 = s2.option( form.ListValue, 'use_ipv6', + _("IP address version"), + _("Defines which IP address 'IPv4/IPv6' is send to the DDNS provider")); + ipv6.default = '0'; + ipv6.value("0", _("IPv4-Address")) + if (env["has_ipv6"]) { + ipv6.value("1", _("IPv6-Address")) + } + + service_name = s2.option(form.ListValue, 'service_name', + String.format('%s', _("DDNS Service provider"))); + service_name.value('-',"-- " + _("custom") + " --"); + for (var elem in _this.services) + service_name.value(elem); + service_name.validate = function(section_id, value) { + if (value == '') return _("Select a service"); + if (s2.service_supported == null) return _("Checking the service support..."); + if (!s2.service_supported) return _("Service doesn't support this ip type"); + return true; + }; + + ipv6.onchange = L.bind(_this.handleCheckService, _this, s2, service_name, ipv6); + service_name.onchange = L.bind(_this.handleCheckService, _this, s2, service_name, ipv6); + m2.render().then(L.bind(function(nodes) { - L.ui.showModal(_('Add new services...'), [ + ui.showModal(_('Add new services...'), [ nodes, E('div', { 'class': 'right' }, [ E('button', { 'class': 'btn', - 'click': L.ui.hideModal + 'click': ui.hideModal }, _('Cancel')), ' ', E('button', { 'class': 'cbi-button cbi-button-positive important', - 'click': L.ui.createHandlerFn(this, function(ev) { - var nameval = name.isValid('_new_') ? name.formvalue('_new_') : null; - - if (nameval == null || nameval == '') - return; - - return m.save(function() { - uci.add('ddns', 'service', nameval); - }).then(L.bind(m.children[1].renderMoreOptionsModal, m.children[1], nameval)); - }) + 'click': ui.createHandlerFn(this, 'handleCreateDDnsRule', m, name, service_name, ipv6) }, _('Create service')) ]) ], 'cbi-modal'); @@ -355,18 +551,12 @@ return view.extend({ cfg_enabled = uci.get('ddns', section_id, 'enabled'), reload_opt = { 'class': 'cbi-button cbi-button-neutral reload', - 'click': L.ui.createHandlerFn(this, function() { - return fs.exec('/usr/lib/ddns/dynamic_dns_lucihelper.sh', - [ '-S', section_id, '--', 'start' ]).then(L.bind(m.render, m)); - }), + 'click': ui.createHandlerFn(_this, 'handleReloadDDnsRule', m, section_id), 'title': _('Reload this service'), }, stop_opt = { 'class': 'cbi-button cbi-button-neutral stop', - 'click': L.ui.createHandlerFn(this, function() { - return fs.exec('/usr/lib/ddns/dynamic_dns_lucihelper.sh', - [ '-S', section_id, '--', 'start' ]).then(L.bind(m.render, m)); - }), + 'click': ui.createHandlerFn(_this, 'HandleStopDDnsRule', m, section_id), 'title': _('Stop this service'), }; @@ -388,11 +578,544 @@ return view.extend({ return tdEl; }; + s.modaltitle = function(section_id) { + return _('DDns Service') + ' » ' + section_id; + }; + + s.addModalOptions = function(s, section_id) { + + var service = uci.get('ddns', section_id, 'service_name') || '-', + ipv6 = uci.get('ddns', section_id, 'use_ipv6'), service_name, use_ipv6; + + return _this.handleGetServiceData(service).then(L.bind(function (service_data) { + s.service_available = true; + s.service_supported = true; + + if (service != '-') { + if (!service_data) + s.service_available = false; + else { + service_data = JSON.parse(service_data); + if (ipv6 == "1" && !service_data.ipv6) + s.service_supported = false; + } + } + + s.tab('basic', _('Basic Settings')); + s.tab('advanced', _('Advanced Settings')); + s.tab('timer', _('Timer Settings')); + s.tab('logview', _('Log File Viewer')); + + o = s.taboption('basic', form.Flag, 'enabled', + _('Enabled'), + _("If this service section is disabled it could not be started.") + + "<br />" + + _("Neither from LuCI interface nor from console.")); + o.modalonly = true; + o.rmempty = false; + o.default = '1'; + + o = s.taboption('basic', form.Value, 'lookup_host', + _("Lookup Hostname"), + _("Hostname/FQDN to validate, if IP update happen or necessary")); + o.rmempty = false; + o.placeholder = "myhost.example.com"; + o.datatype = 'and(minlength(3),hostname("strict"))'; + o.modalonly = true; + + use_ipv6 = s.taboption('basic', form.ListValue, 'use_ipv6', + _("IP address version"), + _("Defines which IP address 'IPv4/IPv6' is send to the DDNS provider")); + use_ipv6.default = '0'; + use_ipv6.modalonly = true; + use_ipv6.rmempty = false; + use_ipv6.value("0", _("IPv4-Address")) + if (env["has_ipv6"]) { + use_ipv6.value("1", _("IPv6-Address")) + } + + service_name = s.taboption('basic', form.ListValue, 'service_name', + String.format('%s', _("DDNS Service provider"))); + service_name.modalonly = true; + service_name.value('-',"-- " + _("custom") + " --"); + for (var elem in _this.services) + service_name.value(elem); + service_name.cfgvalue = function(section_id) { + return uci.get('ddns', section_id, 'service_name') || '-'; + }; + service_name.write = function(section_id, service) { + if (service != '-') { + uci.set('ddns', section_id, 'update_url', null); + uci.set('ddns', section_id, 'update_script', null); + return uci.set('ddns', section_id, 'service_name', service); + } + return uci.set('ddns', section_id, 'service_name', null); + }; + service_name.validate = function(section_id, value) { + if (value == '') return _("Select a service"); + if (s.service_available == null) return _("Checking the service support..."); + if (!s.service_available) return _('Service not installed'); + if (!s.service_supported) return _("Service doesn't support this ip type"); + return true; + }; + + service_name.onchange = L.bind(_this.handleCheckService, _this, s, service_name, use_ipv6); + use_ipv6.onchange = L.bind(_this.handleCheckService, _this, s, service_name, use_ipv6); + + if (!s.service_available) { + o = s.taboption('basic', form.Button, '_download_service'); + o.modalonly = true; + o.title = _('Service not installed'); + o.inputtitle = _('Install Service'); + o.inputstyle = 'apply'; + o.onclick = L.bind(_this.handleInstallService, + this, m, service_name, section_id, s.section, _this) + } + + if (!s.service_supported) { + o = s.taboption('basic', form.DummyValue, '_not_supported', ' '); + o.cfgvalue = function () { + return _("Service doesn't support this ip type") + }; + } + + var service_switch = s.taboption('basic', form.Button, '_switch_proto'); + service_switch.modalonly = true; + service_switch.title = _('Really switch service?'); + service_switch.inputtitle = _('Switch service'); + service_switch.inputstyle = 'apply'; + service_switch.onclick = L.bind(function(ev) { + if (!s.service_supported) return; + + return s.map.save() + .then(L.bind(m.load, m)) + .then(L.bind(m.render, m)) + .then(L.bind(this.renderMoreOptionsModal, this, s.section)); + }, this); + + if (s.service_available && s.service_supported) { + + o = s.taboption('basic', form.Value, 'update_url', + _("Custom update-URL"), + _("Update URL to be used for updating your DDNS Provider.") + + "<br />" + + _("Follow instructions you will find on their WEB page.")); + o.modalonly = true; + o.rmempty = true; + o.optional = true; + o.depends("service_name","-"); + o.validate = function(section_id, value) { + var other = this.section.children.filter(function(o) { return o.option == 'update_script' })[0].formvalue(section_id); + + if ((value == "" && other == "") || (value != "" && other != "")) { + return _("Insert a Update Script OR a Update URL"); + } + + return true; + }; + + o = s.taboption('basic', form.Value, 'update_script', + _("Custom update-script"), + _("Custom update script to be used for updating your DDNS Provider.")); + o.modalonly = true; + o.rmempty = true; + o.optional = true; + o.depends("service_name","-"); + o.validate = function(section_id, value) { + var other = this.section.children.filter(function(o) { return o.option == 'update_url' })[0].formvalue(section_id); + + if ((value == "" && other == "") || (value != "" && other != "")) { + return _("Insert a Update Script OR a Update URL"); + } + + return true; + }; + + o = s.taboption('basic', form.Value, 'domain', + _("Domain"), + _("Replaces [DOMAIN] in Update-URL (URL-encoded)")); + o.modalonly = true; + o.rmempty = false; + + o = s.taboption('basic', form.Value, 'username', + _("Username"), + _("Replaces [USERNAME] in Update-URL (URL-encoded)")); + o.modalonly = true; + o.rmempty = false; + + o = s.taboption('basic', form.Value, 'password', + _("Password"), + _("Replaces [PASSWORD] in Update-URL (URL-encoded)")); + o.password = true; + o.modalonly = true; + o.rmempty = false; + + o = s.taboption('basic', form.Value, 'param_enc', + _("Optional Encoded Parameter"), + _("Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)")); + o.optional = true; + o.modalonly = true; + + o = s.taboption('basic', form.Value, 'param_opt', + _("Optional Parameter"), + _("Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)")); + o.optional = true; + o.modalonly = true; + + if (env['has_ssl']) { + o = s.taboption('basic', form.Flag, 'use_https', + _("Use HTTP Secure"), + _("Enable secure communication with DDNS provider")); + o.optional = true; + o.modalonly = true; + + o = s.taboption('basic', form.Value, 'cacert', + _("Path to CA-Certificate"), + _("directory or path/file") + + "<br />" + + _("or") + + '<b>' + " IGNORE " + '</b>' + + _("to run HTTPS without verification of server certificates (insecure)")); + o.modalonly = true; + o.depends("use_https", "1"); + o.placeholder = "/etc/ssl/certs"; + o.rmempty = false; + }; + + + o = s.taboption('advanced', form.ListValue, 'ip_source', + _("IP address source"), + _("Defines the source to read systems IP-Address from, that will be send to the DDNS provider")); + o.modalonly = true; + o.default = "network"; + o.value("network", _("Network")); + o.value("web", _("URL")); + o.value("interface", _("Interface")); + o.value("script", _("Script")); + o.write = function(section_id, formvalue) { + switch(formvalue) { + case 'network': + uci.set('ddns', section_id, "ip_url",null); + uci.set('ddns', section_id, "ip_interface",null); + uci.set('ddns', section_id, "ip_script",null); + break; + case 'web': + uci.set('ddns', section_id, "ip_network",null); + uci.set('ddns', section_id, "ip_interface",null); + uci.set('ddns', section_id, "ip_script",null); + break; + case 'interface': + uci.set('ddns', section_id, "ip_network",null); + uci.set('ddns', section_id, "ip_url",null); + uci.set('ddns', section_id, "ip_script",null); + break; + case 'script': + uci.set('ddns', section_id, "ip_network",null); + uci.set('ddns', section_id, "ip_url",null); + uci.set('ddns', section_id, "ip_interface",null); + break; + default: + break; + }; + + return uci.set('ddns', section_id, 'ip_source', formvalue ) + }; + + o = s.taboption('advanced', widgets.NetworkSelect, 'ip_network', + _("Network"), + _("Defines the network to read systems IP-Address from")); + o.depends('ip_source','network'); + o.modalonly = true; + o.default = 'wan'; + o.multiple = false; + + o = s.taboption('advanced', form.Value, 'ip_url', + _("URL to detect"), + _("Defines the Web page to read systems IP-Address from.") + + '<br />' + + String.format('%s %s', _('Example for IPv4'), ': http://checkip.dyndns.com') + + '<br />' + + String.format('%s %s', _('Example for IPv6'), ': http://checkipv6.dyndns.com')); + o.depends("ip_source", "web") + o.modalonly = true; + + o = s.taboption('advanced', widgets.DeviceSelect, 'ip_interface', + _("Interface"), + _("Defines the interface to read systems IP-Address from")); + o.modalonly = true; + o.depends("ip_source", "interface") + o.multiple = false; + o.default = 'wan'; + + o = s.taboption('advanced', form.Value, 'ip_script', + _("Script"), + _("User defined script to read systems IP-Address")); + o.modalonly = true; + o.depends("ip_source", "script") + o.placeholder = "/path/to/script.sh" + + o = s.taboption('advanced', widgets.DeviceSelect, 'interface', + _("Event Network"), + _("Network on which the ddns-updater scripts will be started")); + o.modalonly = true; + o.multiple = false; + o.default = 'wan'; + o.depends("ip_source", "web"); + o.depends("ip_source", "script"); + + o = s.taboption('advanced', form.DummyValue, '_interface', + _("Event Network"), + _("Network on which the ddns-updater scripts will be started")); + o.depends("ip_source", "interface"); + o.depends("ip_source", "network"); + o.forcewrite = true; + o.modalonly = true; + o.cfgvalue = function(section_id) { + return uci.get('ddns', section_id, 'interface') || _('This will be autoset to the selected interface'); + }; + o.write = function(section_id) { + var opt = this.section.children.filter(function(o) { return o.option == 'ip_source' })[0].formvalue(section_id); + var val = this.section.children.filter(function(o) { return o.option == 'ip_'+opt })[0].formvalue(section_id); + return uci.set('ddns', section_id, 'interface', val); + }; + + if (env['has_bindnet']) { + o = s.taboption('advanced', widgets.ZoneSelect, 'bind_network', + _("Bind Network"), + _('OPTIONAL: Network to use for communication') + + '<br />' + + _("Network on which the ddns-updater scripts will be started")); + o.depends("ip_source", "web"); + o.optional = true; + o.rmempty = true; + o.modalonly = true; + } + + if (env['has_forceip']) { + o = s.taboption('advanced', form.Flag, 'force_ipversion', + _("Force IP Version"), + _('OPTIONAL: Force the usage of pure IPv4/IPv6 only communication.')); + o.optional = true; + o.rmempty = true; + o.modalonly = true; + } + + if (env['has_dnsserver']) { + o = s.taboption("advanced", form.Value, "dns_server", + _("DNS-Server"), + _("OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'.") + + "<br />" + + _("Format: IP or FQDN")); + o.placeholder = "mydns.lan" + o.optional = true; + o.rmempty = true; + o.modalonly = true; + } + + if (env['has_bindhost']) { + o = s.taboption("advanced", form.Flag, "force_dnstcp", + _("Force TCP on DNS"), + _("OPTIONAL: Force the use of TCP instead of default UDP on DNS requests.")); + o.optional = true; + o.rmempty = true; + o.modalonly = true; + } + + if (env['has_proxy']) { + o = s.taboption("advanced", form.Value, "proxy", + _("PROXY-Server"), + _("OPTIONAL: Proxy-Server for detection and updates.") + + "<br />" + + String.format('%s: <b>%s</b>', _("Format"), "[user:password@]proxyhost:port") + + "<br />" + + String.format('%s: <b>%s</b>', _("IPv6 address must be given in square brackets"), "[2001:db8::1]:8080")); + o.optional = true; + o.rmempty = true; + o.modalonly = true; + } + + o = s.taboption("advanced", form.ListValue, "use_syslog", + _("Log to syslog"), + _("Writes log messages to syslog. Critical Errors will always be written to syslog.")); + o.modalonly = true; + o.default = "2" + o.optional = true; + o.value("0", _("No logging")) + o.value("1", _("Info")) + o.value("2", _("Notice")) + o.value("3", _("Warning")) + o.value("4", _("Error")) + + o = s.taboption("advanced", form.Flag, "use_logfile", + _("Log to file")); + o.default = '1'; + o.optional = true; + o.modalonly = true; + o.cfgvalue = function(section_id) { + this.description = _("Writes detailed messages to log file. File will be truncated automatically.") + "<br />" + + _("File") + ': "' + logdir + '/' + section_id + '.log"'; + return uci.get('ddns', section_id, 'use_logfile'); + }; + + + o = s.taboption("timer", form.Value, "check_interval", + _("Check Interval")); + o.placeholder = "30"; + o.modalonly = true; + o.datatype = 'uinteger'; + o.validate = function(section_id, formvalue) { + var unit = this.section.children.filter(function(o) { return o.option == 'check_unit' })[0].formvalue(section_id), + time_to_sec = _this.time_res[unit || 'minutes'] * formvalue; + + if (formvalue && time_to_sec < 300) + return _('Values below 5 minutes == 300 seconds are not supported'); + + return true; + }; + + o = s.taboption("timer", form.ListValue, "check_unit", + _('Check Unit'), + _("Interval unit to check for changed IP")); + o.modalonly = true; + o.default = "minutes" + o.value("seconds", _("seconds")); + o.value("minutes", _("minutes")); + o.value("hours", _("hours")); + + o = s.taboption("timer", form.Value, "force_interval", + _("Force Interval"), + _("Interval to force updates send to DDNS Provider") + + "<br />" + + _("Setting this parameter to 0 will force the script to only run once")); + o.placeholder = "72"; + o.optional = true; + o.modalonly = true; + o.datatype = 'uinteger'; + o.validate = function(section_id, formvalue) { + + if (!formvalue) + return true; + + var check_unit = this.section.children.filter(function(o) { return o.option == 'check_unit' })[0].formvalue(section_id), + check_val = this.section.children.filter(function(o) { return o.option == 'check_interval' })[0].formvalue(section_id), + force_unit = this.section.children.filter(function(o) { return o.option == 'force_unit' })[0].formvalue(section_id), + check_to_sec = _this.time_res[check_unit || 'minutes'] * ( check_val || '30'), + force_to_sec = _this.time_res[force_unit || 'minutes'] * formvalue; + + if (force_to_sec != 0 && force_to_sec < check_to_sec) + return _("Values lower 'Check Interval' except '0' are not supported"); + + return true; + }; + + o = s.taboption("timer", form.ListValue, "force_unit", + _('Force Unit'), + _("Interval unit to force updates send to DDNS Provider")); + o.modalonly = true; + o.optional = true; + o.default = "minutes" + o.value("minutes", _("minutes")); + o.value("hours", _("hours")); + o.value("days", _("days")); + + o = s.taboption("timer", form.Value, "retry_count", + _("Error Retry Counter"), + _("On Error the script will stop execution after given number of retrys") + + "<br />" + + _("The default setting of '0' will retry infinite.")); + o.placeholder = "0"; + o.optional = true; + o.modalonly = true; + o.datatype = 'uinteger'; + + o = s.taboption("timer", form.Value, "retry_interval", + _("Error Retry Interval"), + _("On Error the script will stop execution after given number of retrys") + + "<br />" + + _("The default setting of '0' will retry infinite.")); + o.placeholder = "60"; + o.optional = true; + o.modalonly = true; + o.datatype = 'uinteger'; + + o = s.taboption("timer", form.ListValue, "retry_unit", + _('Retry Unit'), + _("On Error the script will retry the failed action after given time")); + o.modalonly = true; + o.optional = true; + o.default = "seconds" + o.value("seconds", _("seconds")); + o.value("minutes", _("minutes")); + + o = s.taboption('logview', form.Button, '_read_log'); + o.title = ''; + o.depends('use_logfile','1'); + o.modalonly = true; + o.inputtitle = _('Read / Reread log file'); + o.inputstyle = 'apply'; + o.onclick = L.bind(function(ev, section_id) { + return _this.callGetLogServices(section_id).then(L.bind(log_box.update_log, log_box)); + }, this); + + var log_box = s.taboption("logview", form.DummyValue, "_logview"); + log_box.depends('use_logfile','1'); + log_box.modalonly = true; + + log_box.update_log = L.bind(function(view, log_data) { + return document.getElementById('log_area').textContent = log_data.result; + }, o, this); + + log_box.render = L.bind(function() { + return E([ + E('p', {}, _('This is the current content of the log file in ') + logdir + ' for this service.'), + E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 20, 'readonly' : 'readonly', 'id' : 'log_area' }, _('Please press [Read] button') )) + ]); + }, o, this); + } + + for (var i = 0; i < s.children.length; i++) { + o = s.children[i]; + switch (o.option) { + case '_switch_proto': + o.depends({ service_name : service, use_ipv6: ipv6, "!reverse": true }) + continue; + case 'enabled': + case 'service_name': + case 'use_ipv6': + case 'update_script': + case 'update_url': + case 'lookup_host': + continue; + + default: + if (o.deps.length) + for (var j = 0; j < o.deps.length; j++) { + o.deps[j].service_name = service; + o.deps[j].use_ipv6 = ipv6; + } + else + o.depends({service_name: service, use_ipv6: ipv6 }); + } + } + }, this) + )}; + + o = s.option(form.DummyValue, '_cfg_status', _('Status')); + o.modalonly = false; + o.textvalue = function(section_id) { + var text = '<b>' + _('Not Running') + '</b>'; + + if (resolved[section_id] && resolved[section_id].pid) + text = '<b>' + _('Running') + '</b> : ' + resolved[section_id].pid; + + return text; + }; + o = s.option(form.DummyValue, '_cfg_name', _('Name')); o.modalonly = false; o.textvalue = function(section_id) { return '<b>' + section_id + '</b>'; - } + }; o = s.option(form.DummyValue, '_cfg_detail_ip', _('Lookup Hostname') + "<br />" + _('Registered IP')); o.rawhtml = true; @@ -420,604 +1143,17 @@ return view.extend({ if (resolved[section_id].last_update) last_update = resolved[section_id].last_update; if (resolved[section_id].next_update) - next_update = NextUpdateStrings[resolved[section_id].next_update] || resolved[section_id].next_update; + next_update = _this.NextUpdateStrings[resolved[section_id].next_update] || resolved[section_id].next_update; } return last_update + '<br />' + next_update; }; - s.modaltitle = function(section_id) { - return _('DDns Service') + ' » ' + section_id; - }; - - o = s.option(form.DummyValue, '_cfg_status', _('Status')); - o.modalonly = false; - o.textvalue = function(section_id) { - var text = '<b>' + _('Not Running') + '</b>'; - - if (resolved[section_id] && resolved[section_id].pid) - text = '<b>' + _('Running') + '</b> : ' + resolved[section_id].pid; - - return text; - } - - - s.tab('basic', _('Basic Settings')); - s.tab('advanced', _('Advanced Settings')); - s.tab('timer', _('Timer Settings')); - s.tab('logview', _('Log File Viewer')); - - // TAB: BASIC - - // enabled - o = s.taboption('basic', form.Flag, 'enabled', _('Enabled'),_("If this service section is disabled it could not be started." + "<br />" + - "Neither from LuCI interface nor from console")); - o.modalonly = true; - o.rmempty = false; - o.default = '1'; - - // lookup_host - - o = s.taboption('basic', form.Value, 'lookup_host', _("Lookup Hostname"), - _("Hostname/FQDN to validate, if IP update happen or necessary") ); - o.rmempty = false; - o.placeholder = "myhost.example.com"; - o.datatype = 'and(minlength(3),hostname("strict"))'; - o.modalonly = true; - - // use_ipv6 - - o = s.taboption('basic', form.ListValue, 'use_ipv6', _("IP address version"), - _("Defines which IP address 'IPv4/IPv6' is send to the DDNS provider")); - o.default = '0'; - o.modalonly = true; - o.rmempty = false; - - o.value("0", _("IPv4-Address")) - if (env["has_ipv6"]) - o.value("1", _("IPv6-Address")) - - // service_name - - o = s.taboption('basic', form.ListValue, 'ipv4_service_name', _("DDNS Service provider") + " [IPv4]"); - o.depends("use_ipv6", "0") - o.modalonly = true; - - for (var i = 0; i < services4.length; i++) - o.value(services4[i]); - - o.value('-',"-- " + _("custom") + " --"); - - o.cfgvalue = function(section_id) { - return uci.get('ddns', section_id, 'service_name'); - } - - o.write = function(section_id, formvalue) { - if (formvalue != '-') { - uci.set('ddns', section_id, 'update_url', null); - uci.set('ddns', section_id, 'update_script', null); - return uci.set('ddns', section_id, 'service_name', formvalue); - } - return uci.set('ddns', section_id, 'service_name', null); - }; - - o = s.taboption('basic', form.ListValue, 'ipv6_service_name', _("DDNS Service provider") + " [IPv6]"); - o.depends("use_ipv6", "1") - o.modalonly = true; - - for (var i = 0; i < services6.length; i++) - o.value(services6[i]); - - o.value('-',"-- " + _("custom") + " --"); - - o.cfgvalue = function(section_id) { - var service = uci.get('ddns', section_id, 'service_name'), - update_script = uci.get('ddns', section_id, 'update_script'), - update_url = uci.get('ddns', section_id, 'update_url'); - - if (!service && (update_script || update_url)) - return "-"; - - return service; - } - - o.write = function(section_id, formvalue) { - if (formvalue != '-') { - uci.set('ddns', section_id, 'update_url', null); - uci.set('ddns', section_id, 'update_script', null); - return uci.set('ddns', section_id, 'service_name', formvalue); - } - return uci.set('ddns', section_id, 'service_name', null); - }; - - // update_url - - o = s.taboption('basic', form.Value, 'update_url', _("Custom update-URL"), - _("Update URL to be used for updating your DDNS Provider." + "<br />" + - "Follow instructions you will find on their WEB page.")); - o.modalonly = true; - o.rmempty = true; - o.optional = true; - o.depends("ipv6_service_name","-"); - o.depends("ipv4_service_name","-"); - - o.validate = function(section_id, value) { - var other = this.section.children.filter(function(o) { return o.option == 'update_script' })[0].formvalue(section_id); - - if ((value == "" && other == "") || (value != "" && other != "")) { - return _("Insert a Update Script OR a Update URL"); - } - - return true; - } - - // update_script - - o = s.taboption('basic', form.Value, 'update_script', _("Custom update-script"), - _("Custom update script to be used for updating your DDNS Provider.")); - o.modalonly = true; - o.rmempty = true; - o.optional = true; - o.depends("ipv6_service_name","-"); - o.depends("ipv4_service_name","-"); - - o.validate = function(section_id, value) { - var other = this.section.children.filter(function(o) { return o.option == 'update_url' })[0].formvalue(section_id); - - if ((value == "" && other == "") || (value != "" && other != "")) { - return _("Insert a Update Script OR a Update URL"); - } - - return true; - } - - // domain - - o = s.taboption('basic', form.Value, 'domain', _("Domain"), - _("Replaces [USERNAME] in Update-URL (URL-encoded)")); - o.modalonly = true; - o.rmempty = false; - - // username - - o = s.taboption('basic', form.Value, 'username', _("Username"), - _("Replaces [USERNAME] in Update-URL (URL-encoded)")); - o.modalonly = true; - o.rmempty = false; - - // password - - - o = s.taboption('basic', form.Value, 'password', _("Password"), - _("Replaces [PASSWORD] in Update-URL (URL-encoded)")); - o.password = true; - o.modalonly = true; - o.rmempty = false; - - // param_enc - - o = s.taboption('basic', form.Value, 'param_enc', _("Optional Encoded Parameter"), - _("Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)")); - o.optional = true; - o.modalonly = true; - - // param_opt - - o = s.taboption('basic', form.Value, 'param_opt', _("Optional Parameter"), - _("Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)")); - o.optional = true; - o.modalonly = true; - - // use_https - - if (env['has_ssl']) { - o = s.taboption('basic', form.Flag, 'use_https', _("Use HTTP Secure"), - _("Enable secure communication with DDNS provider")); - o.optional = true; - o.modalonly = true; - - o = s.taboption('basic', form.Value, 'cacert', - _("Path to CA-Certificate"), - _("directory or path/file") + "<br />" + - _("or") + '<b>' + " IGNORE " + '</b>' + - _("to run HTTPS without verification of server certificates (insecure)")); - o.modalonly = true; - o.depends("use_https", "1"); - o.placeholder = "/etc/ssl/certs"; - o.rmempty = false; - }; - - // TAB Advanced - - // ip_source - - o = s.taboption('advanced', form.ListValue, 'ip_source', _("IP address source"), - _("Defines the source to read systems IP-Address from, that will be send to the DDNS provider")); - - o.modalonly = true; - o.default = "network"; - o.value("network", _("Network")); - o.value("web", _("URL")); - o.value("interface", _("Interface")); - o.value("script", _("Script")); - - o.write = function(section_id, formvalue) { - switch(formvalue) { - case 'network': - uci.set('ddns', section_id, "ip_url",null); - uci.set('ddns', section_id, "ip_interface",null); - uci.set('ddns', section_id, "ip_script",null); - break; - case 'web': - uci.set('ddns', section_id, "ip_network",null); - uci.set('ddns', section_id, "ip_interface",null); - uci.set('ddns', section_id, "ip_script",null); - break; - case 'interface': - uci.set('ddns', section_id, "ip_network",null); - uci.set('ddns', section_id, "ip_url",null); - uci.set('ddns', section_id, "ip_script",null); - break; - case 'script': - uci.set('ddns', section_id, "ip_network",null); - uci.set('ddns', section_id, "ip_url",null); - uci.set('ddns', section_id, "ip_interface",null); - break; - default: - break; - }; - - return uci.set('ddns', section_id, 'ip_source', formvalue ) - }; - - // ip_network - - o = s.taboption('advanced', widgets.NetworkSelect, 'ip_network', _("Network"), - _("Defines the network to read systems IP-Address from")); - o.depends('ip_source','network'); - o.modalonly = true; - o.default = 'wan'; - o.multiple = false; - - // ip_url - - o = s.taboption('advanced', form.Value, 'ip_url', _("URL to detect"), - _("Defines the Web page to read systems IP-Address from" + '<br />' + - _('Example for IPv4' + ': http://checkip.dyndns.com') + '<br />' + - _('Example for IPv6' + ': http://checkipv6.dyndns.com'))); - o.depends("ip_source", "web") - - o.modalonly = true; - - // ip_interface - - o = s.taboption('advanced', widgets.DeviceSelect, 'ip_interface', _("Interface"), - _("Defines the interface to read systems IP-Address from")); - - o.modalonly = true; - o.depends("ip_source", "interface") - o.multiple = false; - o.default = 'wan'; - - // ip_script - - o = s.taboption('advanced', form.Value, 'ip_script', _("Script"), - _("User defined script to read systems IP-Address")); - - o.modalonly = true; - o.depends("ip_source", "script") - o.placeholder = "/path/to/script.sh" - - // interface - - o = s.taboption('advanced', widgets.DeviceSelect, 'interface', _("Event Network"), - _("Network on which the ddns-updater scripts will be started")); - - o.modalonly = true; - o.multiple = false; - o.default = 'wan'; - o.depends("ip_source", "web"); - o.depends("ip_source", "script"); - - // interface_show - - o = s.taboption('advanced', form.DummyValue, '_interface', _("Event Network"), - _("Network on which the ddns-updater scripts will be started")); - o.depends("ip_source", "interface"); - o.depends("ip_source", "network"); - o.forcewrite = true; - o.modalonly = true; - o.cfgvalue = function(section_id) { - return uci.get('ddns', section_id, 'interface') || _('This will be autoset to the selected interface'); - }; - o.write = function(section_id) { - var opt = this.section.children.filter(function(o) { return o.option == 'ip_source' })[0].formvalue(section_id); - var val = this.section.children.filter(function(o) { return o.option == 'ip_'+opt })[0].formvalue(section_id); - return uci.set('ddns', section_id, 'interface', val); - }; - - // bind_network - - if (env['has_bindnet']) { - o = s.taboption('advanced', widgets.ZoneSelect, 'bind_network', _("Bind Network"), - _('OPTIONAL: Network to use for communication') + '<br />' + - _("Network on which the ddns-updater scripts will be started")); - o.depends("ip_source", "web"); - o.optional = true; - o.rmempty = true; - o.modalonly = true; - } - - // force_ipversion - - if (env['has_forceip']) { - o = s.taboption('advanced', form.Flag, 'force_ipversion', _("Force IP Version"), - _('OPTIONAL: Force the usage of pure IPv4/IPv6 only communication.')); - o.optional = true; - o.rmempty = true; - o.modalonly = true; - } - - // dns_server - - if (env['has_dnsserver']) { - o = s.taboption("advanced", form.Value, "dns_server", - _("DNS-Server"), - _("OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'.") + "<br />" + - _("Format: IP or FQDN")); - o.placeholder = "mydns.lan" - o.optional = true; - o.rmempty = true; - o.modalonly = true; - } - - // force_dnstcp - - if (env['has_bindhost']) { - o = s.taboption("advanced", form.Flag, "force_dnstcp", - _("Force TCP on DNS"), - _("OPTIONAL: Force the use of TCP instead of default UDP on DNS requests.")); - o.optional = true; - o.rmempty = true; - o.modalonly = true; - } - - // proxy - - if (env['has_proxy']) { - o = s.taboption("advanced", form.Value, "proxy", _("PROXY-Server"), - _("OPTIONAL: Proxy-Server for detection and updates.") + "<br />" + - _("Format") + ": " + '<b>' + "[user:password@]proxyhost:port" + '</b>' + "<br />" + - _("IPv6 address must be given in square brackets") + ": " + - '<b>' + " [2001:db8::1]:8080" + '</b>'); - o.optional = true; - o.rmempty = true; - o.modalonly = true; - } - - // use_syslog - - o = s.taboption("advanced", form.ListValue, "use_syslog", _("Log to syslog"), - _("Writes log messages to syslog. Critical Errors will always be written to syslog.")); - o.modalonly = true; - o.placeholder = "2" - o.optional = true; - o.value("0", _("No logging")) - o.value("1", _("Info")) - o.value("2", _("Notice")) - o.value("3", _("Warning")) - o.value("4", _("Error")) - - // use_logfile - - o = s.taboption("advanced", form.Flag, "use_logfile", _("Log to file")); - o.default = '1'; - o.optional = true; - o.modalonly = true; - o.cfgvalue = function(section_id) { - this.description = _("Writes detailed messages to log file. File will be truncated automatically.") + "<br />" + - _("File") + ': "' + logdir + '/' + section_id + '.log"'; - return uci.get('ddns', section_id, 'use_logfile'); - }; - - // TAB Timer - - // check_interval - o = s.taboption("timer", form.Value, "check_interval", _("Check Interval")); - o.placeholder = "30"; - o.modalonly = true; - o.datatype = 'uinteger'; - - o.validate = function(section_id, formvalue) { - var unit = this.section.children.filter(function(o) { return o.option == 'check_unit' })[0].formvalue(section_id), - time_to_sec = time_res[unit || 'minutes'] * formvalue; - - if (formvalue && time_to_sec < 300) - return _('Values below 5 minutes == 300 seconds are not supported'); - - return true; - - }; - - // check_interval - o = s.taboption("timer", form.ListValue, "check_unit",'Check Unit'); - o.description = _("Interval unit to check for changed IP"); - o.modalonly = true; - o.default = "minutes" - o.value("seconds", _("seconds")); - o.value("minutes", _("minutes")); - o.value("hours", _("hours")); - - // force_interval - - o = s.taboption("timer", form.Value, "force_interval", _("Force Interval")); - o.description = _("Interval to force updates send to DDNS Provider" + "<br />" + - "Setting this parameter to 0 will force the script to only run once"); - o.placeholder = "72"; - o.optional = true; - o.modalonly = true; - o.datatype = 'uinteger'; - - o.validate = function(section_id, formvalue) { - - if (!formvalue) - return true; - - var check_unit = this.section.children.filter(function(o) { return o.option == 'check_unit' })[0].formvalue(section_id), - check_val = this.section.children.filter(function(o) { return o.option == 'check_interval' })[0].formvalue(section_id), - force_unit = this.section.children.filter(function(o) { return o.option == 'force_unit' })[0].formvalue(section_id), - check_to_sec = time_res[check_unit || 'minutes'] * ( check_val || '30'), - force_to_sec = time_res[force_unit || 'minutes'] * formvalue; - - if (force_to_sec != 0 && force_to_sec < check_to_sec) - return _("Values lower 'Check Interval' except '0' are not supported"); - - return true; - }; - - // force_unit - - o = s.taboption("timer", form.ListValue, "force_unit",'Force Unit'); - o.description = _("Interval unit to force updates send to DDNS Provider"); - o.modalonly = true; - o.optional = true; - o.default = "minutes" - o.value("minutes", _("minutes")); - o.value("hours", _("hours")); - o.value("days", _("days")); - - // retry_count - - o = s.taboption("timer", form.Value, "retry_count", _("Error Retry Counter")); - o.description = _("On Error the script will stop execution after given number of retrys") - + "<br />" - + _("The default setting of '0' will retry infinite."); - o.placeholder = "0"; - o.optional = true; - o.modalonly = true; - o.datatype = 'uinteger'; - - // retry_interval - - o = s.taboption("timer", form.Value, "retry_interval", _("Error Retry Interval")); - o.description = _("On Error the script will stop execution after given number of retrys") - + "<br />" - + _("The default setting of '0' will retry infinite."); - o.placeholder = "60"; - o.optional = true; - o.modalonly = true; - o.datatype = 'uinteger'; - - // retry_unit - - o = s.taboption("timer", form.ListValue, "retry_unit",'Retry Unit'); - o.description = _("On Error the script will retry the failed action after given time"); - o.modalonly = true; - o.optional = true; - o.default = "seconds" - o.value("seconds", _("seconds")); - o.value("minutes", _("minutes")); - - // TAB logview - - o = s.taboption("logview", form.DummyValue, '_read_log', ''); - o.depends('use_logfile','1'); - o.modalonly = true; - o.cfgvalue = function(section_id) { - return E([], [ - E('button', { - 'class': 'cbi-button cbi-button-apply', - 'click': L.ui.createHandlerFn(this, function() { - var o = this.section.children.filter(function(o) { return o.option == '_logview' })[0]; - return callGetLogServices(section_id).then(L.bind(o.update_log, o)); - }) - }, _('Read / Reread log file'))]); - }; - - o = s.taboption("logview", form.DummyValue, "_logview"); - o.depends('use_logfile','1'); - o.modalonly = true; - - o.update_log = L.bind(function(view, log_data) { - return document.getElementById('log_area').textContent = log_data.result; - }, o, this) - - o.render = L.bind(function() { - return E([ - E('p', {}, _('This is the current content of the log file in ') + logdir + ' for this service.'), - E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 20, 'readonly' : 'readonly', 'id' : 'log_area' }, _('Please press [Read] button') )) - ]); - }, o, this) - - - // Advanced Configuration Section - - s = m.section(form.NamedSection, 'global', 'ddns', _('Global Configuration')); - s.description = _('Configure here the details for all Dynamic DNS services including this LuCI application.') - + '<br /><strong>' - + _("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">' - + _('For detailed information about parameter settings look here.') - + '</a>'; - s.addremove = false; - - o = s.option(form.Flag, 'upd_privateip', _("Allow non-public IP's")); - o.description = _("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"'; - o.default = "0"; - o.optional = true; - - o = s.option(form.Value, 'ddns_dateformat', _('Date format')); - o.description = '<a href="http://www.cplusplus.com/reference/ctime/strftime/" target="_blank">' - + _("For supported codes look here") - + '</a><br />' + - _('Current setting: ') + '<b>' + status['_curr_dateformat'] + '</b>'; - o.default = "%F %R" - o.optional = true; - o.rmempty = true; - - o = s.option(form.Value, 'ddns_rundir', _('Status directory')); - o.description = _('Directory contains PID and other status information for each running section.'); - o.default = "/var/run/ddns"; - o.optional = true; - o.rmempty = true; - - o = s.option(form.Value, 'ddns_logdir', _('Log directory')); - o.description = _('Directory contains Log files for each running section.'); - o.default = "/var/log/ddns"; - o.optional = true; - o.rmempty = true; - o.validate = function(section_id, formvalue) { - if (formvalue.indexOf('../') !== -1) - return _('"../" not allowed in path for Security Reason.') - - return true; - } - - o = s.option(form.Value, 'ddns_loglines', _('Log length')); - o.description = _('Number of last lines stored in log files'); - o.datatype = 'min(1)'; - o.default = '250'; - - if (env['has_wget'] && env['has_curl']) { - - o = s.option(form.Flag, 'use_curl', _('Use cURL')); - o.description = _('If Wget and cURL package are installed, Wget is used for communication by default.'); - o.default = "0"; - o.optional = true; - o.rmempty = true; - - } - return m.render().then(L.bind(function(m, nodes) { poll.add(L.bind(function() { return Promise.all([ this.callDDnsGetServicesStatus(), - callDDnsGetStatus() + this.callDDnsGetStatus() ]).then(L.bind(this.poll_status, this, nodes)); }, this), 5); return nodes; diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js index 13e8fba217..d3b35d8691 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js @@ -22,13 +22,13 @@ return baseclass.extend({ render: function(data) { var services = data[0]; - var table = E('div', { 'class': 'table' }, [ - E('div', { 'class': 'tr table-titles' }, [ - E('div', { 'class': 'th' }, _('Configuration')), - E('div', { 'class': 'th' }, _('Next Update')), - E('div', { 'class': 'th' }, _('Lookup Hostname')), - E('div', { 'class': 'th' }, _('Registered IP')), - E('div', { 'class': 'th' }, _('Network')) + var table = E('table', { 'class': 'table' }, [ + E('tr', { 'class': 'tr table-titles' }, [ + E('th', { 'class': 'th' }, _('Configuration')), + E('th', { 'class': 'th' }, _('Next Update')), + E('th', { 'class': 'th' }, _('Lookup Hostname')), + E('th', { 'class': 'th' }, _('Registered IP')), + E('th', { 'class': 'th' }, _('Network')) ]) ]); diff --git a/applications/luci-app-ddns/po/ar/ddns.po b/applications/luci-app-ddns/po/ar/ddns.po index 09db07c469..bf1926adbd 100644 --- a/applications/luci-app-ddns/po/ar/ddns.po +++ b/applications/luci-app-ddns/po/ar/ddns.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-10 10:41+0000\n" -"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: Said Zakaria <said.zakaria@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/ar/>\n" "Language: ar\n" @@ -9,801 +9,906 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." -msgstr "" +msgstr "\"../\" غير مسموح به في المسار لسبب الأمان." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." -msgstr "" +msgstr "اضف خدمة جديدة..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "إعدادات متقدمة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" -msgstr "" +msgstr "السماح لعناوين IP غير العامة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" -msgstr "" +msgstr "الإعدادات الأساسية" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" -msgstr "" +msgstr "ربط الشبكة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" -msgstr "" +msgstr "الربط بشبكة معينة غير مدعوم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" +"لا يعالج nslookup الخاص ب BusyBox في الإصدار المترجم الحالي خوادم DNS " +"المحددة بشكل صحيح!" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "مسار شهادات Ca" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"مسار شهادات Ca الذي سيتم استخدامه لتنزيل بيانات الخدمات. قم بتعيين IGNORE " +"لتخطي التحقق من صحة الشهادة." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "إلغاء" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "" +msgstr "تحقق الفاصل" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "تحقق من الوحدة" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "جاري التحقق من دعم الخدمة ..." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" -msgstr "" +msgstr "إعدادات" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" -msgstr "" +msgstr "خطأ في الاعداد" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" -msgstr "" +msgstr "إنشاء الخدمة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" -msgstr "" +msgstr "الإعداد الحالي:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." -msgstr "" +msgstr "لا يتم حاليًا بدء تحديثات DDNS عند التمهيد أو في أحداث الواجهة." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." -msgstr "" +msgstr "برنامج نصي للتحديث مخصص ليتم استخدامه لتحديث مزود DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" -msgstr "" +msgstr "تحديث URL مخصص" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" -msgstr "" +msgstr "تحديث البرنامج النصي المخصص" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" -msgstr "" +msgstr "بدء تشغيل تلقائي DDNS معطل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" -msgstr "" +msgstr "بدء التشغيل التلقائي DDNS قيد التشغيل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" -msgstr "" +msgstr "مزود خدمة DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" -msgstr "" +msgstr "DDNS نظام أسماء النطاقات الديناميكية" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" -msgstr "" +msgstr "خدمة DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" -msgstr "" +msgstr "طلبات DNS عبر TCP غير مدعومة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" -msgstr "" +msgstr "خادم DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" -msgstr "" +msgstr "صيغة التاريخ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "يحدد صفحة الويب لقراءة عنوان IP للأنظمة منها." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" -msgstr "" +msgstr "يحدد الواجهة لقراءة عنوان IP للأنظمة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" -msgstr "" +msgstr "يحدد الشبكة لقراءة عنوان IP للأنظمة منها" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" -msgstr "" +msgstr "يحدد المصدر لقراءة عنوان IP للأنظمة ، والذي سيتم إرساله إلى مزود DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" -msgstr "" +msgstr "يحدد عنوان IP الذي يتم إرساله \"IPv4 / IPv6\" إلى مزود DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." -msgstr "" +msgstr "يحتوي الدليل على ملفات السجل لكل قسم قيد التشغيل." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." -msgstr "" +msgstr "يحتوي الدليل على PID ومعلومات الحالة الأخرى لكل قسم قيد التشغيل." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" -msgstr "" +msgstr "معطل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" -msgstr "" +msgstr "اختصاص" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" -msgstr "" +msgstr "نظام أسماء النطاقات الديناميكية" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" -msgstr "" +msgstr "√" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" -msgstr "" +msgstr "تحرير" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" -msgstr "" +msgstr "تمكين الاتصال الآمن مع مزود DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" -msgstr "ممكّن" +msgstr "مفعل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" -msgstr "" +msgstr "خطأ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" -msgstr "" +msgstr "عداد إعادة المحاولة خطأ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" -msgstr "" +msgstr "الفاصل الزمني لإعادة محاولة الخطأ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" -msgstr "" +msgstr "شبكة الأحداث" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "مثال على IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "مثال على IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "ملف" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "اتبع التعليمات التي ستجدها على صفحة الويب الخاصة بهم." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" -msgstr "" +msgstr "للحصول على الرموز المدعومة انظر هنا" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" -msgstr "" +msgstr "فرض إصدار IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" -msgstr "" +msgstr "فرض إصدار IP غير مدعوم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" -msgstr "" +msgstr "فرض الفاصل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" -msgstr "" +msgstr "فرض TCP على DNS" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "وحدة القوة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" -msgstr "" +msgstr "صيغة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" -msgstr "" +msgstr "الصيغة: IP أو FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." -msgstr "" +msgstr "سيستخدم GNU Wget عنوان IP لشبكة معينة ، وسيستخدم cURL الواجهة المادية." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "الاعدادات العامة" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "منح الوصول إلى إجراءات DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" -msgstr "" +msgstr "HTTPS غير مدعوم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" -msgstr "" +msgstr "اسم المضيف / FQDN للتحقق ، إذا حدث تحديث IP أو ضروريًا" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" -msgstr "" +msgstr "مصدر عنوان IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" -msgstr "" +msgstr "إصدار عنوان IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" -msgstr "" +msgstr "عنوان IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" -msgstr "" +msgstr "يجب كتابة عنوان IPv6 بين قوسين معقوفين" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" -msgstr "" +msgstr "IPv6 غير مدعوم (بالكامل) بواسطة هذا النظام حاليًا" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" -msgstr "" +msgstr "IPv6 غير مدعوم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" -msgstr "" +msgstr "عنوان IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" +"إذا تم تثبيت حزمة Wget و cURL ، فسيتم استخدام Wget بشكل افتراضي للاتصال." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "إذا تم تعطيل قسم الخدمة هذا ، فلا يمكن بدء تشغيله." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" -msgstr "" +msgstr "في حالة استخدام اتصال آمن ، يجب عليك التحقق من شهادات الخادم!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" +"في بعض الإصدارات ، يتم تجميع cURL / libcurl في OpenWrt بدون دعم الوكيل." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "معلومات" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" -msgstr "" +msgstr "معلومة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "أدخل برنامج نصي للتحديث أو عنوان URL للتحديث" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" +"قم بتثبيت حزمة \"ca-الشهادات\" أو الشهادات المطلوبة يدويًا في الدليل " +"الافتراضي / etc / ssl / certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "تثبيت الخدمة" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" -msgstr "" +msgstr "واجهه" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "الفاصل الزمني لفرض إرسال التحديثات إلى مزود DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" -msgstr "" +msgstr "وحدة الفاصل الزمني للتحقق من تغيير IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" -msgstr "" +msgstr "وحدة الفاصل الزمني لفرض إرسال التحديثات إلى مزود DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" -msgstr "" +msgstr "اخر تحديث" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" -msgstr "" +msgstr "عارض ملف السجل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" -msgstr "" +msgstr "دليل السجل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" -msgstr "" +msgstr "طول السجل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" -msgstr "" +msgstr "تسجيل الدخول إلى ملف" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" -msgstr "" +msgstr "سجل في سجل النظام" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" -msgstr "" +msgstr "اسم مضيف البحث" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "اسم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" +"لم يتم تثبيت GNU Wget مع SSL أو cURL لتحديد شبكة لاستخدامها في الاتصال." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 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/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "لا من واجهة LuCI ولا من وحدة التحكم." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "شبكة الاتصال" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" -msgstr "" +msgstr "الشبكة التي ستبدأ عليها سكربتات محدث ddns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "" +msgstr "أبدا" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" -msgstr "" +msgstr "خدمة DDns الجديدة …" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" -msgstr "" +msgstr "التحديث القادم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "" +msgstr "لايوجد بيانات" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" -msgstr "" +msgstr "لم يتم العثور على شهادات" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" -msgstr "" +msgstr "لا تسجيل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" -msgstr "" +msgstr "غير عام وبشكل افتراضي عناوين IP المحظورة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" -msgstr "" +msgstr "لا يعمل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" -msgstr "" +msgstr "ملاحضة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" -msgstr "" +msgstr "عدد الأسطر الأخيرة المخزنة في ملفات السجل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." -msgstr "" +msgstr "اختياري: فرض استخدام اتصال IPv4 / IPv6 الخالص فقط." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." -msgstr "" +msgstr "اختياري: فرض استخدام TCP بدلاً من UDP الافتراضي على طلبات DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" -msgstr "" +msgstr "اختياري: شبكة لاستخدامها في الاتصال" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." -msgstr "" +msgstr "اختياري: خادم وكيل للكشف والتحديثات." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." -msgstr "" +msgstr "اختياري: استخدم خادم DNS غير افتراضي لاكتشاف \"عنوان IP المسجل\"." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" +"عند \"خطأ\" ، سيقوم البرنامج النصي بإعادة محاولة الإجراء الفاشل بعد وقت معين" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" +"عند حدوث خطأ ، سيتوقف البرنامج النصي عن التنفيذ بعد عدد معين من المحاولات" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" -msgstr "" +msgstr "معلمة اختيارية مشفرة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" -msgstr "" +msgstr "معلمة اختيارية" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" -msgstr "" +msgstr "اختياري: يستبدل [PARAMENC] في Update-URL (بترميز URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" -msgstr "" +msgstr "اختياري: يستبدل [PARAMOPT] في Update-URL (ليس بترميز URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" -msgstr "" +msgstr "مخدم بروكسي" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" -msgstr "" +msgstr "كلمة المرور" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" -msgstr "" +msgstr "المسار إلى CA-Certificate" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" +"يرجى اتباع التعليمات الموجودة على الصفحة الرئيسية ل OpenWrt لتمكين دعم IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" -msgstr "" +msgstr "الرجاء الضغط على زر [قراءة]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" -msgstr "" +msgstr "قراءة / إعادة قراءة ملف السجل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "حقا تبديل الخدمة؟" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" -msgstr "" +msgstr "IP المسجل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" -msgstr "" +msgstr "إعادة تحميل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" +msgstr "إعادة تحميل هذه الخدمة" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" -msgstr "" +msgstr "يستبدل [PASSWORD] في تحديث URL (URL المشفر)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" -msgstr "" +msgstr "يستبدل [USERNAME] في Update-URL (بترميز URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" -msgstr "" +msgstr "أعد تشغيل DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "وحدة إعادة المحاولة" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" -msgstr "" +msgstr "تشغيل مرة واحدة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" -msgstr "" +msgstr "قيد التشغيل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" -msgstr "" +msgstr "النص" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "اختر الخدمة" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "الخدمة لا تدعم هذا النوع من بروتوكول الإنترنت" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "الخدمة غير مثبتة" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" +msgstr "خدمات" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "تنزيل عنوان URL للخدمات" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "آخر تحديث لقائمة الخدمات" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" msgstr "" +"سيؤدي تعيين هذه المعلمة إلى 0 إلى إجبار البرنامج النصي على التشغيل مرة واحدة " +"فقط" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" -msgstr "" +msgstr "ابدأ DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" -msgstr "" +msgstr "حالة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "الحالة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" -msgstr "" +msgstr "دليل الحالة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" -msgstr "" +msgstr "قف" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" -msgstr "" +msgstr "وقف DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" -msgstr "" +msgstr "أوقف هذه الخدمة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" -msgstr "" +msgstr "توقفت" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "خدمة التبديل" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." -msgstr "" +msgstr "الإعداد الافتراضي \"0\" سيعيد المحاولة بلا حدود." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" -msgstr "" +msgstr "اسم الخدمة مستخدم الآن" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:43 msgid "There is no service configured." -msgstr "" +msgstr "لا توجد خدمة مهيأة." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" -msgstr "" +msgstr "هذا هو المحتوى الحالي لملف السجل في" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" msgstr "" +"هذا هو الإعداد الافتراضي إذا قمت بتشغيل نصوص DDNS بنفسك (أي عبر cron مع ضبط " +"force_interval على \"0\")" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" -msgstr "" +msgstr "سيتم تعيين هذا تلقائيًا على الواجهة المحددة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" -msgstr "" +msgstr "إعدادات المؤقت" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" -msgstr "" +msgstr "محدد موقع المعلومات URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" -msgstr "" +msgstr "URL المراد اكتشافه" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "مجهول" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "تحديث قائمة خدمات DDns" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "تحديث URL لاستخدامه لتحديث مزود DDNS الخاص بك." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" +"يستخدم عنوان Url لتنزيل ملف الخدمات. بشكل افتراضي ، يتم إعادة تعيين حزمة " +"openwrt ddns الرئيسية." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" -msgstr "" +msgstr "استخدم HTTP Secure" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" -msgstr "" +msgstr "استخدم cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" -msgstr "" +msgstr "البرنامج النصي المحدد من قبل المستخدم لقراءة عنوان IP للأنظمة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" -msgstr "" +msgstr "اسم المستخدم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" -msgstr "" +msgstr "استخدام خادم DNS محدد غير مدعوم" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" -msgstr "" +msgstr "القيم الأقل من 5 دقائق == 300 ثانية غير معتمدة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" -msgstr "" +msgstr "القيم الأقل من \"التحقق من الفاصل الزمني\" باستثناء \"0\" غير مدعومة" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" -msgstr "" +msgstr "التحقق" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" -msgstr "" +msgstr "تحذير" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." -msgstr "" +msgstr "يكتب رسائل مفصلة لتسجيل الملف. سيتم اقتطاع الملف تلقائيًا." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" +"يكتب رسائل السجل إلى سجل النظام. ستتم دائمًا كتابة الأخطاء الفادحة في سجل " +"النظام." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 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/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." -msgstr "" +msgstr "يجب عليك تثبيت الحزمة \"wget\" أو \"curl\" أو \"uclient-fetch\"." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 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/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." -msgstr "" +msgstr "يجب عليك تثبيت الحزمة \"wget\" أو \"curl\"." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" +"يجب عليك تثبيت الحزمة \"wget\" أو \"uclient-fetch\" أو استبدال libcurl." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." -msgstr "" +msgstr "تم تثبيت cURL ، ولكن تم تجميع libcurl بدون دعم الوكيل." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" -msgstr "" +msgstr "cURL بدون دعم الوكيل" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" -msgstr "" +msgstr "حسب الطلب" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" -msgstr "" +msgstr "أيام" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" -msgstr "" +msgstr "دليل أو مسار / ملف" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" -msgstr "" +msgstr "ساعات" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" -msgstr "" +msgstr "دقائق" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" -msgstr "" +msgstr "أو" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" -msgstr "" +msgstr "أو قم بتحديث نظامك إلى أحدث إصدار من OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" -msgstr "" +msgstr "ثواني" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" -msgstr "" +msgstr "لتشغيل HTTPS بدون التحقق من شهادات الخادم (غير آمن)" diff --git a/applications/luci-app-ddns/po/bg/ddns.po b/applications/luci-app-ddns/po/bg/ddns.po index 01eec29a2f..7f12288adb 100644 --- a/applications/luci-app-ddns/po/bg/ddns.po +++ b/applications/luci-app-ddns/po/bg/ddns.po @@ -1,633 +1,703 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-06-01 13:26+0000\n" +"Last-Translator: Kalin Iliev <kalin.t.iliev@gmail.com>\n" +"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsddns/bg/>\n" "Language: bg\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 -msgid "Cancel" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 +msgid "Cancel" +msgstr "Отмени" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -635,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/bn_BD/ddns.po b/applications/luci-app-ddns/po/bn_BD/ddns.po index 2fa5029ac0..de630c3d2c 100644 --- a/applications/luci-app-ddns/po/bn_BD/ddns.po +++ b/applications/luci-app-ddns/po/bn_BD/ddns.po @@ -1,633 +1,703 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-12-10 19:29+0000\n" +"Last-Translator: Debashish Das <debashishdab@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsddns/bn_BD/>\n" "Language: bn_BD\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." -msgstr "" +msgstr "নিরাপত্তার কারনে পাথে \"../\" ব্যবহার করা যাবে না।" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." -msgstr "" +msgstr "নতুন সার্ভিস যোগ করুন..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "উন্নত সেটিংস" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" -msgstr "" +msgstr "নন-পাবলিক আইপি অনুমোদন দিন" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" -msgstr "" +msgstr "সাধারন সেটিংস" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" -msgstr "" +msgstr "নেটওয়ার্ক বিন্ড" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" -msgstr "" +msgstr "একটা নির্দিষ্ট নেটওয়ার্কে বিন্ড সম্ভব না" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -635,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/ca/ddns.po b/applications/luci-app-ddns/po/ca/ddns.po index 1e5c1a6d9c..6fad17f8e6 100644 --- a/applications/luci-app-ddns/po/ca/ddns.po +++ b/applications/luci-app-ddns/po/ca/ddns.po @@ -4,8 +4,8 @@ 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: 2020-03-11 23:49+0000\n" -"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" +"PO-Revision-Date: 2021-03-20 23:20+0000\n" +"Last-Translator: Toomoch <vallsfustearnau@gmail.com>\n" "Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/ca/>\n" "Language: ca\n" @@ -13,633 +13,697 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Configuració avançada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 -msgid "Cancel" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 +msgid "Cancel" +msgstr "Cancel•lar" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configuració" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 #, fuzzy msgid "Custom update-URL" msgstr "URL d'actualització personalitzada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domini" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS dinàmic" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Configuració global" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interfície" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Xarxa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Contrasenya" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Camí cap al certificat CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" -msgstr "" +msgstr "Torna a carregar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -647,169 +711,177 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Nom d'usuari" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" @@ -824,9 +896,6 @@ msgstr "" #~ "El DNS dinàmic permet que el teu router sigui localitzable amb un nom de " #~ "màquin fix mentre té una adreça IP dinàmica." -#~ msgid "Global Settings" -#~ msgstr "Configuració global" - #~ msgid "Loading" #~ msgstr "S’està carregant" diff --git a/applications/luci-app-ddns/po/cs/ddns.po b/applications/luci-app-ddns/po/cs/ddns.po index 52b197d754..7763e9706a 100644 --- a/applications/luci-app-ddns/po/cs/ddns.po +++ b/applications/luci-app-ddns/po/cs/ddns.po @@ -4,8 +4,8 @@ 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: 2020-03-11 01:51+0000\n" -"Last-Translator: Tomas Greif <greif.tomas@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Adam Salač <adam@salac.me>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/cs/>\n" "Language: cs\n" @@ -13,155 +13,175 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "\".. /\"není v cestě povoleno z bezpečnostních důvodů." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Přidat nové služby..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Pokročilá nastavení" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Povolit neveřejné adresy IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Základní nastavení" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Vytvořit vazbu mezi sítí" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Vazba na určitou síť není podporována" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" msgstr "" +"Verze programů nslookup a wget, které jsou součástí balíčku BusyBox, " +"nepodporují specifikaci verze IP pro komunikaci s poskytovatelem DDNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" msgstr "" +"Verze programů nslookup a hostip, které jsou součástí balíčku BusyBox, " +"nepodporují využití TCP místo výchozího protokolu UDP pro dotazování serveru " +"DNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" +"Současně kompilovaná verze programu nslookup, která je součástí balíčku " +"BusyBox, nemůže správně zpracovat uvedené servery DNS!" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Adresář certifikátů CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"Adresář který bude využit pro stažení dat služeb. Nastavte na IGNORE pro " +"přeskočení ověření certifikátu." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Storno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Interval kontroly" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Zkontrolovat jednotku" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Ověřování podpory služeb..." + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Nastavení" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Chyba nastavení" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" -"Zde nastavte podrobnosti pro všechny dynamické služby DNS včetně této " -"aplikace LuCI." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Vytvořit službu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Současné nastavení:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "V současné době nejsou aktualizace DDNS spouštěny při spuštění zařízení nebo " "při událostech rozhraní." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "Vlastní aktualizační skript, který bude použit pro aktualizaci DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Vlastní aktualizační-URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Vlastní aktualizační skript" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Automatické spuštění DDNS je zakázáno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Automatické spuštění DDNS povoleno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Poskytovatel služeb DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" -msgstr "" +msgstr "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Služba DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Požadavky DNS přes TCP nejsou podporovány" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Server DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Formát data" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Definuje webovou stránku pro zjištění systémové IP adresy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "Definuje rozhraní pro zjištění systémové IP adresy z" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Definuje síť pro zjištění systémové IP adres z" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -169,165 +189,173 @@ msgstr "" "Definuje zdroj pro zjištění systémových IP adres, který bude odeslán " "poskytovateli DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "Určuje, která IP adresa (IPv4/IPv6) bude odeslána poskytovateli DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "Adresář obsahuje soubory protokolu pro každou běžící sekci." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "Adresář obsahuje PID a další stavové informace pro každou běžící sekci." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Zakázáno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Doména" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dynamické DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Verze Dynamic DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Upravit" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Povolit zabezpečenou komunikaci s poskytovatelem DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Zapnuto" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Chyba" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Čítač opakování chyb" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Interval opakování chyby" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Síťové rozhraní" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Příklad pro IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Příklad pro IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Soubor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "Podrobné informace o nastavení parametrů najdete zde." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Postupujte podle pokynů, které najdete na jejich webové stránce." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Podporované kódy najdete zde" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Vynutit verzi IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Vynucená verze IP není podporována" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Interval vynucení" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Vynucení protokolu TCP u služby DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Vynutit jednotku" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Formát" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Formát: IP nebo FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "GNU Wget použije IP dané sítě, cURL použije fyzické rozhraní." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Globální nastavení" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Obecná nastavení" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "Povolit přístup k procedurám DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "Protokol HTTPS není podporován" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" "Název hostitele / FQDN k ověření, pokud dojde k aktualizaci IP nebo je-li to " "nutné" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Zdrojová IP adresa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Verze IP adresy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4 adresa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Adresa IPv6 musí být uvedena v hranatých závorkách" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "Protokol IPv6 momentálně není (plně) podporován tímto systémem" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "Protokol IPv6 není podporován" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6 adresa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -335,106 +363,104 @@ msgstr "" "Pokud jsou nainstalovány balíčky Wget a cURL, standardně se pro komunikaci " "použije Wget." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Pokud je tato část služby zakázána, nelze ji spustit." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Pokud používáte zabezpečenou komunikaci, měli byste ověřit serverové " "certifikáty!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" "V některých verzích je cURL / libcurl v OpenWrt kompilován bez podpory proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Informace" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Informace" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "Vložte aktualizační skript či aktualizační URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" +"Nainstalujte balíček \"ca-certificates\" nebo manuálně vložte nutné " +"certifikáty do výchozí složky /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Nainstalovat službu" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Rozhraní" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" +"Interval, po jehož uplynutí budou aktualizace odeslány zprostředkovateli DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Jednotka intervalu pro kontrolu změněné adresy IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Jednotka intervalu, která vynutí odeslání aktualizací zprostředkovateli DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"Pro příležitostné uživatele NENÍ doporučeno měnit nastavení na této stránce." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Poslední aktualizace" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Prohlížeč souborů protokolu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Adresář protokolu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Délka protokolu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Protokolovat do souboru" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Protokolovat do syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Doménové jméno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Název" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -442,7 +468,7 @@ msgstr "" "Není nainstalován GNU Wget s SSL ani cURL pro výběr sítě, která má být " "použita ke komunikaci." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -450,219 +476,268 @@ msgstr "" "Není nainstalován GNU Wget s SSL ani cURL pro podporu bezpečných aktualizací " "pomocí protokolu HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Ani z rozhraní LuCI ani z konzole." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Síť" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "Síť, na které budou spuštěny skripty ddns-updater" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Nikdy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Nová služba DDNS…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Další aktualizace" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Žádná data" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Nebyly nalezeny žádné certifikáty" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Žádné protokolování" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "Neveřejné a implicitně blokované adresy IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Není spuštěno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Oznámení" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Počet posledních řádků uložených v souborech protokolu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "VOLITELNÉ: Vynutit použití pouze čisté IPv4/IPv6 komunikace." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" "VOLITELNÉ: Vynutit použití protokolu TCP místo výchozího UDP na DNS dotazy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "VOLITELNÉ: Síť používaná pro komunikaci" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "VOLITELNÉ: Proxy-server pro detekci a aktualizace." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" "VOLITELNÉ: pro rozpoznání registrované adresy IP použít nevýchozí server DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "Při chybě skript zopakuje neúspěšnou akci po daném čase" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "Při chybě skript zastaví provádění po daném počtu opakování" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Volitelný kódovaný parametr" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Volitelný parametr" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Volitelné: Nahradí [PARAMENC] v Update-URL (URL kódování)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "Volitelné: Nahradí [PARAMOPT] v Update-URL (nikoli v kódování URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Proxy server" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Heslo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Chcete-li povolit podporu protokolu IPv6, postupujte podle pokynů na " "domovské stránce OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Prosím, stiskněte tlačítko [Načíst]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Načíst / znovu načíst soubor protokolu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Doopravdy přehodit službu?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Registrovaná IP adresa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Znovu načíst" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Znovu načíst tuto službu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Nahradí [PASSWORD] v Update-URL (kódování URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Nahradí [USERNAME] v Update-URL (kódování URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Restartovat DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Opakovat jednotku" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Spustit jednou" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Spuštěno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Skript" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Vybrat službu" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "Služba nepodporuje tento typ IP" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "Služba není nainstalovaná" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Služby" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "URL pro stažení služeb" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Poslední aktualizace seznamu služeb" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" +"Nastavením tohoto parametru na hodnotu 0 se vynutí pouze jednorázové " +"spuštění skriptu" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Spustit DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Stav" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Stav" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Stavový adresář" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Zastavit" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Zastavit DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Zastavit tuto službu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Zastaveno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Přehodit službu" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "Výchozí nastavení '0' znamená nekonečné opakování." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "Název služby je již používán" @@ -670,12 +745,12 @@ msgstr "Název služby je již používán" msgid "There is no service configured." msgstr "Není nakonfigurována žádná služba." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Toto je aktuální obsah souboru protokolu v" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -683,79 +758,89 @@ msgstr "" "Toto je výchozí nastavení, pokud spouštíte skripty DDNS sami (tj. přes cron " "s force_interval nastaveným na '0')" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Tato možnost bude automaticky nastavena na vybrané rozhraní" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Nastavení časovače" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "Adresa URL pro rozpoznání" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Neznámé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "Aktualizovat seznam služeb DDNS" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "Adresa URL použitá zprostředkovatelem DDNS pro aktualizaci." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" +"URL která je používána pro stažení souboru služeb. Výchozím nastavením je " +"master repozitář OpenWRT balíčku DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Použít zabezpečený protokol HTTPS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Použít cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "Uživatelem definovaný skript pro čtení systémových IP adres" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Uživatelské jméno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Použití specifického serveru DNS není podporováno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Hodnoty nižší než 5 minut (= 300 sekund) nejsou podporovány" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" "Hodnoty nižší než 'Interval kontroly' s výjimkou '0' nejsou podporovány" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Ověřit" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Varování" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" "Zapisuje podrobné zprávy do souboru protokolu. Soubor bude automaticky " "zkrácen." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -763,13 +848,16 @@ msgstr "" "Zapisuje zprávy protokolu do syslogu. Kritické chyby budou vždy zapsány do " "syslogu." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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 "" +"Pokud potřebujete zadat server DNS pro zjištění registrované IP adresy, měli " +"byste si nainstalovat balíček \"bind-host\", \"knot-host\", \"drill\" nebo " +"\"hostip\"." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -777,12 +865,12 @@ msgstr "" "Měli byste nainstalovat balíček 'bind-host' nebo 'knot-host' nebo 'drill' " "pro DNS dotazy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" "Měli byste nainstalovat balíček 'wget' nebo 'curl' nebo 'uclient-fetch'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -790,66 +878,85 @@ msgstr "" "Měli byste nainstalovat balíček 'wget' nebo 'curl' nebo 'uclient-fetch' s " "balíčkem 'libustream-*ssl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Měli byste nainstalovat balíček 'wget' nebo 'curl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" "Měli byste nainstalovat balíček 'wget' nebo 'uclient-fetch' nebo nahradit " "libcurl." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "cURL je nainstalován, ale libcurl byl kompilován bez podpory proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL bez podpory proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "vlastní" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "dny/dnů" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "adresář, nebo cesta/soubor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "hodiny/hodin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minuty/minut" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "nebo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "nebo aktualizujte systém na nejnovější verzi OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "sekundy/sekund" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "k použití HTTPS bez ověření serverových certifikátů (nedůvěryhodné)" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "Zde nastavte podrobnosti pro všechny dynamické služby DNS včetně této " +#~ "aplikace LuCI." + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "Podrobné informace o nastavení parametrů najdete zde." + +#~ msgid "Global Configuration" +#~ msgstr "Globální nastavení" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "Pro příležitostné uživatele NENÍ doporučeno měnit nastavení na této " +#~ "stránce." + #~ msgid "BusyBox's nslookup and Wget do not support to specify" #~ msgstr "Nástroje nslookup a wget pro BusyBox nepodporuje specifikaci" @@ -862,26 +969,9 @@ msgstr "k použití HTTPS bez ověření serverových certifikátů (nedůvěryh #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "Definuje webovou stránku pro zjištění systémové IP adresy z" -#~ msgid "Example for IPv4" -#~ msgstr "Příklad pro IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Příklad pro IPv6" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "Pokud je tato část služby zakázána, nelze ji spustit." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "Nainstalujte balíček 'ca-certificates' nebo potřebné certifikáty" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "" -#~ "Interval, po jehož uplynutí budou aktualizace odeslány zprostředkovateli " -#~ "DDNS" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "Adresa URL použitá zprostředkovatelem DDNS pro aktualizaci." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," diff --git a/applications/luci-app-ddns/po/de/ddns.po b/applications/luci-app-ddns/po/de/ddns.po index 476027c163..ed62e92fae 100644 --- a/applications/luci-app-ddns/po/de/ddns.po +++ b/applications/luci-app-ddns/po/de/ddns.po @@ -2,8 +2,8 @@ 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: 2020-04-20 07:11+0000\n" -"Last-Translator: ce4 <chregger@gmail.com>\n" +"PO-Revision-Date: 2021-03-24 15:29+0000\n" +"Last-Translator: Dirk Brenken <dev@brenken.org>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/de/>\n" "Language: de\n" @@ -11,40 +11,40 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.2-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Basepath: .\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "\"../\" ist aus Sicherheitsgründen nicht als Pfad erlaubt." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Neue Dienste hinzufügen..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Erlaube Nicht-öffentliche IPs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Grundlegende Einstellungen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Bind-Netzwerk" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "'Bind' an ein bestimmtes Netzwerk wird nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -52,7 +52,7 @@ msgstr "" "BusyBox's nslookup und Wget unterstützen nicht die IP Version für die " "Kommunikation festzulegen!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -60,7 +60,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -68,111 +68,120 @@ msgstr "" "BusyBox nslookup in der aktuellen compilierten Version kann gegebenen DNS-" "Server nicht korrekt verarbeiten!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Pfad zu CA-Zertifikaten" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Abbrechen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Prüfinterval" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Einheit prüfen" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Überprüfe die Service-Unterstützung..." + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Konfiguration" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Konfigurations-Fehler" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -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/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Dienst erstellen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Aktuelle Einstellungen:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Zur Zeit werden DDNS-Updates weder bei Systemstart, noch bei Schnittstellen-" "Events gestartet." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 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/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Eigene Update-URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Eigenes Update-Skript" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "DDNS Autostart deaktiviert" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "DDNS-Autostart aktiviert" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "DDNS-Dienstanbieter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "DDNS-Dienst" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "DNS Anfragen über TCP nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS-Server" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Datumsformat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" -"Webadresse des Diensts von dem die IP-Adresse des Systems gelesen werden " -"soll<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Bestimmt die Webseite von der die IP-Adresse des Systems gelesen wird." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" "Definiert die Schnittstelle, von der die aktuelle IP-Adresse des Systems " "gelesen wird" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" "Definiert das Netzwerk, von dem die IP-Adresse des Systems gelesen wird" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -180,116 +189,120 @@ msgstr "" "Definiert die Quelle zum Auslesen der IP-Adresse des Systems, die an den " "DDNS-Anbieter gesendet wird" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 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/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "Verzeichnis enthält für jeden aktiven Abschnitt Log-Dateien." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "Verzeichnis enthält für jeden aktiven Abschnitt PID und andere " "Statusinformationen." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Deaktiviert" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domäne" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dynamisches DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Dynamic-DNS-Version" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Bearbeiten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Aktiviert sichere Kommunikation mit dem DDNS Anbieter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Fehler" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Wiederholungszähler bei Fehler" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Wiederholungsintervall bei Fehler" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Ereignis Netzwerk" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Beispiel für IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Beispiel für IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Beispiel für IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Beispiel für IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Datei" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "" -"Detaillierte Informationen zu den Parametereinstellungen finden Sie hier." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Folge den Instruktionen auf ihrer Webseite." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Unterstützte Kodierungen finden Sie hier" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Erzwinge IP-Version" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Erzwinge IP-Version nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Erzwungene Aktualisierung" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Erzwinge TCP bei DNS-Anfragen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Erzwinge Abschnitt" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Format" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Format: IP-Adresse oder FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." @@ -297,53 +310,56 @@ msgstr "" "GNU Wget verwendet die IP des gewählten Netzwerkes; cURL verwendet die " "physikalische Schnittstelle." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Globale Einstellung" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Globale Einstellungen" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "Gewähre Zugriff zu ddns Abläufen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 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/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP-Adressquelle" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "IP-Adressversion" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4-Adresse" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Eine IPv6 Adresse muss in eckigen Klammern angegeben werden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "IPv6 wird von diesem System derzeit nicht (voll) unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6-Adresse" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -351,43 +367,41 @@ msgstr "" "Falls die Pakete Wget und cURL installiert sind, wird standardmäßig Wget für " "die Kommunikation verwendet." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -"Wenn deaktiviert kann die Aktualisierung nicht gestartet werden.<br />Weder " -"über das LuCI Web Interface noch von der Geräte-Konsole" +"Wenn dieser Service-Abschnitt deaktiviert ist, konnte es nicht gestartet " +"werden." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 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/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 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/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Info" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Informationen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "Update-Skript oder Update-URL hier einfügen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -395,69 +409,63 @@ msgstr "" "Installieren Sie das 'ca-certificates' Paket oder die benötigten Zertifikate " "von Hand in das Standardverzeichnis /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Service installieren" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Schnittstelle" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Intervall nach dem ein Zwangsupdate des DDNS-Eintrags erfolgt<br/>Das Setzen " -"auf 0 bewirkt, dass das Skript nur einmal ausgeführt wird" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Intervall für das Senden von zwangsmässigen Updates an DDNS Provider" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Intervalleinheit zur Überprüfung auf geänderte IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "Intervall für ein Zwangsupdate des DDNS-Eintrags" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"Es wird NICHT empfohlen, dass Standardbenutzer die Einstellungen auf dieser " -"Seite ändern." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Letzte Aktualisierung" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Protokolldateibetrachter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Protokollverzeichnis" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Protokolllänge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Protokoll in Datei schreiben" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Schreibe Logs ins syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Hostname nachschlagen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Name" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -465,7 +473,7 @@ msgstr "" "Weder GNU Wget mit SSL noch cURL sind installiert um ein Netzwerk zur " "Kommunikation festzulegen." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -473,226 +481,275 @@ msgstr "" "Weder GNU Wget mit SSL noch cURL sind installiert um sichere " "Aktualisierungen über HTTPS Protokoll zu unterstützen." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Weder vom LuCI interface noch von der Konsole." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Netzwerk" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "Netzwerk auf dem die ddns-updater Skripte gestarten werden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Niemals" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Neuer DDns-Dienst…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Nächste Aktualisierung" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Keine Daten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Keine Zertifikate gefunden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Keine Protokollierung" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "Nicht-öffentliche und standardmäßig blockierte IPs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Läuft nicht" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Notiz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" "Anzahl der letzten Zeilen, die in der Protokolldatei gespeichert werden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 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/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 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/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "OPTIONAL: Netzwerk, das zur Kommunikation verwendet werden soll" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPTIONAL: Proxy-Server für Adresserkennung und Aktualisierungen." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 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/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 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/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" "Bei Fehlern wird das Skript nach der gegebenen Anzahl von Fehlversuchen " "beendet" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Optionaler codierten Parameter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Optionaler Parameter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Optional: Ersetzt [PARAMENC] in der Update-URL (URL-codiert)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 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/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Proxy-Server" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Passwort" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Bitte den Anweisungen auf der OpenWrt-Homepage folgen, um IPv6-Unterstützung " "zu aktivieren" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Bitte Protokolldatei einlesen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Protokolldatei (neu) einlesen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Den Dienst wirklich wechseln?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Registrierte IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" -msgstr "Neu laden" +msgstr "Neu laden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Diesen Service neu laden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Ersetzt [PASSWORD] in der Update-URL (URL-codiert)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Ersetzt [USERNAME] in der Update-URL (URL-codiert)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "DDns neustarten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Abschnitt erneut versuchen" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Einmalig ausführen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Laufend" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Skript" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Einen Dienst auswählen" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +#, fuzzy +msgid "Service doesn't support this ip type" +msgstr "Der Dienst unterstützt diesen IP-Typ nicht" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +#, fuzzy +msgid "Service not installed" +msgstr "Dienst nicht installiert" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Dienste" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "Ist dieser Wert auf 0 gesetzt, wird das Skript nur einmal ausgeführt" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "DDNS starten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Zustand" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Status" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Status-Verzeichnis" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Stopp" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "DDNS anhalten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Diesen Dienst anhalten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Angehalten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Dienst wechseln" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "Beim Standard-Wert von '0' wird es endlos erneut versucht." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "Dieser Dienstname ist bereits in Benutzung" @@ -700,12 +757,12 @@ msgstr "Dieser Dienstname ist bereits in Benutzung" msgid "There is no service configured." msgstr "Kein Dienst konfiguriert." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Dies ist der aktuelle Inhalt der Logdatei in" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -713,84 +770,95 @@ msgstr "" "Dies ist die Standardeinstellung, wenn DDNS-Skripte selbst ausgeführt werden " "(z. B. via cron mit force_interval gesetzt auf '1')" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Dies wird automatisch auf die ausgewählte Schnittstelle eingestellt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Zeitgeber-Einstellungen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "URL zur Adresserkennung für" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Unbekannt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "DDns-Diensteliste aktualisieren" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" +"Aktualisiere die URL welche benutzt wird, um den DDNS Provider zu " +"aktualisieren." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 +#, fuzzy msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"Update-URL um Aktualisierungen an Ihren DDNS Anbieter zu senden.<br />Folgen " -"Sie der Anleitung auf der Internet Seite des Anbieters." +"Url, die zum Herunterladen der Servicedatei verwendet wird. Standardmäßig " +"ist dies das Master-Openwrt-Ddns-Paket-Repositorium." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Verwende sicheres HTTP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Verwende cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" "Benutzerdefiniertes Skript, mit dem die aktuelle IP-Adresse des Systems " "gelesen wird" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Benutzername" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Verwendung spezifischer DNS-Server wird nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Werte unter 5 Minuten === 300 Sekunden werden nicht unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" "Ausgenommen von \"0\" werden keine Werte kleine als der \"Prüfinterval\" " "unterstützt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Überprüfen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Warnung" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 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/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -798,7 +866,7 @@ msgstr "" "Schreibt Meldungen ins Systemprotokoll. Kritische Fehler werden immer in das " "Systemprotokoll geschrieben." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -807,7 +875,7 @@ msgstr "" "oder 'hostip' installieren, wenn Sie einen DNS Server angeben müssen um Ihre " "registrierte IP zu ermitteln." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -815,13 +883,13 @@ msgstr "" "Sie sollten das Programmpakete 'bind-host' oder 'knot-host' oder 'drill' für " "DNS Anfragen installieren." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 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/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -829,68 +897,120 @@ msgstr "" "Sie sollten das Programmpaket 'wget' oder 'curl' oder 'uclient-fetch' mit " "'libustream-*ssl' installieren." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Sie sollten das Programmpaket 'wget' oder 'curl' installieren." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 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/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" "cURL ist installiert, aber libcurl wurde ohne Proxy-Unterstützung kompiliert." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL ohne Proxy Unterstützung" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "benutzerdefiniert" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "Tage" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "Verzeichnis oder Pfad/zur/Datei" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "Stunden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "Minuten" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "oder" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "oder aktualisieren Sie Ihr System auf die neueste OpenWrt Version" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "Sekunden" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "um HTTPS ohne Überprüfung der Server Zertifikate auszuführen (unsicher)" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "Konfiguriere hier die Details für alle Dynamik DNS Dienste einschließlich " +#~ "dieser LuCI Anwendung." + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "" +#~ "Webadresse des Diensts von dem die IP-Adresse des Systems gelesen werden " +#~ "soll<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Beispiel für IPv4: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Beispiel für IPv6: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Detaillierte Informationen zu den Parametereinstellungen finden Sie hier." + +#~ msgid "Global Configuration" +#~ msgstr "Globale Einstellung" + +#~ 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" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "Intervall nach dem ein Zwangsupdate des DDNS-Eintrags erfolgt<br/>Das " +#~ "Setzen auf 0 bewirkt, dass das Skript nur einmal ausgeführt wird" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "Es wird NICHT empfohlen, dass Standardbenutzer die Einstellungen auf " +#~ "dieser Seite ändern." + +#~ 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." + #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "" #~ "Definiert die Web-Adresse, von der die aktuelle IP-Adresse des Systems " @@ -911,12 +1031,6 @@ msgstr "" #~ msgstr "" #~ "Definiert die Webseite, von der die IP-Adresse des Systems gelesen wird" -#~ msgid "Example for IPv4" -#~ msgstr "Beispiel für IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Beispiel für IPv6" - #~ msgid "&" #~ msgstr "&" @@ -1053,9 +1167,6 @@ msgstr "" #~ msgid "Forced IP Version don't matched" #~ msgstr "Erzwungene IP Version stimmt nicht überein" -#~ msgid "Global Settings" -#~ msgstr "Globale Einstellungen" - #~ msgid "Hints" #~ msgstr "Hinweise" diff --git a/applications/luci-app-ddns/po/el/ddns.po b/applications/luci-app-ddns/po/el/ddns.po index 78d3ed02af..dedc3aaacf 100644 --- a/applications/luci-app-ddns/po/el/ddns.po +++ b/applications/luci-app-ddns/po/el/ddns.po @@ -2,8 +2,8 @@ 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-12-03 08:25+0000\n" -"Last-Translator: Tavaninja <metalcorpe@gmail.com>\n" +"PO-Revision-Date: 2021-02-01 16:02+0000\n" +"Last-Translator: ChriZathens <c_kan1@hotmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/el/>\n" "Language: el\n" @@ -11,632 +11,696 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." -msgstr "" +msgstr "\"../\" δεν επιτρέπεται στη διαδρομή για Λόγους Ασφαλείας." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." -msgstr "" +msgstr "Προσθήκη νέων υπηρεσιών..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Ρυθμίσεις για προχωρημένους" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" -msgstr "" +msgstr "Να επιτρέπονται μη-δημόσιες διευθύνσεις IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" -msgstr "" +msgstr "Βασικές Ρυθμίσεις" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Ακύρωση" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" +msgstr "Μεσοδιάστημα Ελέγχου" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Διαμόρφωση" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" -msgstr "" +msgstr "Τρέχουσα ρύθμιση:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Προσαρμοσμένο URL-ενημέρωσης" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" -msgstr "" +msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" -msgstr "" +msgstr "Υπηρεσία DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" -msgstr "" +msgstr "Μορφή ημερομηνίας" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Δυναμικό DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" -msgstr "" +msgstr "Ενεργοποιήθηκε" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" -msgstr "" +msgstr "Σφάλμα" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Διεπαφή" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Δίκτυο" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Ποτέ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Κωδικός πρόσβασης" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Κατάσταση" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -644,169 +708,177 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Όνομα χρήστη" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/en/ddns.po b/applications/luci-app-ddns/po/en/ddns.po index 382e5b42f1..f999a06ee7 100644 --- a/applications/luci-app-ddns/po/en/ddns.po +++ b/applications/luci-app-ddns/po/en/ddns.po @@ -1,639 +1,703 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-31 01:41+0000\n" -"Last-Translator: Stephen Maundrell <smaundrell@gmail.com>\n" +"PO-Revision-Date: 2021-01-07 17:03+0000\n" +"Last-Translator: Liao junchao <liaojunchao@outlook.com>\n" "Language-Team: English <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/en/>\n" "Language: en\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.4.1-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Advanced Settings" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 -msgid "Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 -msgid "Configuration Error" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 +msgid "Configuration" +msgstr "Configuration" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 +msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Enabled" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -641,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/es/ddns.po b/applications/luci-app-ddns/po/es/ddns.po index 28611a910f..04169728f2 100644 --- a/applications/luci-app-ddns/po/es/ddns.po +++ b/applications/luci-app-ddns/po/es/ddns.po @@ -2,7 +2,7 @@ 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: 2020-07-12 20:10+0000\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/es/>\n" @@ -11,38 +11,38 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "\"../\" no está permitido en la ruta por motivo de seguridad." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Añadir nuevos servicios..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "Configuraciones avanzadas" +msgstr "Configuración avanzada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Permitir IPs no publicas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Configuración básica" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Red de enlace" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "No se admite el enlace a una red específica" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -50,7 +50,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -58,7 +58,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -66,107 +66,121 @@ msgstr "" "¡El nslookup de BusyBox en la versión compilada actual no maneja los " "servidores DNS dados correctamente!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Ruta a Certs CA" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"Ruta a Certs CA que se utilizará para descargar datos de servicios. " +"Configure IGNORE para omitir la validación del certificado." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "Intervalo de verificación" +msgstr "Revisar Intervalo" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Comprobar unidad" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Comprobando el soporte de servicio..." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configuración" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Error de configuración" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -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/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Crear servicio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Configuración actual:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Actualmente, las actualizaciones DDNS no se inician en el arranque o en los " "eventos de la interfaz." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" "Script personalizado que se utilizará para actualizar su proveedor DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "URL de actualización personalizada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Script de actualización personalizado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Inicio automático DDNS desactivado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Inicio automático DDNS activado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Proveedor de servicios DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Servicio DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Las solicitudes de DNS a través de TCP no son compatibles" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Servidor DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Formato de fecha" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "Define la página web para leer la dirección IP del sistema desde<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "" +"Define la página web desde la que leer la dirección IP de los sistemas." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 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/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Define la red para leer la dirección IP de los sistemas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -174,169 +188,175 @@ msgstr "" "Define la fuente para leer la dirección IP del sistema, que se enviará al " "proveedor DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 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/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" "El directorio contiene archivos de registro para cada sección en ejecución." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 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/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Desactivado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Dominio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS dinámico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Versión de DNS dinámico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Editar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Activa la comunicación segura con el proveedor de DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Activado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Error" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Contador de reintentos de error" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Intervalo de reintento de error" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Red de eventos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Ejemplo para IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Ejemplo para IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Ejemplo para IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Ejemplo para IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Archivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -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/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Siga las instrucciones que encontrará en su página WEB." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Para ver los códigos soportados mira aquí" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Forzar versión de IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Forzar versión de IP no soportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Forzar actualización cada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Forzar TCP en DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Forzar unidad" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Formato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Formato: IP o FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 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/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "Configuración global" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "Conceder acceso a los procedimientos de ddns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS no soportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 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/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Fuente de direccion IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Versión de dirección IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Dirección IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "La dirección IPv6 debe darse entre corchetes" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "IPv6 actualmente no es (totalmente) compatible con este sistema" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 no soportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Dirección IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -344,45 +364,41 @@ msgstr "" "Si están instalados Wget y cURL, Wget se usa para la comunicación de forma " "predeterminada." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" -msgstr "" -"Si no se activa esta opción, no se iniciará el servicio.<br />Ni desde la " -"interfaz de LuCI ni desde la consola" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Si esta sección de servicio está desactivada, no podría iniciarse." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 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/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 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/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Info" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Información" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" "Insertar una secuencia de comandos de actualización o una URL de " "actualización" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -390,72 +406,65 @@ msgstr "" "Instale el paquete de 'ca-certificates' o los certificados necesarios a mano " "en el directorio predeterminado /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Instalar servicio" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interfaz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Intervalo para forzar el envío de actualizaciones al proveedor DDNS<br /" -">Establecer este parámetro en 0 obligará a que el script solo se ejecute una " -"vez" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Intervalo para forzar el envío de actualizaciones al proveedor de DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Unidad de intervalo para verificar el cambio de IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Unidad de intervalo para forzar el envío de actualizaciones al proveedor de " "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -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/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Última actualización" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Visor de archivos de registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Directorio de registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Longitud de registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Registro al archivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Inicie sesión en syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" -msgstr "Nombre de Host" +msgstr "Búsqueda de nombre de host" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nombre" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -463,7 +472,7 @@ msgstr "" "Ni GNU Wget con SSL ni cURL instalado para seleccionar una red para usar " "para la comunicación." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -471,229 +480,277 @@ msgstr "" "Ni GNU Wget con SSL ni cURL instalado para admitir actualizaciones seguras a " "través del protocolo HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Ni desde la interfaz LuCI ni desde la consola." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Red" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 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/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Nunca" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Nuevo servicio DDNS…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Siguiente actualización" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Sin datos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "No se encontraron certificados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Sin registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "IPs no públicos y bloqueados por defecto" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Sin ejecución" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Aviso" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 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/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 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/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 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/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "OPCIONAL: Red a utilizar para la comunicación" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPCIONAL: Servidor proxy para detección y actualizaciones." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 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/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 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/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 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/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Parámetro codificado opcional" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Parámetro opcional" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 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/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 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/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Servidor proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Contraseña" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Ruta al certificado CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Siga las instrucciones en la página de inicio de OpenWrt para activar el " "soporte de IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Por favor presione el botón [Leer]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Leer / releer el archivo de registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "¿Realmente quiere cambiar de servicio?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "IP registrada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Recargar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Recargar este servicio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "Reemplaza [DOMINIO] en Update-URL (codificado en URL)" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Reemplaza [CONTRASEÑA] en URL de actualización (codificada en URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 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/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Reiniciar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Unidad de reintento" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Iniciar una vez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Corriendo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Script" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Seleccione un servicio" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "El servicio no admite este tipo de IP" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "Servicio no instalado" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Servicios" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "URL de descarga de servicios" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Última actualización de la lista de servicios" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" +"Establecer este parámetro en 0 obligará al script a ejecutarse solo una vez" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Iniciar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Estado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Estado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Estado de directorio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Detener" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Detener DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Detener este servicio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Detenido" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Cambiar servicio" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "La configuración predeterminada de '0' reintentará infinito." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "El nombre del servicio ya está en uso" @@ -701,12 +758,12 @@ msgstr "El nombre del servicio ya está en uso" msgid "There is no service configured." msgstr "No hay servicio configurado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Este es el contenido actual del archivo de registro en" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -714,83 +771,91 @@ msgstr "" "Este es el valor predeterminado si ejecuta scripts DDNS usted mismo (es " "decir, a través de cron con force_interval establecido en '0')" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Esto se configurará automáticamente en la interfaz seleccionada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Configuración del temporizador" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "URL para detectar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Desconocido" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "Actualizar la lista de servicios DDNS" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "Actualizar URL que se utilizará para actualizar su proveedor de DDNS." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"Actualizar la URL que se usará para actualizar su proveedor de DDNS.<br /" -">Siga las instrucciones que encontrará en su página WEB." +"URL utilizada para descargar el archivo de servicios. De forma " +"predeterminada, es el repositorio principal del paquete ddns de openwrt ." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Usar HTTP seguro (HTTPS)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Usar cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 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/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Nombre de usuario" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "El uso de un servidor DNS específico no es compatible" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Los valores inferiores a 5 minutos == 300 segundos no son compatibles" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" "Los valores inferiores a 'Intervalo de verificación' excepto '0' no son " "compatibles" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Verificar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Advertencia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 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/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -798,7 +863,7 @@ msgstr "" "Escribe mensajes de registro en syslog. Los errores críticos siempre se " "escribirán en syslog." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -806,7 +871,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -814,11 +879,11 @@ msgstr "" "Debe instalar el paquete 'bind-host' o 'knot-host' o 'drill' para las " "solicitudes de DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 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/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -826,66 +891,119 @@ msgstr "" "Debe instalar 'wget' o 'curl' o 'uclient-fetch' con el paquete 'libustream-" "*ssl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Debe instalar el paquete 'wget' o 'curl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 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/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 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/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL sin soporte de proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "personalizado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "Días" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "Directorio o ruta/archivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "horas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "Minutos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "o" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "o actualice su sistema a la última versión de OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "Segundos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "Para ejecutar HTTPS sin verificación de certificados de servidor (inseguro)" +#~ 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." + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "" +#~ "Define la página web para leer la dirección IP del sistema desde<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Ejemplo para IPv4: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Ejemplo para IPv6: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Para obtener información detallada sobre la configuración de parámetros, " +#~ "consulte aquí." + +#~ msgid "Global Configuration" +#~ msgstr "Configuración global" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "Si no se activa esta opción, no se iniciará el servicio.<br />Ni desde la " +#~ "interfaz de LuCI ni desde la consola" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "Intervalo para forzar el envío de actualizaciones al proveedor DDNS<br /" +#~ ">Establecer este parámetro en 0 obligará a que el script solo se ejecute " +#~ "una vez" + +#~ 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." + +#~ 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." + #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "" #~ "Define la página web para leer la dirección IP de los sistemas desde<br>" @@ -902,26 +1020,9 @@ msgstr "" #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "Define la página web para leer la dirección IP de los sistemas" -#~ msgid "Example for IPv4" -#~ msgstr "Ejemplo para IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Ejemplo para IPv6" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "Si esta sección de servicio está desactivada, no podría iniciarse." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "Instale el paquete 'ca-certificates' o los certificados necesarios" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "" -#~ "Intervalo para forzar el envío de actualizaciones al proveedor de DDNS" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "" -#~ "Actualizar URL que se utilizará para actualizar su proveedor de DDNS." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," @@ -1059,9 +1160,6 @@ msgstr "" #~ msgid "Forced IP Version don't matched" #~ msgstr "La versión de IP forzada no coincide" -#~ msgid "Global Settings" -#~ msgstr "Configuración global" - #~ msgid "Hints" #~ msgstr "Consejos" diff --git a/applications/luci-app-ddns/po/fi/ddns.po b/applications/luci-app-ddns/po/fi/ddns.po index 2f068c1d7e..38bd6c521b 100644 --- a/applications/luci-app-ddns/po/fi/ddns.po +++ b/applications/luci-app-ddns/po/fi/ddns.po @@ -1,639 +1,703 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-24 17:42+0000\n" -"Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" +"PO-Revision-Date: 2021-02-18 22:07+0000\n" +"Last-Translator: Henri Nieminen <henri@purkki.fi>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/fi/>\n" "Language: fi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Lisäasetukset" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Perusasetukset" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Peruuta" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Määritys" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Pois käytöstä" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Verkkonimi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Muokkaa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Käytössä" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Virhe" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Tiedosto" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Yleiset asetukset" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4-osoite" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6-osoite" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Tietoja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Tietoja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Sovitin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nimi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Verkko" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "" +msgstr "Ei ikinä" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "" +msgstr "Ei tietoja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Huomaa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Salasana" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Polku CA-varmenteeseen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Komentojono" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Palvelut" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Tila" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Pysäytä" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -641,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Tuntematon" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Käyttäjätunnus" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Varoitus" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minuuttia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/fr/ddns.po b/applications/luci-app-ddns/po/fr/ddns.po index 0ed30786f3..9c5b8c4355 100644 --- a/applications/luci-app-ddns/po/fr/ddns.po +++ b/applications/luci-app-ddns/po/fr/ddns.po @@ -2,8 +2,8 @@ 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: 2020-06-20 14:41+0000\n" -"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" +"PO-Revision-Date: 2021-04-11 16:26+0000\n" +"Last-Translator: SRay <seb@isostorm.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/fr/>\n" "Language: fr\n" @@ -11,39 +11,39 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" "\"../\" non autorisé dans le chemin d'accès pour des raisons de sécurité." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Ajouter de nouveaux services..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Paramètres avancés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Autoriser les adresses IP privées" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Paramètres de base" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Réseau Attaché" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Attacher à un réseau spécifique n'est pas pris en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -51,7 +51,7 @@ msgstr "" "Le nslookup et le Wget de BusyBox ne permettent pas de spécifier la version " "IP à utiliser pour la communication avec le fournisseur DDNS !" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -60,7 +60,7 @@ msgstr "" "l'utilisation de TCP au lieu de l'UDP par défaut lors de la demande de " "serveur DNS !" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -68,109 +68,119 @@ msgstr "" "Le nslookup de BusyBox dans la version compilée actuelle ne gère pas " "correctement les serveurs DNS donnés !" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Chemin des certificats CA" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Annuler" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Vérifier l'intervale" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configuration" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Erreur de configuration" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" -"Configurez ici les détails de tous les services DNS dynamiques, y compris " -"cette application LuCI." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Créer un service" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Paramètre actuel :" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Actuellement, les mises à jour DDNS ne sont pas démarrées au démarrage ou " "lors des événements d'interface." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" "Script de mise à jour personnalisé à utiliser pour mettre à jour votre " "fournisseur DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "URL de mise à jour personnalisée" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Script de mise à jour personnalisé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Démarrage automatique DDNS désactivé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Démarrage automatique DDNS activé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Fournisseur de service de DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Service DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Les requêtes DNS via TCP ne sont pas prises en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Serveur DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Format de date" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -"Définit la page Web à partir de laquelle lire l'adresse IP des systèmes<br />" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "Définit l'interface depuis laquelle lire les adresses IP système" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Définit le réseau depuis lequel lire les adresses IP système" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -178,172 +188,178 @@ msgstr "" "Définit la source à partir de laquelle lire l'adresse IP système qui sera " "envoyée au fournisseur DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" "Définit quelle adresse IP 'IPv4/IPv6' est à envoyer au fournisseur DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" "Le répertoire contient des fichiers journaux pour chaque section en cours " "d'exécution." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "Le répertoire contient le PID et d'autres informations d'état pour chaque " "section en cours d'exécution." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Désactivé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domaine" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS Dynamique" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Version DNS dynamique" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Éditer" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Activez la communication sécurisée avec le fournisseur DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Activé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Erreur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Compteur de tentatives d'erreur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Intervalle de relance d'erreur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Évènement réseau" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Exemple pour de l'IPv4 : http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Exemple pour IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Exemple pour de l'IPv6 : http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Exemple pour IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Fichier" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -"Pour des informations détaillées sur les réglages des paramètres, regardez " -"ici." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Pour les codes pris en charge, regardez ici" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Forcer la version IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Forcer la version IP n'est pas pris en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Intervalle pour le forçage" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Forcer TCP sur DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Format" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Format : IP ou FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" "GNU Wget utilisera l'IP du réseau donné, cURL utilisera l'interface physique." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Configuration globale" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Paramètres généraux" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "Accorder l'accès aux procédures de ddns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS non pris en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" "Nom d'hôte/FQDN à valider, si une mise à jour IP se produit ou si nécessaire" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Source de l'adresse IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Version de l'adresse IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Adresse IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "L'adresse IPv6 doit être donnée entre crochets" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" "IPv6 n'est actuellement pas (entièrement) pris en charge par ce système" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 non pris en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Adresse IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -351,43 +367,40 @@ msgstr "" "Si les packages Wget et cURL sont installés, Wget est utilisé pour la " "communication par défaut." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" "Si cette section de service est désactivée, elle n'a pas pu être démarrée." -"<br /> Ni à partir de l'interface LuCI ni à partir de la console" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Si vous utilisez une communication sécurisée, vous devez vérifier les " "certificats de serveur !" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" "Dans certaines versions, cURL/libcurl dans OpenWrt est compilé sans prise en " "charge de proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Infos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Information" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "Insérer un script OU une URL de mise à jour" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -395,71 +408,64 @@ msgstr "" "Installez le paquet 'ca-certificats' ou les certificats nécessaires à la " "main dans le répertoire par défaut /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interface" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Intervalle pour forcer l'envoi des mises à jour au fournisseur DDNS<br /> La " -"définition de ce paramètre sur 0 forcera le script à s'exécuter une seule " -"fois" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Intervalle pour forcer l'envoi des mises à jour au fournisseur DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Unité d'intervalle pour vérifier l'IP modifiée" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Unité d'intervalle pour forcer l'envoi des mises à jour au fournisseur DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"Il N'EST PAS recommandé aux utilisateurs non avertis de modifier les " -"paramètres sur cette page." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Dernière mise à jour" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Visualiseur de fichier de journa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Répertoire de journal" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Longueur du journal" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Connectez-vous au fichier" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Connectez-vous à syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Rechercher le nom d'hôte" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nom" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -467,7 +473,7 @@ msgstr "" "Ni GNU Wget avec SSL ni cURL installé pour sélectionner un réseau à utiliser " "pour la communication." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -475,226 +481,273 @@ msgstr "" "Ni GNU Wget avec SSL ni cURL installé pour prendre en charge les mises à " "jour sécurisées via le protocole HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Réseau" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "Réseau sur lequel les scripts ddns-updater seront démarrés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Jamais" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Nouveau service DDns…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Prochaine mise à jour" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "Pas de données" +msgstr "Aucune donnée" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Il n'y a aucun certificat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Pas de journaux" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "IP non publiques et par défaut bloquées" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Ne fonctionne pas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Remarque" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Nombre de dernières lignes stockées dans les fichiers journaux" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" "FACULTATIF: Force l'utilisation de la communication IPv4/IPv6 uniquement." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" "FACULTATIF: Forcez l'utilisation de TCP au lieu d'UDP par défaut sur les " "requêtes DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "FACULTATIF : Réseau à utiliser pour la communication" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPCIONAL : Servidor Proxy para detección y actualizaciones." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" "FACULTATIF : Utilisez un serveur DNS autre que celui par défaut pour " "détecter 'IP enregistrée'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" "En cas d'erreur, le script réessayera l'action ayant échoué après un délai " "donné" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" "En cas d'erreur, le script arrêtera l'exécution après un nombre donné de " "tentatives" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Paramètre codé en option" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Paramètre facultatif" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Facultatif: Remplace [PARAMENC] dans Update-URL (URL encodée)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "Facultatif: Remplace [PARAMOPT] dans Update-URL (NON codé URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Serveur proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Mot de passe" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Chemin vers le certificat CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Veuillez suivre les instructions sur la page d'accueil d'OpenWrt pour " "activer le support IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Veuillez appuyer sur le bouton [Lire]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Lire/Relire le fichier de journal" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Adresse IP enregistrée" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Recharger" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Recharger ce service" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Remplace [MOT DE PASSE] dans Update-URL (URL encodée)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Remplace [NON D'UTILISATEUR] dans Update-URL (URL encodée)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Redémarrer DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Exécuter une fois" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "En cours d'exécution" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Script" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Services" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Démarrez DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "État" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "État" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Répertoire d'état" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Arrêter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Arrêtez DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Arrêtez ce service" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Arrêté" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "Le paramètre par défaut de '0' réessayera à l'infini." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "Le nom du service est déjà utilisé" @@ -702,12 +755,12 @@ msgstr "Le nom du service est déjà utilisé" msgid "There is no service configured." msgstr "Il n'y a aucun service configuré" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Il s'agit du contenu actuel du fichier journal dans" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -715,84 +768,91 @@ msgstr "" "C'est la valeur par défaut si vous exécutez vous-même les scripts DDNS " "(c'est-à-dire via cron avec force_interval réglé sur '0')" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Ce sera automatiquement réglé sur l'interface sélectionnée" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Paramètres de la minuterie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "URL a détecter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Inconnue" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 -msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." msgstr "" "Mettre à jour l'URL à utiliser pour mettre à jour votre fournisseur DDNS." -"<br /> Suivez les instructions que vous trouverez sur leur page WEB." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 +msgid "" +"Url used to download services file. By default is the master openwrt ddns " +"package repo." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Utilisez HTTP Secure" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Utilisez cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "Script défini par l'utilisateur pour lire l'adresse IP des systèmes" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Nom d'utilisateur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Utilisation d'un serveur DNS spécifique non pris en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" "Les valeurs inférieures à 5 minutes == 300 secondes ne sont pas prises en " "charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" "Les valeurs inférieures à 'Vérifier l'intervalle' sauf '0' ne sont pas " "prises en charge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Vérifier" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Avertissement" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" "Écrit des messages détaillés dans le fichier journal. Le fichier sera " "tronqué automatiquement." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -800,7 +860,7 @@ msgstr "" "Écrit les messages de journal dans syslog. Les erreurs critiques seront " "toujours écrites dans syslog." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -809,7 +869,7 @@ msgstr "" "'hostip', si vous devez spécifier un serveur DNS pour détecter votre IP " "enregistrée." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -817,11 +877,11 @@ msgstr "" "Vous devez installer le package 'bind-host' ou 'knot-host' ou 'drill' pour " "les requêtes DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "Vous devez installer le paquet 'wget' ou 'curl' ou 'uclient-fetch'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -829,91 +889,128 @@ msgstr "" "Vous devez installer 'wget' ou 'curl' ou 'uclient-fetch' avec le paquet " "'libustream-* ssl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Vous devez installer le package «wget» ou «curl»." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" "Vous devez installer le paquet 'wget' ou 'uclient-fetch' ou remplacer " "libcurl." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" "cURL est installé, mais libcurl a été compilé sans prise en charge proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL sans prise en charge proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "personnalisé" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "jours" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "répertoire ou chemin/fichier" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "heures" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minutes" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "ou" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "ou mettez à jour votre système vers la dernière version d'OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "secondes" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "exécuter HTTPS sans vérification des certificats de serveur (non sécurisé)" -#~ msgid "Defines the Web page to read systems IP-Address from<br>" -#~ msgstr "Définit la page Web pour lire les Adresse IP système de<br>" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "Configurez ici les détails de tous les services DNS dynamiques, y compris " +#~ "cette application LuCI." -#~ msgid "Example for IPv4" -#~ msgstr "Exemple pour IPv4" +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "" +#~ "Définit la page Web à partir de laquelle lire l'adresse IP des " +#~ "systèmes<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Exemple pour de l'IPv4 : http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Exemple pour de l'IPv6 : http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Pour des informations détaillées sur les réglages des paramètres, " +#~ "regardez ici." -#~ msgid "Example for IPv6" -#~ msgstr "Exemple pour IPv6" +#~ msgid "Global Configuration" +#~ msgstr "Configuration globale" -#~ msgid "If this service section is disabled it could not be started." +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" #~ msgstr "" #~ "Si cette section de service est désactivée, elle n'a pas pu être démarrée." +#~ "<br /> Ni à partir de l'interface LuCI ni à partir de la console" -#~ msgid "Install 'ca-certificates' package or needed certificates" +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" #~ msgstr "" -#~ "Installer le package 'ca-certificates' ou les certificats nécessaires" +#~ "Intervalle pour forcer l'envoi des mises à jour au fournisseur DDNS<br /> " +#~ "La définition de ce paramètre sur 0 forcera le script à s'exécuter une " +#~ "seule fois" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "Intervalle pour forcer l'envoi des mises à jour au fournisseur DDNS" +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "Il N'EST PAS recommandé aux utilisateurs non avertis de modifier les " +#~ "paramètres sur cette page." -#~ msgid "Update URL to be used for updating your DDNS Provider." +#~ msgid "" +#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "instructions you will find on their WEB page." #~ msgstr "" #~ "Mettre à jour l'URL à utiliser pour mettre à jour votre fournisseur DDNS." +#~ "<br /> Suivez les instructions que vous trouverez sur leur page WEB." + +#~ msgid "Defines the Web page to read systems IP-Address from<br>" +#~ msgstr "Définit la page Web pour lire les Adresse IP système de<br>" + +#~ msgid "Install 'ca-certificates' package or needed certificates" +#~ msgstr "" +#~ "Installer le package 'ca-certificates' ou les certificats nécessaires" #~ msgid "&" #~ msgstr "&" @@ -965,9 +1062,6 @@ msgstr "" #~ "Suivez ce lien<br />Vous trouverez plus de conseils pour optimiser votre " #~ "système afin d'exécuter des scripts DDNS avec toutes les options" -#~ msgid "Global Settings" -#~ msgstr "Paramètres généraux" - #~ msgid "Hints" #~ msgstr "Conseils" diff --git a/applications/luci-app-ddns/po/he/ddns.po b/applications/luci-app-ddns/po/he/ddns.po index 47149995bd..740af410e4 100644 --- a/applications/luci-app-ddns/po/he/ddns.po +++ b/applications/luci-app-ddns/po/he/ddns.po @@ -2,641 +2,706 @@ 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" +"PO-Revision-Date: 2021-01-15 22:31+0000\n" +"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsddns/he/>\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" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "הגדרות מתקדמות" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 -msgid "Cancel" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 +msgid "Cancel" +msgstr "ביטול" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 -msgid "Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 -msgid "Configuration Error" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 +msgid "Configuration" +msgstr "הגדרות" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 +msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 #, fuzzy msgid "Custom update-URL" msgstr "עדכן URL באופן ידני" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS דינאמי" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" -msgstr "ממשק" +msgstr "מנשק" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "רשת" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "" +msgstr "אף פעם" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "סיסמא" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -644,169 +709,177 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "שם משתמש" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/hi/ddns.po b/applications/luci-app-ddns/po/hi/ddns.po index 295ca2d5cb..4a250b7252 100644 --- a/applications/luci-app-ddns/po/hi/ddns.po +++ b/applications/luci-app-ddns/po/hi/ddns.po @@ -4,630 +4,694 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -635,168 +699,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/hu/ddns.po b/applications/luci-app-ddns/po/hu/ddns.po index de9c84d305..da39a4d916 100644 --- a/applications/luci-app-ddns/po/hu/ddns.po +++ b/applications/luci-app-ddns/po/hu/ddns.po @@ -2,8 +2,8 @@ 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: 2020-03-28 04:46+0000\n" -"Last-Translator: Gergő Szalka <kisszalimo@gmail.com>\n" +"PO-Revision-Date: 2021-01-29 18:06+0000\n" +"Last-Translator: Axhyre <axhyre@gmail.com>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/hu/>\n" "Language: hu\n" @@ -11,38 +11,38 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "Biztonsági okokból a „../” nem engedélyezett az útvonalban." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Új szolgáltatások hozzáadása…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "Speciális beállítások" +msgstr "Haladó Beállítások" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Nem nyilvános IP-k engedélyezése" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Hálózat kötése" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Egy bizonyos hálózathoz való kötés nem támogatott" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -50,121 +50,132 @@ msgstr "" "A BusyBox nslookup és Wget parancsai nem támogatják azt, hogy meghatározza " "az IP verziót DDNS szolgáltatással való kommunikációra!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Mégse" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Ellenőrzési időköz" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Beállítás" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Beállítási hiba" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" -"Itt állítsa be a részleteket az összes dinamikus DNS-szolgáltatáshoz, " -"beleértve ezt a LuCI alkalmazást is." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Szolgáltatás létrehozása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Jelenlegi beállítás:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Jelenleg a DDNS frissítések nincsenek elindítva a rendszerindításkor vagy a " "csatolóeseményeknél." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" "A DDNS-szolgáltató frissítéséhez használt egyéni frissítési parancsfájl." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Egyéni frissítési URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Egyéni frissítő parancsfájl" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "A DDNS automatikus indítása letiltva" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "A DDNS automatikus indítása engedélyezve" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "DDNS-szolgáltató" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "DDns szolgáltatás" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "a TCP-n keresztüli DNS-kérések nem támogatottak" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS-kiszolgáló" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Dátumformátum" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" "Meghatározza azt a csatolót, amelyből a rendszerek IP-címeit olvasni kell" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" "Meghatározza azt a hálózatot, amelyből a rendszerek IP-címeit olvasni kell" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -172,117 +183,121 @@ msgstr "" "Meghatározza azt a forrást, amelyből a rendszerek IP-címeit olvasni kell, és " "amelyik elküldésre kerül a DDNS-szolgáltatónak" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" "Meghatározza, hogy mely „IPv4/IPv6” IP-cím legyen elküldve a DDNS-" "szolgáltatónak" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "A könyvtár naplófájlokat tartalmaz minden egyes futó szakaszhoz." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "A könyvtár folyamatazonosítókat és egyéb állapotinformációkat tartalmaz " "minden egyes futó szakaszhoz." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Letiltva" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Tartomány" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dinamikus DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Dinamikus DNS verziója" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Szerkesztés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Biztonságos kommunikáció engedélyezése a DDNS-szolgáltatóval" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Engedélyezve" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Hiba" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Hiba újrapróbálási számláló" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Hiba újrapróbálási időköze" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Eseményhálózat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Példa IPv4-re: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Példa az IPv4-hez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Példa IPv6-ra: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Példa az IPv6-hoz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Fájl" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -"A paraméterbeállításokkal kapcsolatos részletes információkért nézzen ide." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "A támogatott kódokért nézzen ide" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "IP-verzió kényszerítése" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Az IP verziójának kényszerítése nem támogatott" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Kényszerítés időköze" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "TCP kényszerítése a DNS-en" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Formátum" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Formátum: IP vagy FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." @@ -290,51 +305,54 @@ msgstr "" "A GNU Wget az adott hálózat IP-jét fogja használni, a cURL a fizikai " "csatolót fogja használni." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Globális beállítások" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "A HTTPS nem támogatott" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "Ellenőrzendő gépnév vagy FQDN, ha IP-frissítés történik vagy szükséges" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP-cím forrása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "IP-cím verziója" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4-cím" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Az IPv6-címet szögletes zárójelben kell megadni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "Ez a rendszer jelenleg nem (teljesen) támogatja az IPv6-ot" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "Az IPv6 nem támogatott" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6-cím" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -342,109 +360,105 @@ msgstr "" "Ha a Wget és a cURL csomag is telepítve van, akkor alapértelmezetten a Wget " "lesz használva a kommunikációnál." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" +"Ha ez a szolgáltatási szakasz le van tiltva, akkor azt nem sikerült " +"elindítani." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Biztonságos kommunikáció használatakor ellenőriznie kell a kiszolgáló " "tanúsítványait!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" "Az OpenWrt-ben lévő cURL/libcurl néhány verziója proxy-támogatás nélkül lett " "lefordítva." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Információ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Információ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Csatoló" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Időköz a DDNS-szolgáltatónak küldött frissítések kényszerítéséhez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Időköz mértékegysége a megváltozott IP ellenőrzéséhez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Időköz mértékegysége a DDNS-szolgáltatónak küldött frissítések " "kényszerítéséhez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"NEM ajánlott az alkalmi felhasználóknak a beállítások megváltoztatása ezen " -"az oldalon." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Utolsó frissítés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Naplófájl-megjelenítő" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Naplókönyvtár" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Napló hossza" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Naplózás fájlba" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Naplózás a rendszernaplóba" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Gépnév keresése" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Név" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -452,7 +466,7 @@ msgstr "" "Sem az SSL-lel rendelkező GNU Wget, sem a cURL nincs telepítve a " "kommunikációhoz használandó hálózat kiválasztásához." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -460,232 +474,279 @@ msgstr "" "Sem az SSL-lel rendelkező GNU Wget, sem a cURL nincs telepítve a HTTPS " "protokollon keresztüli biztonságos frissítések támogatásához." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Hálózat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "A hálózat, amelyen a DDNS-frissítő parancsfájlok el fognak indulni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Soha" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Új DDNS szolgáltatás…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Következő frissítés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Nincs adat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Nem találhatók tanúsítványok" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Nincs naplózás" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "Nem nyilvános és alapértelmezetten blokkolt IP-k" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Nem fut" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Figyelmeztetés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "A naplófájlokban tárolt utolsó sorok száma" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" "ELHAGYHATÓ: a tisztán csak IPv4/IPv6 kommunikáció használatának " "kényszerítése." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" "ELHAGYHATÓ: TCP használatának kényszerítése az alapértelmezett UDP helyett a " "DNS-kéréseknél." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "ELHAGYHATÓ: a kommunikációhoz használandó hálózat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "ELHAGYHATÓ: proxy-kiszolgáló a felismeréshez és a frissítésekhez." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" "ELHAGYHATÓ: nem alapértelmezett DNS-kiszolgáló használata a „Regisztrált IP” " "felismeréséhez." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" "Hiba esetén a parancsfájl újrapróbálja a sikertelen műveletet a megadott idő " "után" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" "Hiba esetén a parancsfájl leállítja a végrehajtást a megadott " "újrapróbálkozások száma után" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Elhagyható kódolt paraméterek" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Elhagyható paraméter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" "Elhagyható: lecseréli a [PARAMENC] értéket a frissítési URL-ben (URL-" "kódoltan)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" "Elhagyható: lecseréli a [PARAMOPT] értéket a frissítési URL-ben (NEM URL-" "kódoltan)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Proxy-kiszolgáló" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Jelszó" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Útvonal a CA-tanúsítványhoz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Kövesse az OpenWrt honlapján lévő utasításokat az IPv6 támogatás " "engedélyezéséhez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Nyomja meg a [Beolvasás] gombot" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Naplófájl olvasása vagy újraolvasása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Regisztrált IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Újratöltés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "A szolgáltatás újratöltése" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Lecseréli a [JELSZÓ] értéket a frissítési URL-ben (URL-kódoltan)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" "Lecseréli a [FELHASZNÁLÓNÉV] értéket a frissítési URL-ben (URL-kódoltan)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "DDns újraindítása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Futtatás egyszer" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Fut" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Parancsfájl" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Szolgáltatások" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "DDNS indítása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Állapot" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Állapot" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Állapotkönyvtár" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Leállítás" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "DDNS leállítása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "A szolgáltatás leállítása" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Leállítva" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "Az alapértelmezett „0” beállítás végtelenszer fog újrapróbálkozni." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "A szolgáltatás neve már használatban van" @@ -693,12 +754,12 @@ msgstr "A szolgáltatás neve már használatban van" msgid "There is no service configured." msgstr "Nincs beállított szolgáltatás." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Ez a naplófájl jelenlegi tartalma ebben:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -706,81 +767,89 @@ msgstr "" "Ez az alapértelmezett, ha saját maga futtatja a DDNS parancsfájlokat (azaz " "cron használatával „0” értékre állított force_interval beállítással)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Ez automatikusan be lesz állítva a kiválasztott csatolóhoz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Időzítő beállításai" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "Felismerendő URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Ismeretlen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "A használandó frissítési URL a DDNS-szolgáltató frissítéséhez." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "HTTP biztonság használata" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "cURL használata" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" "Felhasználó által meghatározott parancsfájl a rendszerek IP-címének " "olvasásához" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Felhasználónév" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Bizonyos DNS-kiszolgáló használata nem támogatott" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Az 5 perc == 300 másodperc alatti értékek nem támogatottak" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" "Az „Ellenőrzési időköz” értékénél alacsonyabb értékek a „0” kivételével nem " "támogatottak" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Ellenőrzés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Figyelmeztetés" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" "Részletes üzeneteket ír a naplófájlba. A fájl automatikusan csonkolva lesz." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -788,13 +857,13 @@ msgstr "" "Kiírja a naplóüzeneteket a rendszernaplóba. A kritikus hibák mindig a " "rendszernaplóba lesznek írva." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -802,11 +871,11 @@ msgstr "" "Telepítenie kell a „bind-host”, a „knot-host” vagy a „drill” csomagot a DNS-" "kérésekhez." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "Telepítenie kell a „wget”, a „curl” vagy az „uclient-fetch” csomagot." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -814,69 +883,95 @@ msgstr "" "Telepítenie kell a „wget”, a „curl” vagy a „libustream-*ssl” csomaggal " "rendelkező „uclient-fetch” csomagot." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Telepítenie kell a „wget” vagy a „curl” csomagot." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" "Telepítenie kell a „wget” vagy az „uclient-fetch” csomagot, vagy cserélje le " "a „libcurl” csomagot." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" "A cURL telepítve van, de a libcurl proxy-támogatás nélkül lett lefordítva." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL proxy-támogatás nélkül" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "egyéni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "nap" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "könyvtár vagy útvonal/fájl" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "óra" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "perc" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "vagy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "vagy frissítse a rendszerét a legújabb OpenWrt kiadásra" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "másodperc" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "HTTPS futtatásához a kiszolgáló tanúsítványainak ellenőrzése nélkül (nem " "biztonságos)" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "Itt állítsa be a részleteket az összes dinamikus DNS-szolgáltatáshoz, " +#~ "beleértve ezt a LuCI alkalmazást is." + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Példa IPv4-re: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Példa IPv6-ra: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "A paraméterbeállításokkal kapcsolatos részletes információkért nézzen ide." + +#~ msgid "Global Configuration" +#~ msgstr "Globális beállítások" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "NEM ajánlott az alkalmi felhasználóknak a beállítások megváltoztatása " +#~ "ezen az oldalon." + #~ msgid "BusyBox's nslookup and Wget do not support to specify" #~ msgstr "A BusyBox nslookup és Wget programjai nem támogatják a megadását" @@ -892,27 +987,10 @@ msgstr "" #~ msgstr "" #~ "Meghatározza azt a weboldalt, amelyből a rendszerek IP-címeit olvasni kell" -#~ msgid "Example for IPv4" -#~ msgstr "Példa az IPv4-hez" - -#~ msgid "Example for IPv6" -#~ msgstr "Példa az IPv6-hoz" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "" -#~ "Ha ez a szolgáltatási szakasz le van tiltva, akkor azt nem sikerült " -#~ "elindítani." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "" #~ "Telepítse a „ca-certificates” csomagot vagy a szükséges tanúsítványokat" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "Időköz a DDNS-szolgáltatónak küldött frissítések kényszerítéséhez" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "A használandó frissítési URL a DDNS-szolgáltató frissítéséhez." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," diff --git a/applications/luci-app-ddns/po/it/ddns.po b/applications/luci-app-ddns/po/it/ddns.po index e1098e9f35..1a673add64 100644 --- a/applications/luci-app-ddns/po/it/ddns.po +++ b/applications/luci-app-ddns/po/it/ddns.po @@ -2,8 +2,8 @@ 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: 2020-03-09 14:34+0000\n" -"Last-Translator: Ansuel Smith <ansuelsmth@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Omar Destefani <omar.destefani@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/it/>\n" "Language: it\n" @@ -11,38 +11,38 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "\"../\" non è permesso nel percorso per Motivi di Sicurezza." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Aggiungi un nuovo servizio..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Impostazioni Avanzate" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Consenti IP non pubblici" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Opzioni di Base" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Collega Rete" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Collegamento a una specifica rete non supportato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -50,7 +50,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -58,7 +58,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -66,108 +66,119 @@ msgstr "" "Nslookup di BusyBox nella versione compilata corrente non gestisce i dati " "Server DNS correttamente!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Annulla" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Intervallo di Controllo" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configurazione" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Errore di Configurazione" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -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/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Crea Servizio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Impostazioni Correnti:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Al momento gli aggiornamenti DDNS non sono avviati al boot o ad eventi da " "interfacce." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 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/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "URL di aggiornamento personalizzato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Script di aggiornamento personalizzato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Autoavvio DDNS disabilitato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "AutoAvvio DDNS attivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Provider del Servizio DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Servizio DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Richieste DNS via TCP non supportate" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Server DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Formato Data" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 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/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Definisce la rete da cui leggere l'IP-Address del sistema" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -175,165 +186,173 @@ msgstr "" "Definisce la sorgente da cui leggere l'IP-Address del sistema, questa verrà " "inviata al provider DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 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/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "Cartella che contiene i file Log di ogni sezione in esecuzione." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "Cartella che contiene i PID e altre informazioni di status di ogni sezione " "in esecuzione." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Disabilitato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Dominio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS Dinamico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Versione DNS Dinamico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Modifica" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Abilita la comunicazione sicura con il provider DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Abilitato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Errore" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Conteggio errore di riprova" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Intervallo errore di riprova" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Network Evento" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Esempio di IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Esempio di IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "File" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "Per informazioni dettagliate sui parametri opzionali guarda qui." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Per i codici supportati guarda qui" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Forza Versione IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Forza Versione IP non supportato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Forza Intervallo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Forza TCP su DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Formato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Formato: IP o FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 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/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Configurazione Globale" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Impostazioni globali" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS non supportato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 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/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Sorgente indirizzo IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Versione indirizzo IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Indirizzo-IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Indirizzo IPv6 deve essere dato con le parentesi quadre" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "IPv6 non è ancora (completamente) supportata da questo sistema" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 non supportato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Indirizzo-IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -341,41 +360,37 @@ msgstr "" "Se i pacchetti Wget e cURL sono installati, Wget è usato per la " "comunicazione in modo predefinito." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Se questa sezione del servizio è disattivata non può essere avviata." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 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/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 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/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Informazioni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Informazioni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -383,68 +398,64 @@ msgstr "" "Installa il pacchetto 'ca-certificates' o i certificati necessari a mano " "nella directory di default /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interfaccia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Intervallo per mandare un aggiornamento forzato al provider DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Unità dell'intervallo di controllo per il cambio di IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Unità dell'intervallo per l'invio forzato di aggiornamento al provider DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -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/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Ultimo Aggiornamento" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Visualizzatore Registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Directory registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Lunghezza registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Registra su file" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Registra su syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Indirizzo da consultare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nome" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -452,7 +463,7 @@ msgstr "" "Nè GNU Wget con SSL nè cURL installati per selezionare una rete da usare per " "comunicazione." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -460,223 +471,270 @@ msgstr "" "Nè GNU Wget con SSL nè cURL installati per supportare aggiornamenti sicuri " "via protocollo HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Rete" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 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/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Mai" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Nuovo Servizio DDns…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Prossimo Aggiornamento" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "No Dati" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Nessun certificato trovato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Nessun registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "Ip non pubblici e bloccati di default" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Non in esecuzione" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" -msgstr "Avviso" +msgstr "Notizia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Numero di ultime linee memorizzato nei file registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 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/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 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/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "OPZIONALE: Rete da usare per comunicazione" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPZIONALE: Server Proxy per rivelazioni e aggiornamenti." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 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/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 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/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 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/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Parametro Codificato Opzionale" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Parametro Opzionale" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" "Opzionale: Sostituisci [PARAMENC] nell'URL di aggiornamento (URL codificato)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 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/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Server PROXY" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Password" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Percorso per Certificato CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Per favore segui le istruzioni sulla homepage di OpenWrt per abilitare il " "supporto all'IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Per favore premi il pulsante [Leggi]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Leggi / Rileggi registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "IP Registrato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Aggiorna" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Aggiorna questo servizio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Sostituisci [PASSWORD] nell'URL di aggiornamento (URL codificato)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Sostituisci [NOME UTENTE] nell'URL di aggiornamento (URL codificato)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Riavvia DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Esegui una volta" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "In esecuzione" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Script" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Servizi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Avvia DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Stato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Stato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Stato cartella" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Arresta" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Arresta DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Arresta questo servizio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Fermato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "L'opzione di default '0' riproverà all'infinito." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "Questo nome per il servizio è già usato" @@ -684,12 +742,12 @@ msgstr "Questo nome per il servizio è già usato" msgid "There is no service configured." msgstr "Non c'è un servizio configurato." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Questo è il contenuto corrente del file log in" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -697,82 +755,88 @@ msgstr "" "Questo è predefinito se avvii gli script DDNS da solo (p.e via cron con " "force_interval settato a '0')" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Questo sarà settato automaticamente sulla interfaccia selezionata" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Impostazioni del Timer" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "URL da individuare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Sconosciuto" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "URL di aggiornamento usato per aggiornare il tuo Provider DDNS." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." 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/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Usa HTTP Sicuro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Usa cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 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/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" -msgstr "Nome Utente" +msgstr "Nome utente" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Usare specifici Server DNS non supportato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Valori inferiori a 5 minuti == 300 secondi non sono supportati" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" "Valori inferiori al 'Check Interval' (Intervallo di Check) eccetto '0' non " "sono supportati" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Verifica" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Allarme" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 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/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -780,7 +844,7 @@ msgstr "" "Scrivi i messaggi registro al syslog. Gli Errori Critici saranno sempre " "scritti sul syslog." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -789,7 +853,7 @@ msgstr "" "'hostip', se hai bisogno di specificare un server DNS che identifichi il tuo " "IP registrato." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -797,11 +861,11 @@ msgstr "" "Dovresti installare il pacchetto 'bind-host' o 'knot-host' o 'drill' per le " "richieste DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 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/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -809,67 +873,100 @@ msgstr "" "Dovresti installare il pacchetto 'wget' o 'curl' o 'uclient-fetch' con il " "pacchetto 'libustream-*ssl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Dovresti installare il pacchetto 'wget' o 'curl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 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/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "cURL è installato, ma libcurl è compilato senza supporto proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL senza Supporto Proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "personalizzato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "giorni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "directory o percorso/file" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "ore" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minuti" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "o" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "o aggiorna il tuo sistema all'ultima Release Openwrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "secondi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "per eseguire HTTPS senza la verifica dei certificati del server (insicuro)" +#~ 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." + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "Per informazioni dettagliate sui parametri opzionali guarda qui." + +#~ msgid "Global Configuration" +#~ msgstr "Configurazione Globale" + +#~ 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" + +#~ 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." + +#~ 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." + #~ msgid "BusyBox's nslookup and Wget do not support to specify" #~ msgstr "Nslookup di Busybox e Wget non supportano la specifica" @@ -883,25 +980,9 @@ msgstr "" #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "Definisce la pagina Web da cui leggere l'IP-Address del sistema" -#~ msgid "Example for IPv4" -#~ msgstr "Esempio di IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Esempio di IPv6" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "" -#~ "Se questa sezione del servizio è disattivata non può essere avviata." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "Installa il pacchetto 'ca-certificates' o i certificati necessari" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "Intervallo per mandare un aggiornamento forzato al provider DDNS" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "URL di aggiornamento usato per aggiornare il tuo Provider DDNS." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," @@ -1026,9 +1107,6 @@ msgstr "" #~ msgid "Forced IP Version don't matched" #~ msgstr "La Versione IP forzata non corrisponde" -#~ msgid "Global Settings" -#~ msgstr "Opzioni Globali" - #~ msgid "Hints" #~ msgstr "Suggerimenti" diff --git a/applications/luci-app-ddns/po/ja/ddns.po b/applications/luci-app-ddns/po/ja/ddns.po index 131bcc7532..73fe709a80 100644 --- a/applications/luci-app-ddns/po/ja/ddns.po +++ b/applications/luci-app-ddns/po/ja/ddns.po @@ -2,7 +2,7 @@ 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: 2020-06-27 14:41+0000\n" +"PO-Revision-Date: 2021-02-06 08:29+0000\n" "Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/ja/>\n" @@ -11,635 +11,735 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "セキュリティ上の理由でパスで「../」を使用できません。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "新規サービスを追加..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "詳細設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" -msgstr "非公開の IP を許可" +msgstr "非パブリック IP を許可" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "基本設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "ネットワークをバインド" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "特定のネットワークへのバインドはサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" msgstr "" -"BusyBox の nslookup と wget は、DDNS プロバイダーとの通信に使用する IP のバージョン指定をサポートしていません。" +"BusyBox の nslookup と wget は、DDNS プロバイダーとの通信に使用する IP のバー" +"ジョン指定をサポートしていません!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" msgstr "" -"BusyBox の nslookup と hostip は、DNSサーバーをリクエストする際にデフォルトの UDP の代わりに TCP " -"を使用する指定をサポートしていません。" +"BusyBox の nslookup と hostip は、DNSサーバーをリクエストする際にデフォルト" +"の UDP の代わりに TCP を使用する指定をサポートしていません!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" -msgstr "現在のコンパイル済バージョンの BusyBox の nslookup は、指定された DNS サーバーを正しく処理しません。" +msgstr "" +"現在のコンパイル済バージョンの BusyBox の nslookup は、指定された DNS サー" +"バーを正しく処理しません!" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "CA 証明書パス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"サービスデータをダウンロードするために使用される CA 証明書のパスです。証明書" +"の検証をスキップするには IGNORE を設定します。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "キャンセル" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "チェック間隔" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "チェックの単位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "サービスのサポートをチェック中..." + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "構成エラー" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "ここでは、この LuCI アプリケーションを含むすべての DDNS サービスの詳細を構成します。" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "サービスを作成" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "現在の設定 :" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" +"現在、 DDNS のアップデートはブート時またはインターフェース イベント時に開始さ" +"れません。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." -msgstr "DDNS プロバイダーの更新に使用するカスタム更新スクリプトです。" +msgstr "DDNS プロバイダーの更新に使用されるカスタム更新スクリプトです。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "手動アップデート-URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "カスタム更新スクリプト" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "DDNS 自動開始が無効" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "DDNS 自動開始が有効" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "DDNS サービス・プロバイダー" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "DDNS サービス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "TCP 経由の DNS リクエストはサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS サーバー" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "日付形式" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "システムの IP アドレス読み取り元の Webページ を定義<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "システムの IP アドレスを読み取る Web ページを定義します。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "システムの IP アドレス読み取り元のインターフェースを定義 :" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "システムの IP アドレス読み取り元のネットワークを定義 :" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" -msgstr "システムの IP アドレス読み取り元を定義します。それは、DDNS プロバイダーに送信されます。" +msgstr "" +"システムのIPアドレス読み取り元を定義します。それは、DDNS プロバイダーに送信さ" +"れます" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "DDNS プロバイダーに送信される IP アドレス「IPv4/IPv6」を定義" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." -msgstr "" +msgstr "実行中の各セクションのログファイルを含むディレクトリです。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" +"実行中の各セクションの PID とその他のステータス情報を含むディレクトリです。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "無効" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "ドメイン" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "ダイナミックDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "DDNS のバージョン" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "編集" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "DDNS プロバイダーとの安全な通信を有効にする" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "有効" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "エラー" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "エラー再試行カウンター" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "エラー再試行間隔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" -msgstr "" +msgstr "イベント ネットワーク" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "IPv4 の例: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "IPv4 の例" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "IPv6 の例: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "IPv6 の例" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "ファイル" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "パラメーター設定について詳しくはこちらをご覧ください。" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "プロバイダーの Web ページにある使用方法に従ってください。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "サポートされているコードについては、こちらをご覧ください" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" -msgstr "" +msgstr "IP バージョンの強制" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" -msgstr "" +msgstr "IP バージョンの強制はサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" -msgstr "" +msgstr "強制の間隔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "DNS で TCP を強制" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "強制の単位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "形式" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "形式: IP または FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." -msgstr "GNU wget は指定されたネットワークの IP を使用し、cURL は物理インターフェースを使用します。" +msgstr "" +"GNU wget は指定されたネットワークの IP を使用し、cURL は物理インターフェース" +"を使用します。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "グローバル構成" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "全体設定" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "ddnsプロシージャへのアクセスを許可" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS はサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" -msgstr "" +msgstr "IP 更新が発生した、または必要な場合に検証するホスト名または FQDN です" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" -msgstr "" +msgstr "IP アドレス読み取り元" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "IP アドレスのバージョン" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" -msgstr "IPv4 アドレス" +msgstr "IPv4アドレス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" -msgstr "" +msgstr "IPv6 アドレスは角括弧内に記述される必要があります" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" +"IPv6 は現在このシステムによってサポートされていないか、完全ではありません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 はサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" -msgstr "IPv6 アドレス" +msgstr "IPv6アドレス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." -msgstr "wget および cURL パッケージがインストールされている場合、通信にはデフォルトで wget が使用されます。" +msgstr "" +"wget および cURL パッケージがインストールされている場合、通信にはデフォルト" +"で wget が使用されます。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "" +"このサービスセクションが無効化されている場合、セクションは開始されることがで" +"きません。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" -msgstr "安全な通信を使用する場合は、サーバー証明書を検証する必要があります。" +msgstr "安全な通信を使用する場合は、サーバー証明書を検証する必要があります!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." -msgstr "一部のバージョンでは、OpenWrt の cURL/libcurl は、プロキシ・サポートなしでコンパイルされます。" +msgstr "" +"一部のバージョンでは、OpenWrt の cURL/libcurl は、プロキシ・サポートなしでコ" +"ンパイルされます。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "情報" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "情報" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "更新スクリプトを挿入または URL を更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 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/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "サービスをインストール" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "インターフェース" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "DDNS プロバイダーに送信する強制アップデートの間隔です" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "変更された IP のチェック間隔の単位" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" -msgstr "" +msgstr "DDNS プロバイダーに送信する強制アップデートの間隔の単位です" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "最終更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "ログファイル・ビューア" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "ログ・ディレクトリ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "ログの長さ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "ファイルへログを記録" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "syslog へログを記録" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" -msgstr "ホスト名をルックアップ" +msgstr "ルックアップするホスト名" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "名前" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 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/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" +"HTTPS プロトコルを介したセキュアなアップデートをサポートするための、 SSL をサ" +"ポートする GNU Wget または cURL のどちらもインストールされていません。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" +"LuCI インターフェースから、またはコンソールからのどちらだとしてもです。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "ネットワーク" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "ddns-updater スクリプトが開始されるネットワーク" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "無し" +msgstr "なし" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "新規 DDNS サービス…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "次の更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "データがありません" +msgstr "データなし" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "証明書が見つかりません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "ログを記録しない" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" -msgstr "" +msgstr "非パブリックかつデフォルトでブロックされる IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "実行されていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "注意" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" -msgstr "" +msgstr "ログファイルに保存される行数です" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." -msgstr "" +msgstr "オプション: IPv4/IPv6 に限定した純粋な通信の使用を強制します。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" +"オプション: DNS リクエストにおいて、デフォルトの UDP に代わって TCP の使用を" +"強制します。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "オプション : 通信に使用するネットワーク" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." -msgstr "" +msgstr "オプション: 検出とアップデートに使用するプロキシ サーバーです。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" +"オプション: 登録済み IP の検出に非デフォルトの DNS サーバーを使用します。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" +"エラーの場合、スクリプトは指定された時間が経過すると失敗したアクションを再試" +"行します" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" -msgstr "" +msgstr "指定された再試行回数後のスクリプトのエラーで実行を停止します" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" -msgstr "" +msgstr "エンコードされたパラメーター(オプション)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" -msgstr "" +msgstr "パラメーター(オプション)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" +"オプション: 更新 URL 内の [PARAMENC] を置き換えます(URL エンコードされたも" +"の)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" +"オプション: 更新 URL 内の [PARAMOPT] を置き換えます(URL エンコードされていな" +"いもの)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "プロキシ・サーバー" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "パスワード" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" -msgstr "CA 証明書へのパス" +msgstr "CA証明書のパス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" -msgstr "IPv6 サポートを有効にするには、OpenWrt のホームページの指示に従ってください" +msgstr "" +"IPv6 サポートを有効にするには、OpenWrt のホームページの指示に従ってください" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "[読込] ボタンを押してください" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "ログファイルの読み込み/再読み込み" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "本当にサービスを切り替えますか?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "登録済み IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "リロード" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "このサービスをリロード" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 -msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 +msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" +msgstr "更新 URL 内の [PASSWORD] を置き換えます(URL エンコードされたもの)" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" -msgstr "" +msgstr "更新 URL 内の [USERNAME] を置き換えます(URL エンコードされたもの)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "DDNS を再起動" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "再試行の単位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" -msgstr "" +msgstr "一度のみ実行" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "実行中" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "スクリプト" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "サービスを選択" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "サービスはこの IP タイプをサポートしていません" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "サービスがインストールされていません" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "サービス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "サービスダウンロード URL" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "サービスリスト最終更新" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "このパラメーターを 0 に設定すると、一度のみ実行を強制します。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "DDNS を開始" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "状態" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "ステータス" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" -msgstr "" +msgstr "ステータス ディレクトリ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "DDNS を停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "このサービスを停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "停止済" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "サービスを切り替える" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "デフォルトのゼロを設定すると、無限に再試行します。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "サービス名はすでに使用されています" @@ -647,174 +747,228 @@ msgstr "サービス名はすでに使用されています" msgid "There is no service configured." msgstr "構成済のサービスはありません。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" msgstr "" +"もしユーザー自身で DDNS スクリプトを実行する場合、これがデフォルトです(例: " +"force_interval を '0' に設定して cron で)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "これは選択したインターフェースに自動設定されます" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "タイマー設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "検出する URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "不明" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "DDNS サービスリストを更新" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" +"DDNS プロバイダーをアップデートするために使用されるアップデート URL です。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" +"サービスファイルのダウンロードに使用される URL です。デフォルトでは OpenWrt " +"の DDNS パッケージリポジトリ(master)です。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" -msgstr "" +msgstr "HTTPS の使用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "cURL を使用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "システムの IP アドレスを読み取るユーザー定義スクリプト" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "ユーザー名" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "特定の DNS サーバーの使用はサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "5分 (300秒) 未満の値はサポートされていません" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "チェック間隔より小さい値はサポートされていません(ゼロを除く)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "検証" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "警告" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." -msgstr "詳細メッセージをログファイルに書き込みます。 ファイルは自動的に切り捨てられます。" +msgstr "" +"詳細メッセージをログファイルに書き込みます。 ファイルは自動的に切り捨てられま" +"す。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." -msgstr "ログメッセージを syslog に書き込みます。 重大なエラーは常に syslog に書き込まれます。" +msgstr "" +"ログメッセージを syslog に書き込みます。 重大なエラーは常に syslog に書き込ま" +"れます。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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 "" -"登録済 IP を検出するため DNS サーバーを指定する必要がある場合は、bind-host、knot-host、drill または hostip " -"パッケージをインストールする必要があります。" +"登録済 IP を検出するため DNS サーバーを指定する必要がある場合は、bind-host、" +"knot-host、drill または hostip パッケージをインストールする必要があります。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." -msgstr "DNS リクエストするには、bind-host、knot-host または drill パッケージをインストールする必要があります。" +msgstr "" +"DNS リクエストするには、bind-host、knot-host または drill パッケージをインス" +"トールする必要があります。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." -msgstr "wget、curl または uclient-fetch パッケージをインストールする必要があります。" +msgstr "" +"wget、curl または uclient-fetch パッケージをインストールする必要があります。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -"libustream-*ssl パッケージとともに wget、curl または uclient-fetch パッケージをインストールする必要があります。" +"libustream-*ssl パッケージとともに wget、curl または uclient-fetch パッケージ" +"をインストールする必要があります。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "wget または curl パッケージをインストールする必要があります。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." -msgstr "wget または uclient-fetch パッケージをインストールするか、または libcurl を置き換える必要があります。" +msgstr "" +"wget または uclient-fetch パッケージをインストールするか、または libcurl を置" +"き換える必要があります。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." -msgstr "cURL はインストール済ですが、libcurl はプロキシ・サポートなしでコンパイルされています。" +msgstr "" +"cURL はインストール済ですが、libcurl はプロキシ・サポートなしでコンパイルされ" +"ています。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "プロキシ・サポートなしの cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "カスタム" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" -msgstr "" +msgstr "日数" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "ディレクトリまたはパス/ファイル" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "時間" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "分" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "または" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "またはシステムを最新の OpenWrt リリースに更新します" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "秒" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" -msgstr "" +msgstr "サーバー証明書の検証なしにHTTPSを実行する(安全ではありません)" + +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "ここでは、この LuCI アプリケーションを含むすべての DDNS サービスの詳細を構" +#~ "成します。" + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "システムの IP アドレス読み取り元の Webページ を定義<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "IPv4 の例: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "IPv6 の例: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "パラメーター設定について詳しくはこちらをご覧ください。" + +#~ msgid "Global Configuration" +#~ msgstr "グローバル構成" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "このサービス・セクションが無効の場合、<br />LuCI インターフェースおよびコ" +#~ "ンソールのどちらからも開始できません" #~ msgid "" #~ "Dynamic DNS allows that your router can be reached with a fixed hostname " diff --git a/applications/luci-app-ddns/po/ko/ddns.po b/applications/luci-app-ddns/po/ko/ddns.po index ba8cea9950..2904e16378 100644 --- a/applications/luci-app-ddns/po/ko/ddns.po +++ b/applications/luci-app-ddns/po/ko/ddns.po @@ -1,633 +1,703 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-06-07 10:49+0000\n" +"Last-Translator: Sunggu Choi <dkaost@outlook.com>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsddns/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "고급 설정" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" -msgstr "" +msgstr "기본 설정" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 -msgid "Cancel" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 +msgid "Cancel" +msgstr "취소" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 -msgid "Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 -msgid "Configuration Error" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 +msgid "Configuration" +msgstr "설정" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 +msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" -msgstr "" +msgstr "활성화" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 -msgid "Interface" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 +msgid "Interface" +msgstr "인터페이스" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "" +msgstr "안함" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -635,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/mr/ddns.po b/applications/luci-app-ddns/po/mr/ddns.po index 570fec0922..f9dab4a94b 100644 --- a/applications/luci-app-ddns/po/mr/ddns.po +++ b/applications/luci-app-ddns/po/mr/ddns.po @@ -10,630 +10,694 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "प्रगत सेटिंग्ज" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "रद्द करा" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "कॉन्फिगरेशन" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "अक्षम" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "सक्षम केले" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "इंटरफेस" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "नाव" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "संकेतशब्द" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "रीलोड करा" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "चालू आहे" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "सेवा" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "स्थिती" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "स्थिती" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "थांबा" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "बंद" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -641,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "अज्ञात" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "वापरकर्तानाव" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/ms/ddns.po b/applications/luci-app-ddns/po/ms/ddns.po index 7733643084..78d65af169 100644 --- a/applications/luci-app-ddns/po/ms/ddns.po +++ b/applications/luci-app-ddns/po/ms/ddns.po @@ -1,633 +1,703 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-03-31 12:26+0000\n" +"Last-Translator: Faruki Ramly <farukiramly45@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsddns/ms/>\n" "Language: ms\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Tetapan Lanjutan" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 -msgid "Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 -msgid "Configuration Error" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 +msgid "Configuration" +msgstr "Konfigurasi" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 +msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -635,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/nb_NO/ddns.po b/applications/luci-app-ddns/po/nb_NO/ddns.po index 968c3fd540..c73d6e2268 100644 --- a/applications/luci-app-ddns/po/nb_NO/ddns.po +++ b/applications/luci-app-ddns/po/nb_NO/ddns.po @@ -2,641 +2,705 @@ 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-11-20 17:07+0000\n" -"Last-Translator: Ole Solbakken <oinnselset@gmail.com>\n" +"PO-Revision-Date: 2021-03-27 15:30+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" "Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/nb_NO/>\n" -"Language: no\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Avanserte innstillinger" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 -msgid "Cancel" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 +msgid "Cancel" +msgstr "Avbryt" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 -msgid "Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 -msgid "Configuration Error" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 +msgid "Configuration" +msgstr "Oppsett" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 +msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Egendefinert oppdaterings-URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" -msgstr "" +msgstr "Avskrudd" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domene" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dynamisk DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" -msgstr "Aktivert" +msgstr "Påskrudd" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" -msgstr "" +msgstr "Fil" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" -msgstr "" +msgstr "Info" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" -msgstr "" +msgstr "Info" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Grensesnitt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" -msgstr "" +msgstr "Navn" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Nettverk" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Passord" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" -msgstr "" +msgstr "Last inn igjen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" -msgstr "" +msgstr "Kjører" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" -msgstr "" +msgstr "Tilstand" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" -msgstr "" +msgstr "Status" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" -msgstr "" +msgstr "Stopp" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -644,169 +708,177 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Brukernavn" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/pl/ddns.po b/applications/luci-app-ddns/po/pl/ddns.po index b6ee26668c..7d0768f182 100644 --- a/applications/luci-app-ddns/po/pl/ddns.po +++ b/applications/luci-app-ddns/po/pl/ddns.po @@ -2,8 +2,8 @@ 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: 2020-06-17 18:41+0000\n" -"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" +"Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/pl/>\n" "Language: pl\n" @@ -12,54 +12,54 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "„../” jest niedozwolone ze względów bezpieczeństwa." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Dodaj nowe usługi..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Zezwalaj na niepubliczne IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Podstawowe ustawienia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Powiąż sieć" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Powiązanie z określoną siecią nie jest obsługiwane" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" msgstr "" -"BusyBox nslookup i Wget nie obsługują określenia wersji IP, która ma być " +"nslookup i Wget BusyBox nie obsługują określenia wersji IP, która ma być " "używana do komunikacji z dostawcą DDNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" msgstr "" -"Nslookup i hostip BusyBox nie obsługują określania, czy podczas żądania " -"serwera DNS należy używać TCP zamiast domyślnego UDP!" +"nslookup i hostip BusyBox nie obsługują określenia, czy używać TCP zamiast " +"domyślnego UDP podczas żądania serwera DNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -67,108 +67,121 @@ msgstr "" "Nslookup BusyBox w bieżącej skompilowanej wersji nie obsługuje poprawnie " "podanych serwerów DNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Ścieżka Ca Certs" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"Ścieżka Ca Certs, używana do pobierania danych usług. Ustaw IGNORE, aby " +"pominąć weryfikację certyfikatu." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Anuluj" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Interwał sprawdzania" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Sprawdź jednostkę" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Sprawdzanie wsparcia serwisowego ..." + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Konfiguracja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Błąd konfiguracji" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" -"Skonfiguruj tutaj szczegóły dotyczące wszystkich usług dynamicznego DNS, w " -"tym aplikacji LuCI." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Utwórz usługę" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Aktualne ustawienie:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Obecnie aktualizacje DDNS nie są uruchamiane przy starcie lub przy " "zdarzeniach w interfejsie." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" "Własny skrypt aktualizacji, który ma być używany do aktualizacji dostawcy " "DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Własny adres URL aktualizacji" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Własny skrypt aktualizacji" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Autostart DDNS wyłączony" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Autostart DDNS włączony" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Dostawca usług DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Usługa DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Dostęp DNS przez TCP nie obsługiwany" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Serwer DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Format daty" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "Definiuje stronę sieci Web do odczytu adresów IP systemów z<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Definiuje stronę sieci Web do odczytu systemowych adresów IP." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "Definiuje interfejs do odczytu systemów od IP-Address" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Definiuje sieć do odczytu systemów od IP-Address" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -176,209 +189,212 @@ msgstr "" "Określa źródło do odczytu systemów IP-Address, które zostanie wysłane do " "dostawcy DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "Określa, który adres 'IPv4/IPv6' jest wysyłany do dostawcy DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "Katalog zawiera pliki dziennika dla każdej działającej sekcji." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "Katalog zawiera PID i inne informacje o statusie każdej działającej sekcji." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Wyłączone" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domena" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dynamiczny DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Wersja DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Edytuj" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Włączenie zabezpieczonej komunikacji z dostawcą DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Błąd" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Błąd licznika powtórzeń" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Błąd interwału powtórzeń" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Zdarzenia sieciowe" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Np. dla IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Przykład dla IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Np. dla IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Przykład dla IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Plik" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "" -"Szczegółowe informacje na temat ustawień parametrów znajdują się tutaj." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Postępuj zgodnie z instrukcjami, które znajdziesz na stronie WEB." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Obsługiwane kody znajdują się tutaj" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Wymuś wersję IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Wymuś nieobsługiwaną wersję IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Wymuś interwał" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Wymuś TCP w DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Wymuś jednostkę" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Format" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Format: IP lub FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" "GNU Wget użyje adresu IP danej sieci, Curl użyje fizycznego interfejsu." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Konfiguracja globalna" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Ustawienia globalne" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "Udziel dostępu do procedur ddns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "Protokół HTTPS nie jest obsługiwany" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" "Nazwa hosta/FQDN do sprawdzenia, czy aktualizacja IP ma miejsce lub jest " "konieczna" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Źródło adresu IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Wersja adresu IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Adres IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Adres IPv6 musi być podany w nawiasach kwadratowych" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "IPv6 nie jest obecnie (w pełni) obsługiwany przez ten system" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 nie jest obsługiwany" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Adres IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -"Jeśli pakiet Wget i Curl są zainstalowane, Wget jest domyślnie używany do " +"Jeśli pakiety Wget i Curl są zainstalowane, Wget jest domyślnie używany do " "komunikacji." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" -msgstr "" -"Jeśli ta sekcja usługi jest wyłączona, nie można jej uruchomić. <br /> Ani z " -"interfejsu LuCI, ani z konsoli" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Jeśli sekcja tej usługi jest wyłączona, nie można było jej uruchomić." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Jeśli korzystasz z bezpiecznej komunikacji, powinieneś zweryfikować " "certyfikaty serwera!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "W niektórych wersjach curl/libcurl jest kompilowany bez obsługi proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Informacja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" -msgstr "Informacja" +msgstr "Informacje" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "Wstaw skrypt aktualizacji OR lub URL aktualizacji" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -386,70 +402,64 @@ msgstr "" "Zainstaluj pakiet 'ca-certificates' lub potrzebne certyfikaty ręcznie w " "domyślnym katalogu /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Zainstaluj usługę" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interfejs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Interwał wymuszający wysyłanie aktualizacji do dostawcy DDNS <br /> " -"Ustawienie tego parametru na 0 wymusi uruchomienie skryptu tylko raz" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Częstotliwość wymuszania wysyłania aktualizacji do dostawcy DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Jednostka interwału sprawdzająca zmianę IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Jednostka interwału wymuszająca przesyłanie aktualizacji do dostawcy DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"NIE jest zalecane, aby zwykli użytkownicy zmieniali ustawienia na tej " -"stronie." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Ostatnia aktualizacja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Przeglądarka plików dziennika" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Katalog dzienników" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Długość dziennika" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Zapisz log do pliku" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Log do dziennika systemowego" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Nazwa hosta wyszukiwania" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nazwa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -457,7 +467,7 @@ msgstr "" "Ani GNU Wget z SSL, ani Curl nie jest zainstalowany, aby wybrać sieć, która " "będzie używana do komunikacji." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -465,221 +475,268 @@ msgstr "" "Ani GNU Wget z SSL, ani Curl nie są zainstalowane w celu obsługi " "bezpiecznych aktualizacji poprzez protokół HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Ani z interfejsu LuCI, ani z konsoli." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Sieć" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "Sieć, w której uruchomione zostaną skrypty ddns-updater" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Nigdy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Nowa usługa DDNS…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Następna aktualizacja" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Brak danych" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Nie znaleziono certyfikatów" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Brak logowania" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "Niepubliczne i domyślnie zablokowane IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Nie działa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Spostrzeżenie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Liczba ostatnich wierszy przechowywanych w plikach dziennika" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "OPCJONALNIE: Wymuś użycie komunikacji opartej wyłącznie na IPv4/IPv6." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "OPCJONALNIE: Wymuś użycie TCP zamiast domyślnego UDP na żądanie DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "OPCJONALNIE: Sieć używana do komunikacji" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPCJONALNIE: Serwer proxy do wykrywania i aktualizacji." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" "OPCJONALNIE: Użyj serwera DNS innego niż domyślny, aby wykryć " "„Zarejestrowany adres IP”." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" "W przypadku błędu skrypt ponownie spróbuje wykonać nieudaną akcję po " "określonym czasie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "W przypadku błędu skrypt przestanie działać po określonej liczbie prób" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "zakodowany opcjonalny parametr" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Opcjonalny parametr" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Opcjonalnie: Zastępuje [PARAMENC] w Update-URL (zakodowany URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "Opcjonalnie: Zastępuje [PARAMENC] w Update-URL (nie zakodowany URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Serwer PROXY" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Hasło" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Ścieżka do certyfikatu CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Postępuj zgodnie z instrukcjami na stronie głównej OpenWrt, aby włączyć " "obsługę IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Proszę nacisnąć przycisk [Czytaj]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Odczytaj/Ponownie odczytaj plik dziennika" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Naprawdę zmienić usługę?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Zarejestrowane IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Przeładuj" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Przeładuj usługę" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "Zastąp [DOMAIN] w Update-URL (zakodowany URL)" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Zastąp [PASSWORD] w Update-URL (zakodowany URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Zastąp [USERNAME] w Update-URL (zakodowany URL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Resetuj DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Ponów jednostkę" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Uruchom raz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Działa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Skrypt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Wybierz usługę" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "Usługa nie obsługuje tego typu adresu IP" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "Usługa nie została zainstalowana" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Usługi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "Pobieranie adresu URL usług" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Ostatnia aktualizacja listy usług" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "Ustawienie tego parametru na 0 wymusi uruchomienie skryptu tylko raz" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Uruchom DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Stan" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Status" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Status katalogu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Zatrzymaj" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Zatrzymaj DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Zatrzymaj tę usługę" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Zatrzymany" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Przełącz usługę" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "Domyślne ustawienie „0” będzie ponowić próbę nieskończoności." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "Nazwa usługi jest już używana" @@ -687,12 +744,12 @@ msgstr "Nazwa usługi jest już używana" msgid "There is no service configured." msgstr "Nie ma skonfigurowanej usługi." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Jest to bieżąca zawartość pliku dziennika w" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -700,81 +757,88 @@ msgstr "" "To jest ustawienie domyślne, jeśli uruchamiasz skrypty DDNS samodzielnie " "(tj. Za pomocą crona z force_interval ustawionym na „0”)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Zostanie automatycznie ustawiony na wybrany interfejs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Ustawienia zegara" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "URL do wykrycia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Nieznany" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "Zaktualizuj listę usług DDns" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "Adres URL użyty do aktualizacji u dostawcy DDNS." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"Zaktualizuj adres URL, który będzie używany do aktualizacji dostawcy DDNS. " -"<br/> Postępuj zgodnie z instrukcjami, które znajdziesz na ich stronie " -"internetowej." +"Adres URL używany do pobierania pliku usług. Domyślnie jest to główne " +"repozytorium pakietów openwrt ddns." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Użyj bezpiecznego HTTP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Użyj Curl" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "Skrypt zdefiniowany przez użytkownika do odczytu adresu IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Nazwa użytkownika" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Używanie określonego serwera DNS nie jest obsługiwane" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Wartości poniżej 5 minut == 300 sekund nie są obsługiwane" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "Niższe wartości „Interwał sprawdzania” oprócz „0” nie są obsługiwane" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Zweryfikuj" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Ostrzeżenie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" "Zapisuje szczegółowe komunikaty do pliku dziennika. Plik zostanie obcięty " "automatycznie." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -782,7 +846,7 @@ msgstr "" "Zapisuje komunikaty dziennika w dzienniku systemowym. Błędy krytyczne będą " "zawsze zapisywane w dzienniku systemowym." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -791,19 +855,19 @@ msgstr "" "'hostip', jeśli musisz określić serwer DNS w celu wykrycia zarejestrowanego " "adresu IP." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -"Powinieneś zainstalować pakiet „bind-host”, „knot-host” lub „drill” dla " +"Powinieneś zainstalować pakiet 'bind-host' lub 'knot-host' lub 'drill' dla " "żądań DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "Powinieneś zainstalować pakiet „wget”, „curl” lub „uclient-fetch”." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -811,68 +875,119 @@ msgstr "" "Powinieneś zainstalować „wget” lub „curl” lub „uclient-fetch” z pakietem " "„libustream- * ssl”." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Powinieneś zainstalować pakiet „wget” lub „curl”." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" "Powinieneś zainstalować pakiet „wget” lub „uclient-fetch” lub zastąpić " "libcurl." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" "Curl jest zainstalowany, ale libcurl został skompilowany bez obsługi proxy." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "Curl bez obsługi proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "własny" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "dni" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "katalog lub ścieżka/plik" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "godzin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minuty" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "lub" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "lub zaktualizuj system do najnowszej wersji OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "sekundy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "uruchomić HTTPS bez weryfikacji certyfikatów serwera (niezabezpieczony)" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "Skonfiguruj tutaj szczegóły dotyczące wszystkich usług dynamicznego DNS, " +#~ "w tym aplikacji LuCI." + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "Definiuje stronę sieci Web do odczytu adresów IP systemów z<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Np. dla IPv4: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Np. dla IPv6: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Szczegółowe informacje na temat ustawień parametrów znajdują się tutaj." + +#~ msgid "Global Configuration" +#~ msgstr "Konfiguracja globalna" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "Jeśli ta sekcja usługi jest wyłączona, nie można jej uruchomić. <br /> " +#~ "Ani z interfejsu LuCI, ani z konsoli" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "Interwał wymuszający wysyłanie aktualizacji do dostawcy DDNS <br /> " +#~ "Ustawienie tego parametru na 0 wymusi uruchomienie skryptu tylko raz" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "NIE jest zalecane, aby zwykli użytkownicy zmieniali ustawienia na tej " +#~ "stronie." + +#~ msgid "" +#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "instructions you will find on their WEB page." +#~ msgstr "" +#~ "Zaktualizuj adres URL, który będzie używany do aktualizacji dostawcy " +#~ "DDNS. <br/> Postępuj zgodnie z instrukcjami, które znajdziesz na ich " +#~ "stronie internetowej." + #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "Definiuje stronę internetową do odczytu adresu IP systemu z <br>" @@ -889,27 +1004,11 @@ msgstr "" #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "Definiuje stronę internetową do odczytu systemów od IP-Address" -#~ msgid "Example for IPv4" -#~ msgstr "Przykład dla IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Przykład dla IPv6" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "" -#~ "Jeśli sekcja tej usługi jest wyłączona, nie można było jej uruchomić." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "" #~ "Zainstaluj pakiet 'ca-certificates' lub potrzebne certyfikaty ręcznie do " #~ "katalogu domyślnego /etc/ssl/certs" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "Częstotliwość wymuszania wysyłania aktualizacji do dostawcy DDNS" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "Adres URL użyty do aktualizacji u dostawcy DDNS." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," @@ -941,9 +1040,6 @@ msgstr "" #~ "Dynamiczny DNS umożliwia dostęp do routera z użyciem stałej nazwy hosta, " #~ "pomimo posiadania dynamicznie zmieniającego się adresu IP." -#~ msgid "Global Settings" -#~ msgstr "Ustawienia globalne" - #~ msgid "Loading" #~ msgstr "Ładowanie" diff --git a/applications/luci-app-ddns/po/pt/ddns.po b/applications/luci-app-ddns/po/pt/ddns.po index 674e7181a5..9fcff91e2f 100644 --- a/applications/luci-app-ddns/po/pt/ddns.po +++ b/applications/luci-app-ddns/po/pt/ddns.po @@ -2,7 +2,7 @@ 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: 2020-06-28 19:19+0000\n" +"PO-Revision-Date: 2021-06-13 21:32+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/pt/>\n" @@ -11,38 +11,38 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "\".. /\" não é permitido no caminho por Razões de Segurança." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Adicionar novos serviços...." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Definições Avançadas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Permitir IP's não-públicos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Configurações Básicas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Ligar Rede" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Ligação a uma rede específica não suportada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -50,7 +50,7 @@ msgstr "" "O nslookup e o Wget do BusyBox não suportam especificar a versão de IP a ser " "usada para comunicação com o provedor de DDNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -58,7 +58,7 @@ msgstr "" "O nslookup e o hostip do BusyBox não suportam que especificar usar TCP em " "vez do padrão UDP quando requisitando servidor de DNS!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -66,108 +66,121 @@ msgstr "" "O nslookup do BusyBox na versão compilada atualmente não trabalha " "corretamente com os servidores de DNS dados!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Caminho de Certs de Ac" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"Caminho de Certs Ac que será usado para descarregar os dados dos serviços. " +"Defina IGNORE para saltar a validação do certificado." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "Intervalo de Verificação" +msgstr "Intervalo de verificação" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Unidade de verificação" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "A verificar o suporte de serviço..." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configuração" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" -msgstr "Erro de Configuração" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" -"Configure aqui os detalhes de todos os serviços DNS Dinâmicos, incluindo " -"esta aplicação da LuCI." +msgstr "Erro de configuração" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Criar serviço" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Configuração atual:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Atualmente, as atualizações DDNS não são iniciadas na inicialização ou em " "eventos de interface." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" "Script de atualização personalizado a ser usado para atualizar o seu " "provedor de DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "URL para atualização personalizada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Script de atualização personalizado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Inicialização automática do DDNS desativada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Inicialização automática do DDNS ativada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Provedor de serviços DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Serviço DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Solicitações de DNS via TCP não suportadas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Servidor DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Formato da data" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "Define a página Web de onde ler os endereços IP<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Define a página Web de onde ler os endereços IP dos sistemas." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "Define a interface de onde ler os endereços IP dos sistemas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Define a rede de onde ler os endereços IP dos sistemas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -175,168 +188,175 @@ msgstr "" "Define a fonte de leitura do endereço IP do sistema, que será enviado para o " "provedor de DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 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/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "O diretório contém ficheiros de log para cada secção em execução." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "O diretório contém PID e outras informações de estado para cada secção em " "execução." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Desativado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domínio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS Dinâmico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Versão DNS Dinâmica" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Editar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Ativar a comunicação segura com o provedor de DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Erro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Contador de Tentativas em Erro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Intervalo de Tentativas em Erro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Rede de Eventos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Exemplo para IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Exemplo de IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Exemplo para IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Exemplo de IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Ficheiro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "" -"Para informações detalhadas sobre os parâmetros de configurações, olhe aqui." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Siga as instruções que encontrará na página WEB deles." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Para códigos suportados, veja aqui" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Forçar Versão de IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Forçar Versão de IP não suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" -msgstr "Forçar Intervalo" +msgstr "Forçar o intervalo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Forçar TCP no DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Forçar a unidade" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Formato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Formato: IP ou FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" "GNU Wget usará o IP de uma determinada rede, cURL usará a interface física." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Configuração Global" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Configurações Globais" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "Conceder acesso UCI aos procedimentos ddns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS não suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 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/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Fonte do endereço IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Versão do endereço IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Endereço-IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Endereço IPv6 deve estar entre colchetes" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "IPv6 não é atualmente (totalmente) suportado por este sistema" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 não suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Endereço-IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -344,42 +364,38 @@ msgstr "" "Se o pacote Wget e cURL estiverem instalados, o Wget é usado para " "comunicação por padrão." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" -msgstr "" -"Se esta secção de serviço estiver desativada, não poderá ser iniciada.<br /" -">Nem da interface LuCI nem do console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Se esta secção de serviço estiver desativada, não pôde ser iniciada." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Deve verificar os certificados do servidor caso estiver a utilizar " "comunicação segura!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 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/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Info" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Informação" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "Inserir um Script ou URL de Atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -387,72 +403,65 @@ msgstr "" "Instale o pacote 'ca-certificates' ou os certificados necessários " "manualmente ao diretório /etc/ssl/certs padrão" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Instalar o serviço" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interface" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Intervalo para impor as atualizações enviadas ao Provedor de DDNS<br /" -">Configurar este parâmetro a 0 irá impor que o script seja executado apenas " -"uma vez" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Intervalo para forçar o envio de atualizações para o Provedor de DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Unidade de intervalo para verificar se o IP foi alterado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Unidade de intervalo para forçar o envio de atualizações para o Provedor de " "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"Não é recomendado que utilizadores iniciantes alterem configurações nessa " -"página." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Última atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Visualizador de ficheiro de log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Directório de Log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Tamanho do log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Log para ficheiro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Registar para o syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Verificar nome de host" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nome" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -460,7 +469,7 @@ msgstr "" "Nem GNU Wget com SSL, nem cURL instalado para selecionar uma rede para usar " "para comunicação." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -468,218 +477,266 @@ msgstr "" "Nem GNU Wget com SSL, nem cURL instalado para suportar atualizações seguras " "via protocolo HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Nem da interface LuCI, nem da consola." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Rede" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 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/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Nunca" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Novo Serviço de DDns…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Próxima atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "Sem Dados" +msgstr "Sem dados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Nenhum certificado encontrado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Sem registros" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "IPs não públicos e bloqueados por padrão" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Não em Execução" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Aviso" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Número das últimas linhas salvas nos ficheiross de log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 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/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "OPCIONAL: Force o uso de TCP em vez do padrão UDP em requisições DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "OPCIONAL: Rede para usar para comunicação" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPCIONAL: Servidor Proxy para deteção e atualização." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "OPCIONAL: Use servidor DNS não padrão para detetar 'Registered IP'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 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/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 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/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Parâmetro Opcionalmente Codificado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Parâmetro Opcional" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Opcional: Substitui [PARAMEND] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "Opcional: Substitui [PARAMOPT] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "servidor PROXY" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Palavra-passe" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Caminho para o certificado da AC" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Por favor, siga as instruções na página inicial do OpenWrt para ativar o " "suporte de IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Por favor pressione o botão [Ler]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Ler / Ler novamente o ficheiro de log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Realmente mudar o serviço?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "IP registrado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Recarregar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Recarregar este serviço" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "Substitui [DOMAIN] na URL de atualização" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Substitui [PASSWORD] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Substitui [USERNAME] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Reiniciar DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Tentar a unidade novamente" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" -msgstr "Rodar apenas uma vez" +msgstr "Executar apenas uma vez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Executando" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Script" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Selecione um serviço" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "O serviço não suporta este tipo de ip" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "O Serviço não está instalado" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Serviços" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "Descarregar URL de serviços" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Última atualização da lista de serviços" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" +"Definir este parâmetro como 0 forçará o script a ser executado apenas uma vez" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Iniciar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Estado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Estado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" -msgstr "Diretório de status" +msgstr "Diretório de estado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Parar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Parar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Parar este serviço" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Parado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Trocar serviço" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "A configuração padrão de '0' terá tentativas infinitas." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "O nome do serviço já está usado" @@ -687,12 +744,12 @@ msgstr "O nome do serviço já está usado" msgid "There is no service configured." msgstr "Não há serviço configurado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Este é o conteúdo atual do ficheiro de log em" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -700,80 +757,88 @@ msgstr "" "Este é o padrão se você executar scripts DDNS sozinho (ou seja, via cron com " "force_interval definido como '0')" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Isto será configurado automaticamente à interface selecionada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Configurações do Controlador de Tempo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "Detectada pela URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Desconhecido" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "Atualizar lista de serviços de DDns" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "URL de atualização a ser usado para atualizar o seu provedor de DDNS." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"URL a ser usada para atualizar seu provedor de DDNS.<br />Siga as instruções " -"encontradas na página Web deles." +"Url usado para descarregar o ficheiro de serviços. Por predefinição é o " +"master repo pacote openwrt ddns." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Usar HTTP Seguro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Usar cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "Script definido pelo utilizador para ler endereço IP do sistema" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Nome do utilizador" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Usar servidor DNS específico não é suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Valores abaixo de 5 minutos == 300 segundos não são suportados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "Valores mais baixos que 'Check Interval' exceto '0' não são suportados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Verificar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Aviso" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -"Escreve mensagens detalhadas no ficheiro de log. Arquivo será " +"Escreve mensagens detalhadas no ficheiro de log. O ficheiro será " "automaticamente truncado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -781,7 +846,7 @@ msgstr "" "Escreve mensagens de log no log do sistema. Erros críticos sempre serão " "escritos no log do sistema." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -789,7 +854,7 @@ msgstr "" "Deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' ou 'hostip', se " "precisar especificar um servidor de DNS para detetar o seu IP registado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -797,11 +862,11 @@ msgstr "" "Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' para " "requisições DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 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/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -809,65 +874,117 @@ msgstr "" "Você deve instalar o pacote 'wget' ou 'curl' ou 'uclient-fetch' com " "'libustream-*ssl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Você deve instalar o pacote ‘wget’ ou ‘curl’." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 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/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 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/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL sem suporte a proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "personalizado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "dias" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "diretório ou caminho/ficheiro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "horas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minutos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "ou" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "ou atualize o seu sistema para a versão mais recente do OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "segundos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" -"para rodar HTTPS sem verificação dos certificados do servidor (não seguro)" +"para executar HTTPS sem verificação dos certificados do servidor (não seguro)" + +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "" +#~ "Configure aqui os detalhes de todos os serviços DNS Dinâmicos, incluindo " +#~ "esta aplicação da LuCI." + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "Define a página Web de onde ler os endereços IP<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Exemplo para IPv4: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Exemplo para IPv6: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Para informações detalhadas sobre os parâmetros de configurações, olhe " +#~ "aqui." + +#~ msgid "Global Configuration" +#~ msgstr "Configuração Global" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "Se esta secção de serviço estiver desativada, não poderá ser iniciada." +#~ "<br />Nem da interface LuCI nem do console" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "Intervalo para impor as atualizações enviadas ao Provedor de DDNS<br /" +#~ ">Configurar este parâmetro a 0 irá impor que o script seja executado " +#~ "apenas uma vez" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "Não é recomendado que utilizadores iniciantes alterem configurações nessa " +#~ "página." + +#~ 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 de DDNS.<br />Siga as " +#~ "instruções encontradas na página Web deles." #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "" @@ -886,27 +1003,9 @@ msgstr "" #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "Define a página Web de onde ler os endereços IP dos sistemas" -#~ msgid "Example for IPv4" -#~ msgstr "Exemplo de IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Exemplo de IPv6" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "" -#~ "Se esta secção de serviço estiver desativada, não pôde ser iniciada." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "Instalar o pacote 'ca-certificados' ou os certificados necessários" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "" -#~ "Intervalo para forçar o envio de atualizações para o Provedor de DDNS" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "" -#~ "URL de atualização a ser usado para atualizar o seu provedor de DDNS." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," @@ -928,9 +1027,6 @@ msgstr "" #~ "O DNS dinâmico permite que o seu router possa ser encontrado a partir de " #~ "um hostname fixo, mesmo usando um Endereço IP dinâmico." -#~ msgid "Global Settings" -#~ msgstr "Configurações Globais" - #~ msgid "Loading" #~ msgstr "A carregar" diff --git a/applications/luci-app-ddns/po/pt_BR/ddns.po b/applications/luci-app-ddns/po/pt_BR/ddns.po index 7337ce4bc3..294d4cd8d1 100644 --- a/applications/luci-app-ddns/po/pt_BR/ddns.po +++ b/applications/luci-app-ddns/po/pt_BR/ddns.po @@ -2,7 +2,7 @@ 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: 2020-06-16 16:09+0000\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsddns/pt_BR/>\n" @@ -11,38 +11,38 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "\"../\" não permitido no caminho para motivo de segurança." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Adicionar novos serviços..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Configurações Avançadas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Permitir IPs não-públicos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Configurações Básicas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Limitar Rede" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Não suportado limitar a uma rede específica" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -50,7 +50,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -58,7 +58,7 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -66,109 +66,121 @@ msgstr "" "nslookup do BusyBox na versão compilada atualmente não trabalha corretamente " "com servidores DNS dados!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Caminho dos certificados Ca" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"O caminho dos certificados Ca que serão utilizados para fazer o download dos " +"dados do serviço. Defina como IGNORE para ignorar a validação do certificado." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Cancelar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "Checar Intervalo" +msgstr "Intervalo de verificação" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Verificar a Unidade" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Verificando o suporte do serviço..." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configuração" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Erro de configuração" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -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/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Criar serviço" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Configuração atual:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "Atualmente, as atualizações do DDNS não são iniciadas na inicialização ou em " "eventos de interface." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 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/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "URL para atualização personalizada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Script para atualização personalizado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Auto-inicialização de DDNS desabilitada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Inicialização automática de DDNS habilitado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Provedor de serviço DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Serviço DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "Requisição de DNS via TCP não suportada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Servidor DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Formato de data" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" -"Define a página Web de onde será lido os endereços IP dos sistemas<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Define a página da Web para ler os sistemas a partir do Endereço IP." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 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/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Define a rede para ler endereço IP de sistemas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -176,168 +188,174 @@ msgstr "" "Define a origem para ler o endereço IP de sistemas, que será enviada ao " "provedor DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 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/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "O diretório contém arquivos de registro para cada seção de execução." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "O diretório contém PID e outras informações de status para cada seção de " "execução." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Desabilitado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domínio" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS Dinâmico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Versão de DNS dinâmico" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Editar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Habilitar comunicação segura com o provedor DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Erro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Contador de Tentativas em Erro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Intervalo de tentativas em Erro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Rede de Evento" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Exemplo para IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Exemplo para IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Exemplo para IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Exemplo para IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Arquivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "" -"Para obter informações detalhadas sobre as configurações do parâmetro, veja " -"aqui." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Siga as instruções que você encontrará na página WEB deles." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "Olhe aqui para códigos suportados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Forçar versão de IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Forçar versão de IP não suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Forçar intervalo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Forçar TCP em DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Impor a Unidade" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Formato" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Formato: IP ou FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 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/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Configuração Global" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Configurações Globais" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "Conceda acesso UCI aos procedimentos ddns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS não suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 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/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Fonte do endereço IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Versão do endereço IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Endereço IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "Endereço IPv6 deve estar entre colchetes" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "O IPv6 não é atualmente (totalmente) suportado por este sistema" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 não suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Endereço IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -345,42 +363,38 @@ msgstr "" "Se o pacote Wget e cURL for instalado, o Wget é usado para comunicação por " "padrão." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Se esta seção de serviço está desabilitada, não poderia ser iniciado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Se estiver usando uma comunicação segura, você deve verificar os " "certificados do servidor!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 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/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Informação" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Informações" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "Insira um script de atualização OU uma URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -388,69 +402,64 @@ msgstr "" "Instale manualmente o pacote ’ca-certificates’ ou certificados necessários " "no diretório padrão /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Serviço de instalação" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interface" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Intervalo para impor as atualizações enviadas ao Provedor DDNS<br />O ajuste " -"deste parâmetro para 0 irá impor que o script seja executado apenas uma vez" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Intervalo para forçar atualizações enviados ao provedor DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Unidade intervalada para verificar a alteração do PI" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" "Unidade de intervalo para forçar atualizações enviados ao provedor DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -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/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Última atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Visualizador de arquivo de registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Diretório de registro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Tamanho do log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Log para arquivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Registrar no syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Verificar nome de host" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nome" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -458,7 +467,7 @@ msgstr "" "Nem GNU Wget com SSL nem cURL instalado para selecionar uma rede para usar " "para comunicação." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -466,218 +475,266 @@ msgstr "" "Nem GNU Wget com SSL nem cURL instalado para suportar atualizações seguras " "via protocolo HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Nem a partir da interface LuCI nem a partir do console." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Rede" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 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/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Nunca" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Novo Serviço DDNS…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Próxima atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Sem dados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Nenhum certificado encontrado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Sem registros" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "IPs não públicos e bloqueados por padrão" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Não está em execução" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Aviso" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Número das últimas linhas salvas nos arquivos de log" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 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/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "OPCIONAL: Force o uso de TCP em vez do padrão UDP em requisições DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "OPCIONAL: Rede para usar para comunicação" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "OPCIONAL: Servidor Proxy para detecção e atualização." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "OPCIONAL: Use servidor DNS não-padrão para detectar \"IP Registrado\"." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 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/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 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/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Parâmetro Opcionalmente Codificado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Parâmetro Opcional" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Opcional: Substitui [PARAMEND] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "Opcional: Substitui [PARAMOPT] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "servidor PROXY" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Senha" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" -msgstr "Caminho para o Certificado da AC" +msgstr "Caminho para o certificado CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Por favor, siga as instruções na página inicial do OpenWrt para habilitar o " "suporte do IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Por favor, pressione o botão [Ler]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" -msgstr "Ler / Ler novamente o arquivo de registro" +msgstr "Ler / Ler novamente o arquivo do registro log" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Deseja realmente trocar o serviço?" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "IP registrado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Recarregar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Recarregar este serviço" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "Substitui [DOMÍNIO] na URL de atualização (codificado por URL)" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Substitui [PASSWORD] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Substitui [USERNAME] na URL de atualização" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Reiniciar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Tentar a Unidade Novamente" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Rodar apenas uma vez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Em execução" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Script" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Selecione um serviço" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "O serviço não suporta este tipo de IP" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "O serviço não está instalado" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Serviços" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "URL dos serviços para download" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Última atualização da lista dos serviços" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" +"Ao definir este parâmetro para 0 irá impor que o script rode apenas uma vez" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Iniciar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Estado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Condição Geral" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Diretório de status" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Parar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Parar DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Para este serviço" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Parado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Trocar o serviço" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "A configuração padrão de '0' terá infinitas tentativas." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "O nome do serviço já é usado" @@ -685,12 +742,12 @@ msgstr "O nome do serviço já é usado" msgid "There is no service configured." msgstr "Não há serviço configurado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Este é o conteúdo atual do arquivo de registro em" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -698,80 +755,88 @@ msgstr "" "Este é o padrão se você executar scripts DDNS por si mesmo (ou seja, via " "cron com force_interval definido para \"0\")" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Isso será automaticamente definido para a interface selecionada" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Configurações do Controlador de Tempo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "Detectada pela URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Desconhecido" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "Atualizar a lista dos serviços DDns" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "Atualize url para ser usado para atualizar seu provedor de DDNS." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"URL a ser usada para atualizar seu provedor DDNS.<br />Siga as instruções " -"encontradas na página deles." +"A Url usada para baixar o arquivo de serviços. Por padrão é o pacote master " +"openwrt ddns repo." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Usar HTTP Seguro" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Usar cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 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/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Nome do Usuário" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Usar servidor DNS específico não é suportado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Valores abaixo de 5 minutos == 300 segundos não são suportados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "Valores mais baixos 'Check Interval', exceto '0' não são suportados" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Verificar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Alerta" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 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/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -779,7 +844,7 @@ msgstr "" "Escreve mensagens de log no log do sistema. Erros críticos sempre serão " "escritos no log do sistema." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -788,7 +853,7 @@ msgstr "" "'hostip' caso precise especificar um servidor DNS para detectar seu IP " "registrado." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." @@ -796,11 +861,11 @@ msgstr "" "Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' para " "requisições DNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 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/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." @@ -808,66 +873,119 @@ msgstr "" "Você deve instalar o pacote 'wget' ou 'curl' ou 'uclient-fetch' com " "'libustream-*ssl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Você deve instalar o pacote ‘wget’ ou ‘curl’." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 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/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 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/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL sem suporte a proxy" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "personalizado" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "dias" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "diretório ou caminho/arquivo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "horas" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minutos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "ou" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "ou atualize seu sistema para o mais recente lançamento do OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "segundos" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" "para rodar HTTPS sem verificação dos certificados do servidor (não seguro)" +#~ 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." + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "" +#~ "Define a página Web de onde será lido os endereços IP dos sistemas<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Exemplo para IPv4: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Exemplo para IPv6: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Para obter informações detalhadas sobre as configurações do parâmetro, " +#~ "veja aqui." + +#~ msgid "Global Configuration" +#~ msgstr "Configuração Global" + +#~ 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" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "Intervalo para impor as atualizações enviadas ao Provedor DDNS<br />O " +#~ "ajuste deste parâmetro para 0 irá impor que o script seja executado " +#~ "apenas uma vez" + +#~ 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." + +#~ 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." + #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "Define a página da Web para ler o endereço IP dos sistemas em <br>" @@ -885,25 +1003,9 @@ msgstr "" #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "Define a página web para ler o endereço IP de sistemas" -#~ msgid "Example for IPv4" -#~ msgstr "Exemplo para IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Exemplo para IPv6" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "" -#~ "Se esta seção de serviço está desabilitada, não poderia ser iniciado." - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "Instale o pacote \"ca-certificates\" ou os certificados necessários" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "Intervalo para forçar atualizações enviados ao provedor DDNS" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "Atualize url para ser usado para atualizar seu provedor de DDNS." - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," @@ -1036,9 +1138,6 @@ msgstr "" #~ msgid "Forced IP Version don't matched" #~ msgstr "Forçar versão de IP não corresponde" -#~ msgid "Global Settings" -#~ msgstr "Configurações Globais" - #~ msgid "Hints" #~ msgstr "Dicas" diff --git a/applications/luci-app-ddns/po/ro/ddns.po b/applications/luci-app-ddns/po/ro/ddns.po index 0a0acc9ff7..123e68fa6b 100644 --- a/applications/luci-app-ddns/po/ro/ddns.po +++ b/applications/luci-app-ddns/po/ro/ddns.po @@ -14,630 +14,694 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Adaugă servicii noi..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Setări avansate" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Permite IP-uri non-publice" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Setări simple" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Leagă de rețea" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Legarea de o anumită rețea nu este suportată" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Anulare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Interval de verificare" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Configurare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Eroare de configurație" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Creează serviciu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Setarea curentă:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Adresa particularizata de actualizare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Script de update personalizat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Pornirea automată a DDNS dezactivată" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Pornirea automată a DDNS activată" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Furnizorul de servicii DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "Server DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Formatul datei" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "Definește care adresă IP \"IPv4/IPv6\" este trimisa furnizorului DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Dezactivat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domeniu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "DNS dinamic" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Versiune DNS Dinamic" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Modifică" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Activează comunicarea securizată cu furnizorul DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Activat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Eroare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Număr de reîncercări in caz de eroare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Intervalul reîncercărilor în caz de eroare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Exemplu pentru IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Exemplu pentru IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Fișier" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Forțează versiune IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Forțarea versiunii IP nu este suportată" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "Sursa adresei IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Versiunea adresei IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Adresă IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Interfață" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Intervalul de verificare pentru IP schimbat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Ultima actualizare" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Nume" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Retea" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Parola" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Status" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -645,178 +709,180 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Utilizator" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" -#~ msgid "Example for IPv4" -#~ msgstr "Exemplu pentru IPv4" - -#~ msgid "Example for IPv6" -#~ msgstr "Exemplu pentru IPv6" - #~ msgid "" #~ "Dynamic DNS allows that your router can be reached with a fixed hostname " #~ "while having a dynamically changing IP address." diff --git a/applications/luci-app-ddns/po/ru/ddns.po b/applications/luci-app-ddns/po/ru/ddns.po index 27b3332793..fa1051cab7 100644 --- a/applications/luci-app-ddns/po/ru/ddns.po +++ b/applications/luci-app-ddns/po/ru/ddns.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: ddns\n" "POT-Creation-Date: 2017-10-17 21:00+0300\n" -"PO-Revision-Date: 2020-07-02 23:41+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2021-06-06 05:59+0000\n" +"Last-Translator: Nikolay Parukhin <parukhin@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/ru/>\n" "Language: ru\n" @@ -12,41 +12,41 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.7-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" "Использование «../» в пути не разрешается по соображениям безопасности." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Добавить новую службу..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Разрешить не публичные IP-адреса" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Основные настройки" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Привязать сеть" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Привязка к определенной сети не поддерживается" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" @@ -54,7 +54,7 @@ msgstr "" "Утилиты nslookup и wget из состава busybox не поддерживают указание IP-" "версии, используемой для связи с DDNS провайдером!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -62,7 +62,7 @@ msgstr "" "Утилиты nslookup и hostip из состава busybox не поддерживают указание " "использовать TCP вместо UDP по умолчанию при запросе DNS сервера!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" @@ -70,106 +70,121 @@ msgstr "" "Благодаря текущей скомпилированной версии busybox, утилита nslookup не " "обрабатывает данные DNS сервера правильно!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Путь к CA-сертификатам" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" +"Путь к CA-сертификатам, которые будут использоваться для загрузки данных " +"сервисов. Установите IGNORE, чтобы пропустить проверку сертификата." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Отмена" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Интервал проверки" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Размерность интервала проверки" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Проверка поддержки службы..." + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Конфигурация" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Ошибка конфигурации" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "Настройка для всех служб DDNS, включая это приложение LuCI." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Создать службу" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Текущие настройки:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" "В настоящее время обновления DDNS не запускаются при загрузке или при " "событиях интерфейса." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" "Пользовательский скрипт обновления, который будет использоваться для вашего " "провайдера DDNS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Пользовательский URL обновления" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Пользовательский скрипт обновления" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "Автостарт DDNS отключен" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "Автозапуск DDNS включён" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "Провайдер службы DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "Служба DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "DNS запросы по протоколу TCP не поддерживаются" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS сервер" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Формат даты" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "Задайте Веб-страницу для чтения системного IP-адреса из<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Определяет URL для считывания системного IP-адреса." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "Задайте интерфейс для чтения системного IP-адреса из" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "Определяет сеть для считывания системного IP-адреса" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" @@ -177,116 +192,121 @@ msgstr "" "Определяет источник для чтения системного IP-адреса, который будет " "отправляться провайдеру DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" "Задайте версию протокола IP-адреса 'IPv4/IPv6' отправляется провайдеру DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "Каталог содержащий файлы журналов для каждой запущенной службы." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" "Каталог содержащий PID файлы и другую информацию о состоянии каждой " "запущенной службы." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Отключено" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Домен" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Динамический DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "Версия DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Изменить" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "Включить безопасное соединение с провайдером DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Включено" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Ошибка" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "Счётчик попыток повтора при ошибке" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "Интервал попытки повтора при ошибке" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "Событие сети" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "Пример для IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "Пример для IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "Пример для IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "Пример для IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Файл" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -"Здесь вы сможете получить более подробную информацию о параметрах настройки." +"Следуйте инструкциям, которые вы найдете в документации DDNS провайдера." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "С поддерживаемыми кодами вы можете ознакомится здесь" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Назначенная версия IP протокола" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Назначенная версия IP протокола не поддерживается" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "Назначить интервал" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "Использовать протокол TCP для DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Размерность интервала обновления" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Формат" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "В виде: IP-адрес или полное доменное имя" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." @@ -294,54 +314,57 @@ msgstr "" "GNU wget будет использовать IP заданной сети, cURL будет использовать " "физический интерфейс." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Глобальные настройки" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Основные настройки" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "Предоставить доступ к процедурам DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS не поддерживается" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" "Имя хоста/полное доменное имя для проверки, если происходит обновление IP-" "адреса или оно необходимо" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP-адрес источника" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Версия IP-адреса" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4-адрес" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "IPv6-адрес должен быть указан в квадратных скобках" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" "В настоящее время эта система не (полностью) поддерживает протокол IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 не поддерживается" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6-адрес" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." @@ -349,43 +372,39 @@ msgstr "" "Если установлены пакеты wget и cURL, то по умолчанию будет использоваться " "wget." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Если служба отключена, её нельзя будет запустить." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" "Если используется безопасное соединение, необходимо проверить сертификаты " "сервера!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" "В некоторых версиях OpenWrt пакеты cURL/libcurl скомпилированы без поддержки " "прокси." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Информация" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Информация" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "Укажите скрипт обновления или URL обновления" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" @@ -393,68 +412,63 @@ msgstr "" "Установите пакет 'ca-certificates' или необходимые сертификаты вручную в " "папку /etc/ssl/certs" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Установить службу" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Интерфейс" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"Интервал для отправки обновлений провайдеру DDNS<br />Установка значения 0 " -"заставит сценарий отработать только один раз" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Интервал для отправки обновлений провайдеру DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "Размерность интервала проверки изменений IP-адреса" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "Размерность интервала отправки обновления DDNS провайдеру" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" -"Настройки на данной странице не рекомендуется изменять обычным пользователям." - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Последнее обновление" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Просмотр системного журнала" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Папка системного журнала" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Просмотр журнала" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Запись в файл" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Запись в журнал" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Поиск имени хоста" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Название" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." @@ -462,7 +476,7 @@ msgstr "" "Не установлены пакеты GNU wget c SSL или cURL для возможности выбора сети " "для связи." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -470,225 +484,272 @@ msgstr "" "Не установлены пакеты GNU wget с SSL или cURL для поддержки безопасных " "обновлений по протоколу HTTPS." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Ни с веб-интерфейса LuCI, ни с консоли." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Сеть" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "Сеть, в которой будут запущены скрипты DDNS-updater" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Никогда" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "Новая DDNS служба…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Следующее обновление" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "Нет данных" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Сертификаты не найдены" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Отключить журналирование" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "Непубличные и заблокированные по умолчанию IP-адреса" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "Не работает" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" -msgstr "Заметка" +msgstr "Сообщение" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "Число последних строк, для хранения в системном журнале" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "Необязательно: использовать только чистые версий протоколов IPv4/IPv6." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" "Необязательно: использовать протокол TCP вместо UDP по умолчанию для DNS-" "запросов." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "Необязательно: сеть для связи" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "Необязательно: прокси-сервер для обнаружения и обновления." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" "Необязательно: использовать DNS сервер не используемый по умолчанию, для " "обнаружения 'Зарегистрированного IP-адреса'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" "В случае ошибки, скрипт повторит требуемые действия по истечении заданного " "времени" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" "В случае ошибки, скрипт прекратит выполнение после заданного количества " "повторных попыток" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "Необязательный кодированный параметр" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Необязательный параметр" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Необязательно: заменяет [PARAMENC] в Update-URL (URL-encoded)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "Необязательно: заменяет [PARAMOPT] в Update-URL (не URL-encoded)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "Прокси сервер" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Пароль" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Путь к CA-сертификату" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" "Следуйте инструкциям на домашней странице OpenWrt, чтобы включить поддержку " "IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Нажмите кнопку [Читать / Перечитывать системный журнал]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Читать / Перечитывать системный журнал" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Действительно переключить службу?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Зарегистрированный IP-адрес" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Перезапустить" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "Перезагрузить данную службу" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "Заменяет [DOMAIN] в Update-URL (URL-encoded)" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "Заменяет [PASSWORD] в Update-URL (URL-encoded)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "Заменяет [USERNAME] в Update-URL (URL-encoded)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "Перезапустить DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Размерность интервалов повтора" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Запустить один раз" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "Запущенные" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Скрипт" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Выберите службу" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "Служба не поддерживает выбранный тип IP" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "Служба не установлена" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Службы" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "URL файла поддержки служб" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Последнее обновление списка служб" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "Установка значения 0 заставит сценарий отработать только один раз" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "Запустить DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Указывать" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Состояние" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "Папка состояния" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Остановить" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "Остановить DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "Остановить эту службу" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" -msgstr "Остановлено" +msgstr "Остановлена" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Переключить службу" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "Значение по умолчанию '0' используется для бесконечного повтора." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "Имя службы уже используется" @@ -696,12 +757,12 @@ msgstr "Имя службы уже используется" msgid "There is no service configured." msgstr "Служба не настроена." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "Текущее содержимое файла журнала в" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -709,80 +770,88 @@ msgstr "" "Это поведение по умолчанию, если вы запускаете скрипты DDNS самостоятельно " "(т.е. через cron с параметром force_interval, установленным в 0)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "Будет выполнена автоматическая настройка на выбранный интерфейс" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "Настройка таймера" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "URL для обнаружения" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Неизвестно" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "Обновить список служб DDNS" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "URL, используемый для обновления данных вашего DDNS провайдера." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"URL обновления используется для обновления вашего DDNS-провайдера.<br /" -">Следуйте инструкциям, которые вы найдете на их на веб-странице." +"URL, который используется для загрузки файла служб. По умолчанию " +"используется файл из master ветки основного репозитория пакетов OpenWrt." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Использовать HTTPS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Использовать cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "Заданный пользователем скрипт для чтения системного IP-адреса" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Имя пользователя" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "Использование определенного DNS сервера не поддерживается" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "Значения меньше 5 минут (300 секунд) не поддерживаются" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "Значения меньше интервала проверки (кроме 0) не поддерживаются" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Проверить" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Внимание" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" "Записывать подробные сообщения в системный журнал. Файл будет автоматически " "обрезан ." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." @@ -790,7 +859,7 @@ msgstr "" "Задайте уровень журналирования. Критические ошибки всегда будут записаны в " "системный журнал." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -799,83 +868,132 @@ msgstr "" "нужно указать DNS сервер для обнаружения вашего зарегистрированного IP-" "адреса." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 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/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "Установите пакет 'wget', 'curl' или 'uclient-fetch'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 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/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "Установите пакет 'wget' или 'curl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" "Вы должны установить пакет 'wget' или 'uclient-fetch' или заменить 'libcurl'." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "cURL установлен, но libcurl был скомпилирован без поддержки прокси." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL без поддержки прокси" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "пользовательский" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "дни" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "папка или путь/файл" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "часа(ов)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "минут(ы)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "или" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "или обновить вашу систему до последнего релиза OpenWrt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "секунд(ы)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "использовать HTTPS без проверки сертификатов сервера (небезопасно)" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "Настройка для всех служб DDNS, включая это приложение LuCI." + +#~ msgid "Defines the Web page to read systems IP-Address from<br />" +#~ msgstr "Задайте Веб-страницу для чтения системного IP-адреса из<br />" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "Пример для IPv4: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "Пример для IPv6: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "" +#~ "Здесь вы сможете получить более подробную информацию о параметрах " +#~ "настройки." + +#~ msgid "Global Configuration" +#~ msgstr "Глобальные настройки" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "Если этот режим службы отключен, её нельзя будет запустить ни с веб-" +#~ "интерфейса LuCI, ни с консоли" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "Интервал для отправки обновлений провайдеру DDNS<br />Установка значения " +#~ "0 заставит сценарий отработать только один раз" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "" +#~ "Настройки на данной странице не рекомендуется изменять обычным " +#~ "пользователям." + +#~ 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 /" +#~ ">Следуйте инструкциям, которые вы найдете на их на веб-странице." + #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "Определяет URL для считывания системного IP-адреса<br>" @@ -1002,9 +1120,6 @@ msgstr "использовать HTTPS без проверки сертифик #~ msgid "Forced IP Version don't matched" #~ msgstr "Назначенная версия IP протокола не соответствует" -#~ msgid "Global Settings" -#~ msgstr "Основные настройки" - #~ msgid "Hints" #~ msgstr "Подсказки" diff --git a/applications/luci-app-ddns/po/sk/ddns.po b/applications/luci-app-ddns/po/sk/ddns.po index a589276488..f6e864f089 100644 --- a/applications/luci-app-ddns/po/sk/ddns.po +++ b/applications/luci-app-ddns/po/sk/ddns.po @@ -10,630 +10,694 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Pokročilé nastavenia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Zrušiť" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Konfigurácia" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Zakázané" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Doména" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Upraviť" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Povolené" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Chyba" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Súbor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Adresa IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Adresa IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Informácie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Rozhranie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Názov" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Sieť" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Heslo" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Služby" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Stav" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Zastaviť" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -641,168 +705,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Neznáme" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Používateľské meno" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Upozornenie" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/sv/ddns.po b/applications/luci-app-ddns/po/sv/ddns.po index af633a3936..a659c2450c 100644 --- a/applications/luci-app-ddns/po/sv/ddns.po +++ b/applications/luci-app-ddns/po/sv/ddns.po @@ -1,269 +1,287 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-20 21:21+0000\n" -"Last-Translator: smorgasbeerd <viktorwestas@outlook.com>\n" +"PO-Revision-Date: 2020-11-22 15:35+0000\n" +"Last-Translator: PontusÖsterlindh <pontus@osterlindh.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/sv/>\n" "Language: sv\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.10\n" +"X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." -msgstr "" +msgstr "\"../\" ej tillåten i sökväg av säkerhetsskäl." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Lägg till nya tjänster..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Tillåt icke-publika IP-adresser" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Standardinställningar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "Bind samman nätverk" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "Att binda samman med ett specifikt nätverk stöds inte" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Avbryt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Kontroll-intervall" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Konfiguration" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Konfigurationsfel" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Skapa tjänst" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Nuvarande inställning:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Anpassad webbadress för uppdatering" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "Anpassat uppdateringsskript" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "DDNS autostart inaktiverad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "DDNS autostart aktiverad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS-server" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Datumformat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Inaktiverad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Domän" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dynamisk DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Redigera" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Fel" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Fil" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "Tvinga IP-version" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "Påtvingad IP-version stöds inte" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Format" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "Format: IP eller FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." @@ -271,373 +289,417 @@ 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/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Globala inställningar" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS stöds inte" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP-adressens källa" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Version för IP-adress" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4-adress" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 stöds inte" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6-adress" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Info" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" -msgstr "" +msgstr "Information" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Gränssnitt" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -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/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "Senaste uppdateringen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "Visare av loggfil" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "Loggens längd" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "Logga till fil" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "Logga till syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "Kolla upp värdnamn" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Namn" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Nätverk" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Aldrig" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "Nästa uppdatering" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "Inga ceritifikat hittades" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "Ingen loggning" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Avisering" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "Valfri parameter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "PROXY-server" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Lösenord" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "Vänligen tryck på [Läs]-knappen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "Läs / Läs om loggfilen" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "Registrerad IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "Ladda om" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "Kör en gång" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" -msgstr "" +msgstr "Igång" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "Skript" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Tjänster" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "Skick" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Status" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" -msgstr "" +msgstr "Stopp" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Stoppad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -645,172 +707,186 @@ msgstr "" msgid "There is no service configured." msgstr "Det finns ingen tjänst inställd." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "Webbadress" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "Webbadress att upptäcka" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Okänd" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "Använd Säker HTTP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "Använd cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Användarnamn" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "Verkställ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Varning" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL utan Proxy-stöd" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "anpassad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "dagar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "timmar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "minuter" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "eller" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "sekunder" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "för att köra HTTPS utan verifiering av server-certifikaten (osäkert)" +#~ 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." + #~ msgid "&" #~ msgstr "&" @@ -847,9 +923,6 @@ msgstr "för att köra HTTPS utan verifiering av server-certifikaten (osäkert)" #~ msgid "File not found or empty" #~ msgstr "Filen hittades inte eller så är den tom" -#~ msgid "Global Settings" -#~ msgstr "Globala inställningar" - #~ msgid "Hints" #~ msgstr "Ledtrådar" diff --git a/applications/luci-app-ddns/po/templates/ddns.pot b/applications/luci-app-ddns/po/templates/ddns.pot index e8a829d829..f61d3499bd 100644 --- a/applications/luci-app-ddns/po/templates/ddns.pot +++ b/applications/luci-app-ddns/po/templates/ddns.pot @@ -1,630 +1,694 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -632,168 +696,176 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/tr/ddns.po b/applications/luci-app-ddns/po/tr/ddns.po index 6a2c43cb72..d0f2f211b9 100644 --- a/applications/luci-app-ddns/po/tr/ddns.po +++ b/applications/luci-app-ddns/po/tr/ddns.po @@ -2,8 +2,8 @@ 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-12-09 20:04+0000\n" -"Last-Translator: İsmail Karslı <ismail541236@gmail.com>\n" +"PO-Revision-Date: 2021-05-28 17:32+0000\n" +"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/tr/>\n" "Language: tr\n" @@ -11,804 +11,939 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." -msgstr "" +msgstr "Güvenlik nedeniyle yol içerisinde \"../\" öğesine izin verilmez." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." -msgstr "" +msgstr "Yeni hizmetler ekle..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Gelişmiş Ayarlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" -msgstr "" +msgstr "Genel olmayan IP'lere izin ver" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" -msgstr "" +msgstr "Temel Ayarlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" -msgstr "" +msgstr "Ağı Bağla" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" -msgstr "" +msgstr "Belirli bir ağa bağlanma desteklenmez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" msgstr "" +"BusyBox'ın nslookup ve Wget'i, DDNS Sağlayıcısı ile iletişim için " +"kullanılacak IP sürümünü belirlemeyi desteklemez!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" msgstr "" +"BusyBox'ın nslookup ve hostip'i, DNS sunucusu talep ederken varsayılan UDP " +"yerine TCP kullanmayı belirtmeyi desteklemez!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" +"BusyBox'ın mevcut derlenmiş sürümdeki nslookup'ı, verilen DNS Sunucularını " +"doğru şekilde işlemez!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 -msgid "Cancel" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Ca Sertifikaları yolu" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." msgstr "" +"Servis verilerini indirmek için kullanılacak Ca Sertifikaları yolu. " +"Sertifika doğrulamasını atlamak için IGNORE'u ayarlayın." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 +msgid "Cancel" +msgstr "İptal" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "" +msgstr "Kontrol etme aralığı" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "Kontrol Ünitesi" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "Servis desteği kontrol ediliyor..." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" -msgstr "" +msgstr "Yapılandırma" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" +msgstr "Yapılandırma hatası" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" -msgstr "" +msgstr "Hizmet oluştur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" -msgstr "" +msgstr "Şimdiki ayar:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" +"Şu anda DDNS güncellemeleri önyükleme sırasında veya arayüz olaylarında " +"başlatılmamaktadır." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" +"DDNS Sağlayıcınızı güncellemek için kullanılacak özel güncelleme komut " +"dosyası." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" -msgstr "" +msgstr "Özel güncelleme URL'si" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" -msgstr "" +msgstr "Özel güncelleme betiği" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" -msgstr "" +msgstr "DDNS Otomatik Başlatma devre dışı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" -msgstr "" +msgstr "DDNS Otomatik Başlatma etkin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" -msgstr "" +msgstr "DDNS Servis sağlayıcısı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" -msgstr "" +msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" -msgstr "" +msgstr "DDns Hizmeti" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" -msgstr "" +msgstr "TCP üzerinden DNS istekleri desteklenmez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" -msgstr "" +msgstr "Dns sunucusu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" -msgstr "" +msgstr "Tarih formatı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "Sistemlerin IP Adresinin okunacağı Web sayfasını tanımlar." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" -msgstr "" +msgstr "Sistemin IP Adresini okuyacak arayüzü tanımlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" -msgstr "" +msgstr "Sistemin IP Adresini okuyacak ağı tanımlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" +"DDNS sağlayıcısına gönderilecek olan sistem IP Adresini okumak için kaynağı " +"tanımlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" +"DDNS sağlayıcısına hangi IP adresinin 'IPv4 / IPv6' gönderileceğini tanımlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." -msgstr "" +msgstr "Dizin, çalışan her bölüm için Günlük dosyalarını içerir." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." -msgstr "" +msgstr "Dizin, çalışan her bölüm için PID ve diğer durum bilgilerini içerir." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" -msgstr "" +msgstr "Devre dışı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" -msgstr "" +msgstr "Alan" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" -msgstr "" +msgstr "Dinamik DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" -msgstr "" +msgstr "Dinamik DNS Sürümü" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" -msgstr "" +msgstr "Düzenle" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" -msgstr "" +msgstr "DDNS sağlayıcısı ile güvenli iletişimi etkinleştirin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" -msgstr "" +msgstr "Etkin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" -msgstr "" +msgstr "Hata" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" -msgstr "" +msgstr "Yeniden Deneme Hatası Sayacı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" -msgstr "" +msgstr "Yeniden Deneme Hatası Aralığı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" -msgstr "" +msgstr "Etkinlik Ağı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "IPv4 için örnek" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "IPv6 için örnek" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" -msgstr "" +msgstr "Dosya" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "Web sayfalarında bulacağınız talimatları izleyin." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" -msgstr "" +msgstr "Desteklenen kodlar için buraya bakın" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" -msgstr "" +msgstr "IP Sürümünü Zorla" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" -msgstr "" +msgstr "IP Sürümünü Zorla desteklenmiyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" -msgstr "" +msgstr "Zorlama Aralığı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" -msgstr "" +msgstr "DNS üzerinde TCP'yi zorla" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "Zorlama Birimi" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" -msgstr "" +msgstr "Biçim" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" -msgstr "" +msgstr "Biçim: IP veya FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" +"GNU Wget, verilen ağın IP'sini kullanacaktır, cURL fiziksel arayüzü " +"kullanacaktır." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Genel Ayarlar" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "DDNS prosedürlerine erişim izni verin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" -msgstr "" +msgstr "HTTPS desteklenmiyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" +"IP güncellemesinin gerçekleşip gerçekleşmediğini veya gerekli olup " +"olmadığını doğrulamak için ana bilgisayar adı / FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" -msgstr "" +msgstr "IP adresi kaynağı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" -msgstr "" +msgstr "IP adresi sürümü" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" -msgstr "" +msgstr "IPv4 Adresi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" -msgstr "" +msgstr "IPv6 adresi köşeli parantez içinde verilmelidir" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" -msgstr "" +msgstr "IPv6 şu anda bu sistem tarafından (tam olarak) desteklenmemektedir" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" -msgstr "" +msgstr "IPv6 desteklenmiyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" -msgstr "" +msgstr "IPv6 Adresi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" +"Wget ve cURL paketi yüklüyse, iletişim için varsayılan olarak Wget " +"kullanılır." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "Bu servis bölümü devre dışı bırakılırsa başlatılamaz." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" +"Güvenli iletişim kullanıyorsanız, sunucu sertifikalarını doğrulamalısınız!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" +"Bazı sürümlerde OpenWrt'deki cURL / libcurl proxy desteği olmadan derlenir." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" -msgstr "" +msgstr "Bilgi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" -msgstr "" +msgstr "Bilgi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "Bir Güncelleme Komut Dosyası Ekle VEYA ve Güncelleme URL'si" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" +"'ca-certificates' paketini veya gerekli sertifikaları /etc/ssl/certs " +"varsayılan dizinine elle yükleyin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "Hizmeti yükleyin" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" -msgstr "Arabirim" +msgstr "Arayüz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "Güncellemelerin DDNS Sağlayıcısına gönderilmesini zorlama aralığı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" -msgstr "" +msgstr "Değiştirilen IP'yi kontrol etmek için aralık birimi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" +"Güncellemelerin DDNS Sağlayıcısına zorla gönderilmesini sağlayan aralık " +"birimi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" -msgstr "" +msgstr "Son Güncelleme" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" -msgstr "" +msgstr "Günlük Dosyası Görüntüleyicisi" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" -msgstr "" +msgstr "Günlük dizini" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" -msgstr "" +msgstr "Günlük uzunluğu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" -msgstr "" +msgstr "Günlüğü dosyaya yaz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" -msgstr "" +msgstr "Günlüğü syslog'a yaz" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" -msgstr "" +msgstr "Ana Makine Adı Ara" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" -msgstr "" +msgstr "Ad" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" +"Ne SSL ile GNU Wget ne de cURL iletişim için kullanmak üzere bir ağ seçmek " +"için kurulu." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" +"HTTPS protokolü aracılığıyla güvenli güncellemeleri desteklemek için ne " +"SSL'li GNU Wget ne de cURL yüklü." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "Ne LuCI arayüzünden ne de konsoldan." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Ağ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" -msgstr "" +msgstr "DDns güncelleyici komut dosyalarının başlatılacağı ağ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "" +msgstr "Asla" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" -msgstr "" +msgstr "Yeni DDns Hizmeti…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" -msgstr "" +msgstr "Sonraki Güncelleme" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "" +msgstr "Veri Yok" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" -msgstr "" +msgstr "Sertifika bulunamadı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" -msgstr "" +msgstr "Günlük kaydı yok" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" -msgstr "" +msgstr "Herkese açık olmayan ve varsayılan olarak engellenen IP'ler" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" -msgstr "" +msgstr "Çalışmıyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" -msgstr "" +msgstr "Uyarı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" -msgstr "" +msgstr "Günlük dosyalarında saklanan son satırların sayısı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." -msgstr "" +msgstr "İSTEĞE BAĞLI: Yalnızca IPv4 / IPv6 iletişimini kullanmaya zorlayın." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" +"İSTEĞE BAĞLI: DNS isteklerinde varsayılan UDP yerine TCP kullanımını " +"zorlayın." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" -msgstr "" +msgstr "İSTEĞE BAĞLI: İletişim için kullanılacak ağ" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." -msgstr "" +msgstr "İSTEĞE BAĞLI: Algılama ve güncellemeler için Proxy-Sunucu." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" +"İSTEĞE BAĞLI: 'Kayıtlı IP'yi algılamak için varsayılan olmayan DNS " +"Sunucusunu kullanın." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" +"Hata durumunda komut dosyası, belirli bir süre sonra başarısız olan eylemi " +"yeniden deneyecektir" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" +"Hata durumunda komut dosyası, verilen sayıda yeniden denemeden sonra " +"yürütmeyi durduracaktır" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" -msgstr "" +msgstr "İsteğe Bağlı Kodlanmış Parametre" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" -msgstr "" +msgstr "Opsiyonel Parametre" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" +"İsteğe bağlı: Güncelleme URL'sindeki [PARAMENC] 'i değiştirir (URL kodlu)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" +"İsteğe bağlı: Güncelleme URL'sindeki [PARAMOPT] 'u değiştirir (URL kodlu " +"DEĞİL)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" -msgstr "" +msgstr "Proxy sunucu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Parola" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" -msgstr "" +msgstr "CA-Sertifikası'nın Yolu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" +"IPv6 desteğini etkinleştirmek için lütfen OpenWrt ana sayfasındaki " +"talimatları izleyin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" -msgstr "" +msgstr "Lütfen [Oku] düğmesine basın" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" -msgstr "" +msgstr "Günlük dosyasını oku / yeniden oku" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "Gerçekten hizmet değiştirilsin mi?" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" -msgstr "" +msgstr "Kayıtlı IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" -msgstr "" +msgstr "Yeniden yükle" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" -msgstr "" +msgstr "Bu hizmeti yeniden yükleyin" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "Güncelleme URL'sindeki [ETKİ ALANI] 'nı değiştirir (URL kodlu)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" -msgstr "" +msgstr "Güncelleme URL'sindeki [ŞİFRE] 'yi değiştirir (URL kodlu)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" -msgstr "" +msgstr "Güncelleme URL'sindeki [KULLANICI ADI] 'nı değiştirir (URL kodlu)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" -msgstr "" +msgstr "DDns'yi yeniden başlatın" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "Yeniden Deneme Birimi" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" -msgstr "" +msgstr "Bir kere çalıştır" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" -msgstr "" +msgstr "Çalışıyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" -msgstr "" +msgstr "Betik" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "Bir hizmet seçin" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "Hizmet bu ip türünü desteklemiyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "Hizmet yüklü değil" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" +msgstr "Hizmetler" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "Hizmetin URL'sini İndirme" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "Servis listesi son güncelleme" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" msgstr "" +"Bu parametrenin 0 olarak ayarlanması, komut dosyasını yalnızca bir kez " +"çalışmaya zorlar" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" -msgstr "" +msgstr "DDNS'yi başlatın" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" -msgstr "" +msgstr "Bölge" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Durum" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" -msgstr "" +msgstr "Durum dizini" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Durdur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" -msgstr "" +msgstr "DDNS'yi durdur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" -msgstr "" +msgstr "Bu hizmeti durdur" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" -msgstr "" +msgstr "Durduruldu" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "Hizmeti değiştir" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." -msgstr "" +msgstr "Varsayılan '0' ayarı sonsuz olarak yeniden deneyecektir." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" -msgstr "" +msgstr "Hizmet adı zaten kullanılıyor" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:43 msgid "There is no service configured." -msgstr "" +msgstr "Yapılandırılmış hizmet yok." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" -msgstr "" +msgstr "Bu, içindeki günlük dosyasının mevcut içeriğidir" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" msgstr "" +"DDNS komut dosyalarını kendiniz çalıştırırsanız bu varsayılandır (yani " +"force_interval '0' olarak ayarlanmış cron aracılığıyla)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" -msgstr "" +msgstr "Bu, seçilen arayüze otomatik olarak ayarlanacaktır" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" -msgstr "" +msgstr "Zamanlayıcı Ayarları" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" -msgstr "" +msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" -msgstr "" +msgstr "Algılanacak URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" -msgstr "" +msgstr "Bilinmiyor" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "DDns Hizmetleri Listesini Güncelle" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "DDNS Sağlayıcınızı güncellemek için kullanılacak URL'yi güncelleyin." + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" +"Hizmet dosyasını indirmek için kullanılan URL. Varsayılan olarak ana openwrt " +"ddns paket deposudur." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" -msgstr "" +msgstr "Güvenli HTTP kullan" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" -msgstr "" +msgstr "cURL kullan" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" -msgstr "" +msgstr "Sistemlerin IP Adresini okumak için kullanıcı tanımlı komut dosyası" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Kullanıcı adı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" -msgstr "" +msgstr "Özel DNS Sunucusunun kullanılması desteklenmez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" -msgstr "" +msgstr "5 dakika == 300 saniyenin altındaki değerler desteklenmez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" -msgstr "" +msgstr "\"0\" dışındaki \"Kontrol Aralığı\" altındaki değerler desteklenmez" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" -msgstr "" +msgstr "Doğrula" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" -msgstr "" +msgstr "Uyarı" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" +"Günlük dosyasına ayrıntılı mesajlar yazar. Dosya otomatik olarak kırpılacak." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" +"Günlük mesajlarını syslog'a yazar. Kritik Hatalar her zaman syslog'a yazılır." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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 "" +"Kayıtlı IP'nizi algılamak için bir DNS sunucusu belirtmeniz gerekiyorsa, " +"'bind-host' veya 'knot-host' veya 'drill' veya 'hostip' paketini " +"kurmalısınız." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" +"DNS talepleri için 'bind-host' veya 'knot-host' veya 'drill' paketini " +"kurmalısınız." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." -msgstr "" +msgstr "'Wget' veya 'curl' veya 'uclient-fetch' paketini kurmalısınız." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" +"'Wget' veya 'curl' veya 'uclient-fetch' i 'libustream-*ssl' paketi ile " +"kurmalısınız." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." -msgstr "" +msgstr "'Wget' veya 'curl' paketini kurmalısınız." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" +"'Wget' veya 'uclient-fetch' paketini kurmalı veya libcurl'yi " +"değiştirmelisiniz." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." -msgstr "" +msgstr "cURL yüklendi, ancak libcurl proxy desteği olmadan derlendi." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" -msgstr "" +msgstr "Proxy Desteği olmadan cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" -msgstr "" +msgstr "özel" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" -msgstr "" +msgstr "gün" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" -msgstr "" +msgstr "dizin veya yol/dosya" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" -msgstr "" +msgstr "saat" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" -msgstr "" +msgstr "dakika" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" -msgstr "" +msgstr "veya" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" -msgstr "" +msgstr "veya sisteminizi en son OpenWrt Sürümüne güncelleyin" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" -msgstr "" +msgstr "saniye" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" +"HTTPS'yi sunucu sertifikalarının doğrulanması olmadan çalıştırmak için " +"(güvenli değil)" #~ msgid "Loading" #~ msgstr "Yükleniyor" diff --git a/applications/luci-app-ddns/po/uk/ddns.po b/applications/luci-app-ddns/po/uk/ddns.po index 20f02861e0..eb0b299248 100644 --- a/applications/luci-app-ddns/po/uk/ddns.po +++ b/applications/luci-app-ddns/po/uk/ddns.po @@ -4,642 +4,706 @@ 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: 2020-03-11 01:51+0000\n" -"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"PO-Revision-Date: 2021-04-04 07:26+0000\n" +"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/uk/>\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "Додати новий сервіс..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "Додаткові параметри" +msgstr "Додаткові налаштування" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "Дозволити не публічні IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "Основні налаштування" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "Скасувати" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "Інтервал перевірки" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "" + #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "Конфігурація" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "Помилка конфігурації" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "Створити сервіс" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "Поточні налаштування:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "Користувацький URL оновлення" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "DDns" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS сервер" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "Формат дати" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "Вимкнено" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "Домен" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Динамічний DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "Редагувати" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "Помилка" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "Файл" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "Формат" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "Глобальні налаштування" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "Загальні параметри" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "HTTPS не підтримується" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP адреса джерела" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "Версія IP адреси" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "Адреса IPv4" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 не підтримується" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "Адреса IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "Інформація" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "Інформація" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "Інтерфейс" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "Директорія для звіту" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "Назва" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "Мережа" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "Ніколи" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "" +msgstr "Немає даних" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "Зауваження" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "Пароль" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "Шлях до сертифіката CA" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "Сервіси" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" -msgstr "Стан" +msgstr "Штат" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "Стан" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "Зупинити" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "Зупинено" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -647,172 +711,183 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "Невідомо" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "Ім'я користувача" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "Застереження" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "днів" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "годин" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "хв." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "або" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "секунди" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" +#~ msgid "Global Configuration" +#~ msgstr "Глобальні налаштування" + #~ msgid "-- custom --" #~ msgstr "-- нетипово --" @@ -826,9 +901,6 @@ msgstr "" #~ "Динамічний DNS дозволяє вашому маршрутизатору бути доступним за " #~ "фіксованим доменним ім'ям, маючи динамічну IP-адресу." -#~ msgid "Global Settings" -#~ msgstr "Загальні параметри" - #~ msgid "Loading" #~ msgstr "Завантаження" diff --git a/applications/luci-app-ddns/po/vi/ddns.po b/applications/luci-app-ddns/po/vi/ddns.po index 2e2780d2f8..bd29888b80 100644 --- a/applications/luci-app-ddns/po/vi/ddns.po +++ b/applications/luci-app-ddns/po/vi/ddns.po @@ -2,8 +2,8 @@ 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-11-13 13:07+0000\n" -"Last-Translator: Le Van Uoc <kunkun3012@gmail.com>\n" +"PO-Revision-Date: 2020-11-21 12:21+0000\n" +"Last-Translator: Darias <DariasLuc@gmail.com>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsddns/vi/>\n" "Language: vi\n" @@ -11,633 +11,697 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" -msgstr "" +msgstr "Cài đặt nâng cao" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 -msgid "Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 -msgid "Configuration Error" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 +msgid "Configuration" +msgstr "Cấu hình" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 +msgid "Configuration Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 #, fuzzy msgid "Custom update-URL" msgstr "Tùy chỉnh cập nhật - URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "Dynamic DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" -msgstr "" +msgstr "Bật" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -msgid "" -"If this service section is disabled it could not be started.<br />Neither " -"from LuCI interface nor from console" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "" @@ -645,169 +709,177 @@ msgstr "" msgid "There is no service configured." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "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/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "" diff --git a/applications/luci-app-ddns/po/zh_Hans/ddns.po b/applications/luci-app-ddns/po/zh_Hans/ddns.po index e9f201f902..2b9f80b82d 100644 --- a/applications/luci-app-ddns/po/zh_Hans/ddns.po +++ b/applications/luci-app-ddns/po/zh_Hans/ddns.po @@ -5,8 +5,8 @@ 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: 2020-04-11 07:51+0000\n" -"Last-Translator: 01230 <4585006@gmail.com>\n" +"PO-Revision-Date: 2021-05-27 16:32+0000\n" +"Last-Translator: Eric <spice2wolf@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsddns/zh_Hans/>\n" "Language: zh_Hans\n" @@ -14,44 +14,44 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." msgstr "基于安全原因路径中不允许含有 \"../\" 。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." msgstr "添加新服务..." -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "高级设置" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" msgstr "允许非公网 IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "基本设置" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" msgstr "使用的接口" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" msgstr "不支持绑定到一个指定的网络" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" msgstr "BusyBox 的 nslookup 和 wget 不支持指定 IP 协议版本与 DDNS 供应商通讯!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" @@ -59,380 +59,393 @@ msgstr "" "向 DNS 服务器查询时,BusyBox 的 nslookup 和 hostip 不支持使用 TCP ,而是使用" "默认的 UDP!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "当前编译版本中的 BusyBox 的 nslookup 不能正确处理给定的 DNS 服务器!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "Ca 证书路径" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "用于下载服务数据的 Ca 证书路径。设置 IGNORE 将跳过证书验证。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "取消" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "检查时间周期" +msgstr "检查间隔" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "检查时间单位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "正在检查服务支持..." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" msgstr "配置" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" msgstr "配置错误" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "在这里修改动态 DNS 服务的详细配置。" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "创建服务" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" msgstr "当前配置:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." msgstr "当前的 DDNS 不会在系统启动时或者网口事件时运行。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." msgstr "用来更新 DDNS 的自定义脚本。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "自定义更新 URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "自定义更新脚本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" msgstr "DDNS 已禁止自动运行" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" msgstr "DDNS 已开启自动运行" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" msgstr "DDNS 服务提供商" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" msgstr "动态DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" msgstr "动态DNS 服务项" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" msgstr "不支持使用 TCP 进行 DNS 解析" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" msgstr "DNS-服务器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "日期格式" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "定义读取系统IP地址的网页。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" msgstr "设定用来读取系统 IP 地址的接口" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" msgstr "设定用来读取系统 IP 地址的网络" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" msgstr "设定从哪里读取系统 IP 地址,这个地址会发送到 DDNS 提供商" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "设定哪一个 IP 地址(IPv4 或 IPv6)会被发送给 DDNS 提供商" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." msgstr "用于存在每一个项目运行日志的的目录。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." msgstr "包含了每一个项目运行的PID和其他状态信息的目录。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" msgstr "已禁用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" msgstr "域名" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "动态 DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "动态 DNS 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "编辑" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" msgstr "启用安全连接与 DDNS 提供商联系" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "已启用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "错误" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" msgstr "错误重试计数" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "错误重试间隔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "事件网络" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "IPv4示例: http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "IPv4 的例子" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "IPv6示例: http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "IPv6 的例子" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "文件" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "请看这里获得关于参数设置的详细信息。" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "按照网页上的说明操作。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" msgstr "查看这里获取支持的编码" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "强制设定 IP 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "不支持强制设定 IP 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" msgstr "强制更新的周期" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "强制使用 TCP 进行 DNS 查询" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "强制更新单位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "格式" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" msgstr "格式:IP 或者 FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 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/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" -msgstr "全局配置" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" +msgstr "全局设置" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "授予访问 DDNS 程序的权限" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "不支持 HTTPS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" msgstr "主机名/FQDN 验证,如果 IP 更新发生或必要" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP 地址来源" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "IP 地址版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4 地址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" -msgstr "IPv6 地址必须填写在中括号(\"[ ]\")内" +msgstr "IPv6 地址必须填写在中括号(\"[ ]\")内" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" msgstr "该系统当前不(完全)支持IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" msgstr "IPv6 不被支持" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6 地址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." msgstr "如果 Wget 和 cURL 包都安装了,默认会用 Wget 来通信。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "如果禁用此服务项,则不会启动。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" msgstr "如果使用安全通信,您应该验证服务器证书!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." msgstr "OpenWrt 中某些 cURL/libcurl 版本编译时没有启用代理服务器支持。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "信息" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "信息" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "插入更新脚本或更新 URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 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/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "安装服务" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "接口" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" -"向 DDNS 提供商发送记录更新请求的时间间隔<br />将此参数设置为 0 则脚本仅运行一" -"次" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "强制更新到 DDNS 提供商的间隔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" msgstr "检查 IP 变更间隔的单位" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" msgstr "强制更新到 DDNS 提供商的间隔的单位" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "强烈不建议初次使用的用户修改本页设定。" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" msgstr "上次更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" msgstr "日志查看器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "日志目录" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "日志长度" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" msgstr "把日志记录到文件" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" msgstr "记录日志到 syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "查询主机名" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" msgstr "名称" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 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/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -440,215 +453,262 @@ msgstr "" "包含 SSL 支持的 GNU Wget 或者 cURL 均未安装,无法通过 HTTPS 协议进行安全的更" "新。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "无论是从 LuCI 界面还是从控制台。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "网络" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "DDNS 更新脚本将会运行于该网络" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" -msgstr "从不" +msgstr "永不" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "新建 DDNS 服务项…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "下次更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" -msgstr "无数据" +msgstr "没有数据" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" msgstr "找不到证书" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "无日志" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" msgstr "非公网 IP 以及默认被屏蔽的 IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" msgstr "未运行" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "注意" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" msgstr "日志文件中的最后几行" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." msgstr "可选:强制仅使用 IPv4/IPv6 通信。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "可选:强制使用 TCP 而非 UDP 请求 DNS。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "可选:用于通信的网络" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." msgstr "可选:用于检测以及更新的代理服务器。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "可选:使用非默认 DNS 服务器检测\"已注册的 IP 地址\"。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" -msgstr "当出错时,脚本将会重试失败的动作的次数" +msgstr "当出错时,脚本将会重试失败操作的次数" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" msgstr "当出错时,脚本将会重试该次数之后退出" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" msgstr "可选编码参数" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" msgstr "可选参数" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "可选:替换更新 URL(已编码 URL)中的 [PARAMENC]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" msgstr "可选:替换更新 URL(未编码 URL)中的 [PARAMENC]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "代理服务器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "密码" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" msgstr "CA 证书路径" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" msgstr "请按照OpenWrt主页上的说明启用IPv6支持" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" msgstr "请按下 [读取] 按钮" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" msgstr "读取/重新读取 日志文件" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "确认切换服务?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" msgstr "已注册的 IP 地址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" -msgstr "重新载入" +msgstr "重新加载" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" msgstr "重启这个服务项" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "替换 Update-URL 中的 [DOMAIN] (URL-encoded)" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "替换更新 URL(已编码 URL)中的 [PASSWORD]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "替换更新 URL(已编码 URL)中的 [USERNAME]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" msgstr "重启 DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "重试时间单位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" msgstr "运行一次" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" msgstr "运行中" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "脚本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "选择服务" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "服务不支持此 ip 类型" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "服务未安装" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "服务" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "服务下载网址" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "更新最新服务列表" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "将此参数设置为 0 将强制脚本仅运行一次" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" msgstr "运行 DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "状态" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "状态" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "状态目录" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" msgstr "停止 DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" msgstr "停止这个服务" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "已停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "切换服务" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." msgstr "默认设置“0”将无限重试。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" msgstr "这个服务项名称已经被使用" @@ -656,12 +716,12 @@ msgstr "这个服务项名称已经被使用" msgid "There is no service configured." msgstr "没有已经配置好的服务项。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" msgstr "这是日志文件中的当前内容" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" @@ -669,84 +729,90 @@ msgstr "" "如果您自己运行 DDNS 脚本(即通过 cron force_interval设置为\"0\"),则这是默认" "值" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" msgstr "这将自动设置为选定的网口" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "计时器设定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "用于检测的 URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" msgstr "未知" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "更新 DDns 服务列表" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "用于更新到DDNS提供商的更新URL。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 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。" +"Url used to download services file. By default is the master openwrt ddns " +"package repo." +msgstr "用于下载服务文件的 Url 。默认情况下是主 openwrt ddns 包仓库。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "使用 HTTPS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "使用 cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" msgstr "使用设定的脚本来读取系统 IP 地址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" msgstr "用户名" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "不支持使用特定的 DNS 服务器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "不支持小于5分钟== 300秒的值" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" msgstr "不支持除低于“检查间隔”的值,除了“ 0”" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "验证" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "警告" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." msgstr "向日志中写入详细信息。文件将自动缩小。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." msgstr "把日志写入系统日志。无论是否启用这项,错误信息总是会被写入系统日志。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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." @@ -754,80 +820,122 @@ msgstr "" "如果您需要指定 DNS 服务器来检测您注册的 IP,您应该安装“bind-host”或“knot-" "host”或“drill”或“hostip”软件包。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 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/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "您应该安装“wget”或“curl”或“uclient-fetch”软件包。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 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/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." msgstr "您应该安装“wget”或“curl”软件包。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." msgstr "您应该安装“wget”或“uclient-fetch”软件包,或替换 libcurl。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." msgstr "cURL 已经安装,但是 libcurl 编译时没有启用代理支持。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" msgstr "cURL 没有包含代理支持" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" msgstr "自定义" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "天" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" msgstr "目录或者到文件的路径" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "小时" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" msgstr "分钟" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" msgstr "或者" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" msgstr "或将系统更新到最新的 OpenWrt 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "秒" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" msgstr "使用 HTTPS 但不检查服务器证书(不安全)" +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "在这里修改动态 DNS 服务的详细配置。" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "IPv4示例: http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "IPv6示例: http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "请看这里获得关于参数设置的详细信息。" + +#~ msgid "Global Configuration" +#~ msgstr "全局配置" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "如果服务配置被禁用,那么它将不能被启动。<br />无论是通过 LuCI 页面还是通过" +#~ "终端。" + +#~ msgid "" +#~ "Interval to force updates send to DDNS Provider<br />Setting this " +#~ "parameter to 0 will force the script to only run once" +#~ msgstr "" +#~ "向 DDNS 提供商发送记录更新请求的时间间隔<br />将此参数设置为 0 则脚本仅运" +#~ "行一次" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "强烈不建议初次使用的用户修改本页设定。" + +#~ msgid "" +#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "instructions you will find on their WEB page." +#~ msgstr "" +#~ "DDNS 提供商用于更新 DDNS 的 URL。<br />跟随教程,您可以在它们的网站上找到" +#~ "这个 URL。" + #~ msgid "Defines the Web page to read systems IP-Address from<br>" #~ msgstr "定义要从读取系统 IP 地址的网页<br>" @@ -843,24 +951,9 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)" #~ msgid "Defines the Web page to read systems IP-Address from" #~ msgstr "设定用来读取系统 IP 地址的网页" -#~ msgid "Example for IPv4" -#~ msgstr "IPv4 的例子" - -#~ msgid "Example for IPv6" -#~ msgstr "IPv6 的例子" - -#~ msgid "If this service section is disabled it could not be started." -#~ msgstr "如果禁用此服务项,则不会启动。" - #~ msgid "Install 'ca-certificates' package or needed certificates" #~ msgstr "请安装 'ca-certificates' 包或者需要的证书" -#~ msgid "Interval to force updates send to DDNS Provider" -#~ msgstr "强制更新到 DDNS 提供商的间隔" - -#~ msgid "Update URL to be used for updating your DDNS Provider." -#~ msgstr "用于更新到DDNS提供商的更新URL。" - #~ msgid "" #~ "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " #~ "package," @@ -978,9 +1071,6 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)" #~ msgid "Forced IP Version don't matched" #~ msgstr "强制设定的 IP 版本不匹配" -#~ msgid "Global Settings" -#~ msgstr "全局设置" - #~ msgid "Hints" #~ msgstr "提示" diff --git a/applications/luci-app-ddns/po/zh_Hant/ddns.po b/applications/luci-app-ddns/po/zh_Hant/ddns.po index d4f6e9ebf2..f67212fe54 100644 --- a/applications/luci-app-ddns/po/zh_Hant/ddns.po +++ b/applications/luci-app-ddns/po/zh_Hant/ddns.po @@ -5,8 +5,8 @@ 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: 2020-06-30 13:41+0000\n" -"Last-Translator: Hulen <shift0106@gmail.com>\n" +"PO-Revision-Date: 2021-01-25 09:27+0000\n" +"Last-Translator: akibou <jinwenxin1997@icloud.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsddns/zh_Hant/>\n" "Language: zh_Hant\n" @@ -14,425 +14,439 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:996 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 msgid "\"../\" not allowed in path for Security Reason." -msgstr "基於安全原因,不允許在路徑中含有 \"../\"。" +msgstr "基於安全原因,不容許在路徑中含有 \"../\"。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:297 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:326 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:531 msgid "Add new services..." -msgstr "加入新服務..." +msgstr "加入新服務…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:446 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605 msgid "Advanced Settings" msgstr "進階設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:965 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:399 msgid "Allow non-public IP's" -msgstr "允許非公網 IP" +msgstr "容許非公共 IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:445 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:604 msgid "Basic Settings" msgstr "基本設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:884 msgid "Bind Network" -msgstr "使用的介面" +msgstr "繫結網路" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:226 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:330 msgid "Binding to a specific network not supported" -msgstr "不支援繫結到一個指定的網路" +msgstr "不支援繫結到特定的網路" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:253 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:357 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 協議版" -"本!" +"BusyBox 的 nslookup 和 Wget 不支援使用特定的 IP 版本與 DDNS 提供者通信!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:264 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:368 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!" +"當請求 DNS 伺服器時,BusyBox 的 nslookup 和 hostip 只支援預設的 UDP 通信,無" +"法規定使用 TCP !" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:379 msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" -msgstr "當前編譯版本中 BusyBox 的 nslookup 在處理給定的 DNS 伺服器不正確!" +msgstr "現行編譯版本中 BusyBox 的 nslookup 無法正確處理給定的 DNS 伺服器!" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:450 +msgid "Ca Certs path" +msgstr "CA 憑證路徑" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:332 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451 +msgid "" +"Ca Certs path that will be used to download services data. Set IGNORE to " +"skip certificate validation." +msgstr "下載服務資料使用的 CA 憑證路徑;設定 IGNORE 來略過憑證驗證。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:537 msgid "Cancel" msgstr "取消" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:962 msgid "Check Interval" -msgstr "檢查時間週期" +msgstr "檢查間隔時間" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:977 +msgid "Check Unit" +msgstr "檢查時間單位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:522 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:656 +msgid "Checking the service support..." +msgstr "檢查服務支援中…" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27 msgid "Configuration" -msgstr "設定" +msgstr "組態" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:91 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:212 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1124 msgid "Configuration Error" -msgstr "設定錯誤" +msgstr "組態錯誤" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 -msgid "" -"Configure here the details for all Dynamic DNS services including this LuCI " -"application." -msgstr "在這裡修改動態 DNS 服務的詳細配置。" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:541 msgid "Create service" msgstr "建立服務" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 msgid "Current setting:" -msgstr "目前設定:" +msgstr "現行設定:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:75 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:166 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 msgid "Currently DDNS updates are not started at boot or on interface events." -msgstr "目前的 DDNS 不會在系統啟動時或者介面事件時執行。" +msgstr "當系統啟動或觸發介面事件時,現行 DDNS 更新不會被啟動。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:557 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:719 msgid "Custom update script to be used for updating your DDNS Provider." -msgstr "用來更新動態 DNS 的自訂指令碼。" +msgstr "使用自訂更新指令碼來更新您的 DDNS 提供者。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:535 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:699 msgid "Custom update-URL" msgstr "自訂更新 URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:556 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:718 msgid "Custom update-script" msgstr "自訂更新指令碼" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:73 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:194 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart disabled" -msgstr "DDNS 自動啟動已禁用。" +msgstr "DDNS 自動啟動已停用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:72 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:169 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:193 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:277 msgid "DDNS Autostart enabled" -msgstr "DDNS 已開啟自動執行" +msgstr "DDNS 自動啟動已啟用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:482 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:504 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:516 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:638 msgid "DDNS Service provider" -msgstr "DDNS 服務提供商" +msgstr "DDNS 服務提供者" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:185 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:282 msgid "DDns" -msgstr "" +msgstr "DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:430 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:582 msgid "DDns Service" -msgstr "動態 DNS 服務" +msgstr "DDNS 服務" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:367 msgid "DNS requests via TCP not supported" -msgstr "不支援使用 TCP 進行 DNS 解析" +msgstr "不支援透過 TCP 處理 DNS 請求" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:765 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 msgid "DNS-Server" -msgstr "DNS-伺服器" +msgstr "DNS 伺服器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:974 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:408 msgid "Date format" msgstr "日期格式" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 -msgid "Defines the Web page to read systems IP-Address from<br />" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:834 +msgid "Defines the Web page to read systems IP-Address from." +msgstr "定義網頁來讀取系統 IP 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 msgid "Defines the interface to read systems IP-Address from" -msgstr "設定用來讀取系統 IP 位址的介面" +msgstr "定義介面來讀取系統 IP 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:676 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:826 msgid "Defines the network to read systems IP-Address from" -msgstr "" +msgstr "定義網路來讀取系統 IP 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 msgid "" "Defines the source to read systems IP-Address from, that will be send to the " "DDNS provider" -msgstr "" +msgstr "定義讀取系統 IP 位址的來源,該位址將被送至 DDNS 提供者。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:471 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:508 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:628 msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" -msgstr "設定哪一個 IP 位址(IPv4 或 IPv6)會被髮送給 DDNS 提供商" +msgstr "定義要被送至 DDNS 提供者的 \"IPv4/IPv6\" 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:424 msgid "Directory contains Log files for each running section." -msgstr "" +msgstr "包含每個運行部分的日誌檔目錄。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:984 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 msgid "" "Directory contains PID and other status information for each running section." -msgstr "" +msgstr "包含每個運行區段的 PID 和其他狀態資訊目錄。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 msgid "Disabled" -msgstr "已禁用" +msgstr "已停用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:576 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:735 msgid "Domain" -msgstr "網域" +msgstr "網域名稱" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:151 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:258 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:7 #: applications/luci-app-ddns/root/usr/share/luci/menu.d/luci-app-ddns.json:3 msgid "Dynamic DNS" msgstr "動態 DNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:157 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:265 msgid "Dynamic DNS Version" msgstr "動態 DNS 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:354 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550 msgid "Edit" msgstr "編輯" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768 msgid "Enable secure communication with DDNS provider" -msgstr "啟用安全連線與 DDNS 提供商聯絡" +msgstr "啟用與 DDNS 提供者的安全通訊" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:409 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:610 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1132 msgid "Enabled" msgstr "啟用" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:809 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 msgid "Error" msgstr "錯誤" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022 msgid "Error Retry Counter" -msgstr "錯誤重試計數" +msgstr "錯誤重試次數" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:902 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032 msgid "Error Retry Interval" msgstr "錯誤重試間隔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:724 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:858 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:867 msgid "Event Network" msgstr "事件網路" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:686 -msgid "Example for IPv4: http://checkip.dyndns.com" -msgstr "IPv4 範例:http://checkip.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +msgid "Example for IPv4" +msgstr "IPv4 實例" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:687 -msgid "Example for IPv6: http://checkipv6.dyndns.com" -msgstr "IPv6 範例:http://checkipv6.dyndns.com" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838 +msgid "Example for IPv6" +msgstr "IPv6 實例" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:819 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956 msgid "File" msgstr "檔案" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:961 -msgid "For detailed information about parameter settings look here." -msgstr "請看這裡獲得關於引數設定的詳細資訊" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 +msgid "Follow instructions you will find on their WEB page." +msgstr "請跟隨您在網頁上找到的說明進行操作。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:976 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410 msgid "For supported codes look here" -msgstr "檢視這裡獲取支援的編碼" +msgstr "要獲取支援的代碼,請檢視這裡" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:896 msgid "Force IP Version" msgstr "強制設定 IP 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:252 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:356 msgid "Force IP Version not supported" msgstr "不支援強制設定 IP 版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:853 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986 msgid "Force Interval" -msgstr "設定週期" +msgstr "強制更新間隔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:917 msgid "Force TCP on DNS" msgstr "強制使用 TCP 進行 DNS 查詢" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1012 +msgid "Force Unit" +msgstr "強制時間單位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:929 msgid "Format" msgstr "格式" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:908 msgid "Format: IP or FQDN" -msgstr "格式:IP 或者 FQDN" +msgstr "格式:IP 或 FQDN" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:231 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335 msgid "" "GNU Wget will use the IP of given network, cURL will use the physical " "interface." -msgstr "GNU Wget 將會使用給定的網路的 IP 位址,而 cURL 將會使用物理介面。" +msgstr "GNU Wget 將使用給定網路的 IP,cURL 則會使用實體介面。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 -msgid "Global Configuration" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:263 +msgid "Global Settings" msgstr "全域設定" #: applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json:3 msgid "Grant access to ddns procedures" -msgstr "" +msgstr "給予存取 DDNS 程序的權限" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:318 msgid "HTTPS not supported" msgstr "不支援 HTTPS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:462 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 msgid "Hostname/FQDN to validate, if IP update happen or necessary" -msgstr "主機名稱/FQDN 驗證,如果 IP 更新發生或必要" +msgstr "使用「主機名稱/FQDN」驗證(如果發生 IP 更新或有必要時)" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:787 msgid "IP address source" msgstr "IP 位址來源" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:470 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:507 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627 msgid "IP address version" msgstr "IP 位址版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:476 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:510 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:632 msgid "IPv4-Address" msgstr "IPv4 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931 msgid "IPv6 address must be given in square brackets" -msgstr "IPv6 位址必須填寫在中括號(\"[ ]\")內" +msgstr "IPv6 位址必須被中括號包圍起來" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:205 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:309 msgid "IPv6 is currently not (fully) supported by this system" -msgstr "" +msgstr "該系統目前尚不(完全)支援 IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:204 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:308 msgid "IPv6 not supported" -msgstr "IPv6 不被支援" +msgstr "不支援 IPv6" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:478 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:512 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:634 msgid "IPv6-Address" msgstr "IPv6 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443 msgid "" "If Wget and cURL package are installed, Wget is used for communication by " "default." -msgstr "" +msgstr "如果同時安裝了 Wget 和 cURL 套件,則預設使用 Wget 來通信。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 -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/htdocs/luci-static/resources/view/ddns/overview.js:611 +msgid "If this service section is disabled it could not be started." +msgstr "如果設定為停用,該服務部分將不會啟動。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:287 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 msgid "If using secure communication you should verify server certificates!" -msgstr "如果使用安全通訊,您應該驗證伺服器證書!" +msgstr "如果使用安全通訊,您應該驗證伺服器憑證!" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:219 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:233 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:245 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349 msgid "" "In some versions cURL/libcurl in OpenWrt is compiled without proxy support." -msgstr "OpenWrt 中,cURL/libcurl 的某些版本編譯時沒有啟用代理伺服器支援" +msgstr "OpenWrt 中的某些 \"cURL/libcurl\" 編譯版本不支援代理伺服器。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:806 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944 msgid "Info" msgstr "資訊" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:153 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:262 msgid "Information" msgstr "資訊" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:548 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:568 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:728 msgid "Insert a Update Script OR a Update URL" -msgstr "" +msgstr "插入更新指令碼或更新 URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:289 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 msgid "" "Install 'ca-certificates' package or needed certificates by hand into /etc/" "ssl/certs default directory" msgstr "" -"手動將“ca-certificates”包或需要的證書安裝到 /etc/ssl/certs 的預設目錄中" +"手動安裝 \"ca-certificates\" 套件或所需憑證到預設目錄 \"/etc/ssl/certs\"" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:641 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:694 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:669 +msgid "Install Service" +msgstr "安裝服務" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:793 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:843 msgid "Interface" msgstr "介面" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:854 -msgid "" -"Interval to force updates send to DDNS Provider<br />Setting this parameter " -"to 0 will force the script to only run once" -msgstr "" +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987 +msgid "Interval to force updates send to DDNS Provider" +msgstr "強制將更新發送至 DDNS 提供者的間隔時間" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:844 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:978 msgid "Interval unit to check for changed IP" -msgstr "檢查 IP 變更間隔的單位" +msgstr "檢查 IP 變更的間隔時間單位" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:881 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1013 msgid "Interval unit to force updates send to DDNS Provider" -msgstr "強制更新到 DDNS 提供商的間隔的單位" +msgstr "強制將更新發送至 DDNS 提供者的間隔時間單位" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958 -msgid "It is NOT recommended for casual users to change settings on this page." -msgstr "強烈不建議初次使用的使用者修改本頁設定。" - -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 msgid "Last Update" -msgstr "上次更新" +msgstr "最後更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:448 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 msgid "Log File Viewer" -msgstr "日誌檢視器" +msgstr "日誌檔檢視器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423 msgid "Log directory" msgstr "日誌目錄" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1001 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435 msgid "Log length" msgstr "日誌長度" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:813 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950 msgid "Log to file" -msgstr "把日誌記錄到檔案" +msgstr "將日誌寫入檔案" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:800 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:938 msgid "Log to syslog" -msgstr "把日誌記錄到系統日誌" +msgstr "將日誌寫入 syslog" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:461 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:619 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29 msgid "Lookup Hostname" msgstr "查詢主機名稱" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:314 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:391 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114 msgid "Name" -msgstr "分享名稱" +msgstr "名稱" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:331 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/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:319 msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " "HTTPS protocol." @@ -440,391 +454,486 @@ msgstr "" "包含 SSL 支援的 GNU Wget 或者 cURL 均未安裝,無法通過 HTTPS 協議進行安全的更" "新。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:639 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:675 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613 +msgid "Neither from LuCI interface nor from console." +msgstr "無論是從 LuCI 介面抑或從主控台。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:825 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31 msgid "Network" msgstr "網路" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:714 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:859 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:868 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 msgid "Network on which the ddns-updater scripts will be started" msgstr "DDNS 更新指令碼將會運行於該網路" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:93 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:214 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 msgid "Never" msgstr "從不" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:317 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498 msgid "New DDns Service…" msgstr "新增 DDNS 服務…" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:414 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28 msgid "Next Update" msgstr "下次更新" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:92 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:213 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40 msgid "No Data" msgstr "無資料" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:286 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:390 msgid "No certificates found" -msgstr "找不到證書" +msgstr "找不到憑證" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:805 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943 msgid "No logging" msgstr "無日誌" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:400 msgid "Non-public and by default blocked IP's" -msgstr "非公網 IP 以及預設被鎖定的 IP" +msgstr "非公共和預設受阻的 IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:95 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:216 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106 msgid "Not Running" -msgstr "" +msgstr "未運行" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:807 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:945 msgid "Notice" msgstr "注意" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1002 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:436 msgid "Number of last lines stored in log files" -msgstr "日誌檔案中的最後幾行" +msgstr "日誌檔中儲存的最後行數" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication." -msgstr "可選:強制僅使用 IPv4/IPv6 通訊。" +msgstr "可選:強制僅使用純 IPv4/IPv6 通訊。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:779 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." -msgstr "可選:強制使用 TCP 而非 UDP 請求 DNS。" +msgstr "可選:強制使用 TCP 而非 UDP 處理 DNS 請求。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:743 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 msgid "OPTIONAL: Network to use for communication" msgstr "可選:用於通訊的網路" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:789 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:927 msgid "OPTIONAL: Proxy-Server for detection and updates." -msgstr "可選:用於檢測以及更新的代理伺服器。" +msgstr "可選:用於檢測和更新的代理伺服器。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:906 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." -msgstr "可選:使用非預設 DNS 伺服器檢測\"已註冊的 IP 位址\"。" +msgstr "可選:使用非預設 DNS 伺服器來對「已註冊的 IP」檢測。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:914 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043 msgid "On Error the script will retry the failed action after given time" -msgstr "當出錯時,指令碼將會重試失敗的動作的次數" +msgstr "當出錯時,指令碼將在給定時間後重試失敗的操作" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:892 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:903 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1023 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1033 msgid "On Error the script will stop execution after given number of retrys" -msgstr "當出錯時,指令碼將會重試該次數之後退出" +msgstr "當出錯時,指令碼將在給定的重試次數執行完成後退出" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754 msgid "Optional Encoded Parameter" -msgstr "可選編碼引數" +msgstr "可選編碼參數" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760 msgid "Optional Parameter" -msgstr "可選引數" +msgstr "可選參數" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:755 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" -msgstr "可選:替換更新 URL(已編碼 URL)中的 [PARAMENC]" +msgstr "可選:在更新 URL(已編碼 URL)中替換 [PARAMENC]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:607 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:761 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" -msgstr "可選:替換更新 URL(未編碼 URL)中的 [PARAMENC]" +msgstr "可選:在更新 URL(未編碼 URL)中替換 [PARAMENC]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:788 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:926 msgid "PROXY-Server" msgstr "代理伺服器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:591 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747 msgid "Password" msgstr "密碼" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773 msgid "Path to CA-Certificate" -msgstr "CA 證書路徑" +msgstr "CA 憑證路徑" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:206 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310 msgid "" "Please follow the instructions on OpenWrt's homepage to enable IPv6 support" -msgstr "" +msgstr "請跟隨 OpenWrt 首頁上的說明來啟用 IPv6 支援" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071 msgid "Please press [Read] button" -msgstr "請按下\"讀取\"按鈕" +msgstr "請點按[讀取]按鈕" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:934 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054 msgid "Read / Reread log file" -msgstr "讀取/重新讀取日誌檔案" +msgstr "讀取/重讀日誌檔" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:397 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +msgid "Really switch service?" +msgstr "真的要更換服務嗎?" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30 msgid "Registered IP" -msgstr "已註冊的 IP 位址" +msgstr "已註冊 IP" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:572 msgid "Reload" msgstr "重新載入" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:362 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555 msgid "Reload this service" -msgstr "重新載入這個服務" +msgstr "重新載入此服務" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:736 +msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)" +msgstr "" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:592 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" msgstr "替換更新 URL(已編碼 URL)中的 [PASSWORD]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:584 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:742 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" msgstr "替換更新 URL(已編碼 URL)中的 [USERNAME]" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:196 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:288 msgid "Restart DDns" -msgstr "" +msgstr "重新啟動 DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1042 +msgid "Retry Unit" +msgstr "重試時間單位" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 msgid "Run once" -msgstr "執行一次" +msgstr "運行一次" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:106 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:439 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:227 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1109 msgid "Running" -msgstr "" +msgstr "運行中" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:642 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:794 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851 msgid "Script" msgstr "指令碼" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:294 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:521 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:655 +msgid "Select a service" +msgstr "選擇一項服務" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:523 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:658 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678 +msgid "Service doesn't support this ip type" +msgstr "服務不支援此 IP 類型" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:657 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:668 +msgid "Service not installed" +msgstr "未安裝服務" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459 msgid "Services" msgstr "服務" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:454 +msgid "Services URL Download" +msgstr "服務 URL 下載" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:292 +msgid "Services list last update" +msgstr "服務列表最後更新" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:989 +msgid "Setting this parameter to 0 will force the script to only run once" +msgstr "設定此參數為「0」,將強制指令碼只運行一次" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Start DDNS" -msgstr "執行 DDNS" +msgstr "啟動 DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:162 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:270 msgid "State" msgstr "狀態" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:433 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103 msgid "Status" msgstr "狀態" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417 msgid "Status directory" msgstr "狀態目錄" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:571 msgid "Stop" msgstr "停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:68 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:188 msgid "Stop DDNS" -msgstr "" +msgstr "停止 DDNS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:560 msgid "Stop this service" -msgstr "" +msgstr "停止此服務" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:19 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:18 msgid "Stopped" msgstr "已停止" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:894 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:905 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:685 +msgid "Switch service" +msgstr "切換服務" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035 msgid "The default setting of '0' will retry infinite." -msgstr "預設設定“0”將無限重試。" +msgstr "如果設定為預設值「0」,將無限重試。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:320 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:501 msgid "The service name is already used" -msgstr "" +msgstr "服務名稱已被使用" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:43 msgid "There is no service configured." -msgstr "沒有已經配置好的服務項" +msgstr "尚未配置任何服務。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070 msgid "This is the current content of the log file in" -msgstr "" +msgstr "這是日誌檔目前的內容,位於:" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:76 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:167 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:197 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:275 msgid "" "This is the default if you run DDNS scripts by yourself (i.e. via cron with " "force_interval set to '0')" msgstr "" +"如果您要透過 Cron 運行 DDNS 指令碼,請設定 force_interval 為預設值「0」" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:731 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:874 msgid "This will be autoset to the selected interface" -msgstr "" +msgstr "這將自動設定到被選介面" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:447 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606 msgid "Timer Settings" msgstr "計時器設定" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792 msgid "URL" msgstr "URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:684 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:833 msgid "URL to detect" msgstr "用於檢測的 URL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:94 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:418 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:215 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1141 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:38 msgid "Unknown" -msgstr "未知的" +msgstr "未知" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:299 +msgid "Update DDns Services List" +msgstr "更新 DDNS 服務列表" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:700 +msgid "Update URL to be used for updating your DDNS Provider." +msgstr "使用更新 URL 來更新您的 DDNS 提供者。" + +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:455 msgid "" -"Update URL to be used for updating your DDNS Provider.<br />Follow " -"instructions you will find on their WEB page." +"Url used to download services file. By default is the master openwrt ddns " +"package repo." msgstr "" -"DDNS 提供商用於更新 DDNS 的 URL。<br />跟隨教程,您可以在它們的網站上找到這" -"個 URL。" +"下載服務檔使用的 URL,預設為 OpenWrt 儲存庫中 master 分支下的 DDNS 套件。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767 msgid "Use HTTP Secure" msgstr "使用 HTTPS" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1008 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:442 msgid "Use cURL" msgstr "使用 cURL" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:705 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:852 msgid "User defined script to read systems IP-Address" -msgstr "使用設定的指令碼來讀取系統 IP 位址" +msgstr "使用自定指令碼來讀取系統 IP 位址" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:583 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741 msgid "Username" -msgstr "使用者名稱" +msgstr "用戶名稱" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:274 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:378 msgid "Using specific DNS Server not supported" msgstr "不支援使用特定的 DNS 伺服器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:836 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:971 msgid "Values below 5 minutes == 300 seconds are not supported" -msgstr "" +msgstr "不支援 5分鐘(300秒)以下的值" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:873 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1006 msgid "Values lower 'Check Interval' except '0' are not supported" -msgstr "" +msgstr "除「0」之外,不支援比「檢查間隔時間」低的值" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:16 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 msgid "Verify" msgstr "驗證" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:808 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:946 msgid "Warning" msgstr "警告" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:818 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:955 msgid "" "Writes detailed messages to log file. File will be truncated automatically." -msgstr "向日志中寫入詳細資訊。檔案將自動縮小。" +msgstr "將詳細訊息寫入日誌檔;檔案會自動被截斷。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939 msgid "" "Writes log messages to syslog. Critical Errors will always be written to " "syslog." -msgstr "把日誌寫入系統日誌。無論是否啟用這項,錯誤資訊總是會被寫入系統日誌。" +msgstr "" +"將日誌訊息寫入 syslog(系統日誌);無論您選擇與否,關鍵錯誤都會寫入 syslog。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:278 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:382 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”軟體包。" +"如果要規定 DNS 伺服器來檢測已註冊的 IP,您應該安裝 \"bind-host/knot-host/" +"drill/hostip\" 套件中的任意一個。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:267 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371 msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." -msgstr "您應該為 DNS 請求安裝“bind-host”或“knot-host”或“drill”軟體包。" +msgstr "" +"如果要處理 DNS 請求,您應該安裝 \"bind-host/knot-host/drill\" 套件中的任意一" +"個。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:255 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359 msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." -msgstr "您應該安裝“wget”或“curl”或“uclient-fetch”軟體包。" +msgstr "您應該安裝 \"Wget/cURL/uclient-fetch\" 套件中的任意一個。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:217 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321 msgid "" "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-" "*ssl' package." -msgstr "您應該安裝“wget”或“curl”或“uclient-fetch”,及“libustream-*ssl”軟體包。" +msgstr "" +"您應該安裝 \"Wget/cURL/uclient-fetch\" 套件中的任意一個,以及 \"libustream-" +"*ssl\" 套件。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:229 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333 msgid "You should install 'wget' or 'curl' package." -msgstr "您應該安裝“wget”或“curl”軟體包。" +msgstr "您應該安裝 \"Wget/cURL\" 套件中的任意一個。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:243 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347 msgid "" "You should install 'wget' or 'uclient-fetch' package or replace libcurl." -msgstr "您應該安裝“wget”或“uclient-fetch”軟體包,或替換 libcurl。" +msgstr "您應該安裝 \"Wget/uclient-fetch\" 套件中的任意一個,或者替換 libcurl。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:241 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:345 msgid "cURL is installed, but libcurl was compiled without proxy support." -msgstr "cURL 已經安裝,但是 libcurl 編譯時沒有啟用代理支援。" +msgstr "cURL 已經安裝,但編譯的 libcurl 不支援代理伺服器。" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:240 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:344 msgid "cURL without Proxy Support" -msgstr "cURL 沒有包含代理支援" +msgstr "cURL 不支援代理伺服器" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:489 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:511 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:517 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:640 msgid "custom" -msgstr "" +msgstr "自訂" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:887 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019 msgid "days" msgstr "天" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:621 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:774 msgid "directory or path/file" -msgstr "目錄或者到檔案的路徑" +msgstr "目錄抑或檔案路徑" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:849 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:886 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:983 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1018 msgid "hours" msgstr "小時" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:885 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:919 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048 msgid "minutes" -msgstr "分" +msgstr "分鐘" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776 msgid "or" -msgstr "或者" +msgstr "或" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:207 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311 msgid "or update your system to the latest OpenWrt Release" -msgstr "" +msgstr "或將您的系統更新到 OpenWrt 最新版本" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847 -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:918 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:981 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047 msgid "seconds" msgstr "秒" -#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 +#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:778 msgid "to run HTTPS without verification of server certificates (insecure)" -msgstr "使用 HTTPS 但不檢查伺服器證書(不安全)" +msgstr "運行 HTTPS 但不檢查伺服器憑證(不安全)" + +#~ msgid "" +#~ "Configure here the details for all Dynamic DNS services including this " +#~ "LuCI application." +#~ msgstr "在這裡修改動態 DNS 服務的詳細配置。" + +#~ msgid "Example for IPv4: http://checkip.dyndns.com" +#~ msgstr "IPv4 範例:http://checkip.dyndns.com" + +#~ msgid "Example for IPv6: http://checkipv6.dyndns.com" +#~ msgstr "IPv6 範例:http://checkipv6.dyndns.com" + +#~ msgid "For detailed information about parameter settings look here." +#~ msgstr "請看這裡獲得關於引數設定的詳細資訊" + +#~ msgid "Global Configuration" +#~ msgstr "全域設定" + +#~ msgid "" +#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "from LuCI interface nor from console" +#~ msgstr "" +#~ "如果服務配置被禁用,那麼它將不能被啟動。<br />無論是通過 LuCI 頁面或者是通" +#~ "過終端。" + +#~ msgid "" +#~ "It is NOT recommended for casual users to change settings on this page." +#~ msgstr "強烈不建議初次使用的使用者修改本頁設定。" + +#~ msgid "" +#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "instructions you will find on their WEB page." +#~ msgstr "" +#~ "DDNS 提供商用於更新 DDNS 的 URL。<br />跟隨教程,您可以在它們的網站上找到" +#~ "這個 URL。" #~ msgid "&" #~ msgstr "&" @@ -938,9 +1047,6 @@ msgstr "使用 HTTPS 但不檢查伺服器證書(不安全)" #~ msgid "Forced IP Version don't matched" #~ msgstr "強制設定的 IP 版本不匹配" -#~ msgid "Global Settings" -#~ msgstr "全域性設定" - #~ msgid "Hints" #~ msgstr "提示" diff --git a/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns b/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns index 8ba4ad3165..22abcf4251 100755 --- a/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns +++ b/applications/luci-app-ddns/root/usr/libexec/rpcd/luci.ddns @@ -7,6 +7,7 @@ local UCI = require "luci.model.uci" local sys = require "luci.sys" local util = require "luci.util" +local ddns_package_path = "/usr/share/ddns" local luci_helper = "/usr/lib/ddns/dynamic_dns_lucihelper.sh" local srv_name = "ddns-scripts" @@ -108,15 +109,15 @@ local methods = { tonumber(s["force_interval"]) or 72, s["force_unit"] or "hours" ) - -- process running but update needs to happen - -- problems if force_seconds > uptime - force_seconds = (force_seconds > uptime) and uptime or force_seconds + local check_seconds = calc_seconds( + tonumber(s["check_interval"]) or 10, + s["check_unit"] or "minutes" ) if last_update > 0 then - local epoch = os.time() - uptime + last_update + force_seconds + local epoch = os.time() - uptime + last_update -- use linux date to convert epoch converted_last_update = epoch2date(epoch,date_format) - next_update = epoch2date(epoch + force_seconds) + next_update = epoch2date(epoch + force_seconds + check_seconds) end if pid > 0 and ( last_update + force_seconds - uptime ) <= 0 then @@ -155,6 +156,7 @@ local methods = { local ipkg = require "luci.model.ipkg" local uci = UCI.cursor() local dateformat = uci:get("ddns", "global", "ddns_dateformat") or "%F %R" + local services_mtime = fs.stat(ddns_package_path .. "/list", 'mtime') uci:unload("ddns") local ver, srv_ver_cmd local res = {} @@ -169,6 +171,7 @@ local methods = { res['_version'] = ver and #ver > 0 and ver or nil res['_enabled'] = sys.init.enabled("ddns") res['_curr_dateformat'] = os.date(dateformat) + res['_services_list'] = services_mtime and os.date(dateformat, services_mtime) or 'NO_LIST' return res end @@ -179,23 +182,23 @@ local methods = { local cache = {} local function has_wget() - return (sys.call( [[which wget >/dev/null 2>&1]] ) == 0) + return (sys.call( [[command -v wget >/dev/null 2>&1]] ) == 0) end local function has_wgetssl() if cache['has_wgetssl'] then return cache['has_wgetssl'] end - local res = (sys.call( [[which wget-ssl >/dev/null 2>&1]] ) == 0) + local res = has_wget() and (sys.call( [[wget --version | grep -qF +https >/dev/null 2>&1]] ) == 0) cache['has_wgetssl'] = res return res end local function has_curlssl() - return (sys.call( [[$(which curl) -V 2>&1 | grep -qF "https"]] ) == 0) + return (sys.call( [[$(command -v curl) -V 2>&1 | grep -qF "https"]] ) == 0) end local function has_fetch() if cache['has_fetch'] then return cache['has_fetch'] end - local res = (sys.call( [[which uclient-fetch >/dev/null 2>&1]] ) == 0) + local res = (sys.call( [[command -v uclient-fetch >/dev/null 2>&1]] ) == 0) cache['has_fetch'] = res return res end @@ -206,7 +209,7 @@ local methods = { local function has_curl() if cache['has_curl'] then return cache['has_curl'] end - local res = (sys.call( [[which curl >/dev/null 2>&1]] ) == 0) + local res = (sys.call( [[command -v curl >/dev/null 2>&1]] ) == 0) cache['has_curl'] = res return res end @@ -216,7 +219,7 @@ local methods = { end local function has_bbwget() - return (sys.call( [[$(which wget) -V 2>&1 | grep -iqF "busybox"]] ) == 0) + return (sys.call( [[$(command -v wget) -V 2>&1 | grep -iqF "busybox"]] ) == 0) end res['has_wget'] = has_wget() or false @@ -229,17 +232,17 @@ local methods = { local function has_bindhost() if cache['has_bindhost'] then return cache['has_bindhost'] end - local res = (sys.call( [[which host >/dev/null 2>&1]] ) == 0) + local res = (sys.call( [[command -v host >/dev/null 2>&1]] ) == 0) if res then cache['has_bindhost'] = res return true end - res = (sys.call( [[which khost >/dev/null 2>&1]] ) == 0) + res = (sys.call( [[command -v khost >/dev/null 2>&1]] ) == 0) if res then cache['has_bindhost'] = res return true end - res = (sys.call( [[which drill >/dev/null 2>&1]] ) == 0) + res = (sys.call( [[command -v drill >/dev/null 2>&1]] ) == 0) if res then cache['has_bindhost'] = res return true @@ -251,11 +254,11 @@ local methods = { res['has_bindhost'] = cache['has_bindhost'] or has_bindhost() or false local function has_hostip() - return (sys.call( [[which hostip >/dev/null 2>&1]] ) == 0) + return (sys.call( [[command -v hostip >/dev/null 2>&1]] ) == 0) end local function has_nslookup() - return (sys.call( [[which nslookup >/dev/null 2>&1]] ) == 0) + return (sys.call( [[command -v nslookup >/dev/null 2>&1]] ) == 0) end res['has_dnsserver'] = cache['has_bindhost'] or has_nslookup() or has_hostip() or has_bindhost() or false diff --git a/applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json b/applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json index 94952792f0..298378452d 100644 --- a/applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json +++ b/applications/luci-app-ddns/root/usr/share/rpcd/acl.d/luci-app-ddns.json @@ -7,8 +7,12 @@ "luci": [ "setInitAction" ] }, "file": { - "/etc/ddns/services": [ "read" ], - "/etc/ddns/services_ipv6": [ "read" ], + "/usr/share/ddns/default": [ "list" ], + "/usr/share/ddns/default/*": [ "read" ], + "/usr/share/ddns/custom": [ "list" ], + "/usr/share/ddns/custom/*": [ "read" ], + "/usr/share/ddns/list": [ "read" ], + "/usr/bin/ddns": [ "exec" ], "/usr/lib/ddns/dynamic_dns_lucihelper.sh": [ "exec" ] }, "uci": [ "ddns" ] |