luci-app-ddns: diverse fixes, i18n corrections, and code improvements
authorPaul Donald <newtwen+github@gmail.com>
Fri, 29 Nov 2024 02:02:36 +0000 (03:02 +0100)
committerPaul Donald <newtwen+github@gmail.com>
Mon, 2 Dec 2024 23:02:31 +0000 (00:02 +0100)
-trimmed redundant and repeated code
-fixed adding a new service section, which... never worked.
-removed some defaults
-changed log formatting
-opkg -> package-manager

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
40 files changed:
applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js
applications/luci-app-ddns/po/ar/ddns.po
applications/luci-app-ddns/po/bg/ddns.po
applications/luci-app-ddns/po/bn_BD/ddns.po
applications/luci-app-ddns/po/ca/ddns.po
applications/luci-app-ddns/po/cs/ddns.po
applications/luci-app-ddns/po/da/ddns.po
applications/luci-app-ddns/po/de/ddns.po
applications/luci-app-ddns/po/el/ddns.po
applications/luci-app-ddns/po/es/ddns.po
applications/luci-app-ddns/po/fa/ddns.po
applications/luci-app-ddns/po/fi/ddns.po
applications/luci-app-ddns/po/fr/ddns.po
applications/luci-app-ddns/po/ga/ddns.po
applications/luci-app-ddns/po/he/ddns.po
applications/luci-app-ddns/po/hi/ddns.po
applications/luci-app-ddns/po/hu/ddns.po
applications/luci-app-ddns/po/it/ddns.po
applications/luci-app-ddns/po/ja/ddns.po
applications/luci-app-ddns/po/ko/ddns.po
applications/luci-app-ddns/po/lt/ddns.po
applications/luci-app-ddns/po/mr/ddns.po
applications/luci-app-ddns/po/ms/ddns.po
applications/luci-app-ddns/po/nb_NO/ddns.po
applications/luci-app-ddns/po/nl/ddns.po
applications/luci-app-ddns/po/pl/ddns.po
applications/luci-app-ddns/po/pt/ddns.po
applications/luci-app-ddns/po/pt_BR/ddns.po
applications/luci-app-ddns/po/ro/ddns.po
applications/luci-app-ddns/po/ru/ddns.po
applications/luci-app-ddns/po/sk/ddns.po
applications/luci-app-ddns/po/sv/ddns.po
applications/luci-app-ddns/po/templates/ddns.pot
applications/luci-app-ddns/po/tr/ddns.po
applications/luci-app-ddns/po/uk/ddns.po
applications/luci-app-ddns/po/vi/ddns.po
applications/luci-app-ddns/po/yua/ddns.po
applications/luci-app-ddns/po/zh_Hans/ddns.po
applications/luci-app-ddns/po/zh_Hant/ddns.po
applications/luci-app-ddns/root/usr/share/rpcd/ucode/ddns.uc

index 7177f29df66a63e95c8f9b2bdfc06cf77e2975fa..e56c7589c4cf4e26df5b6971a1710c971a4ca5b5 100644 (file)
@@ -60,7 +60,7 @@ return view.extend({
 
        /*
         * Services list is generated by 3 different sources:
-        * 1. /usr/share/ddns/default contains the service installed by opkg
+        * 1. /usr/share/ddns/default contains the service installed by package-manager
         * 2. /usr/share/ddns/custom contains any service installed by the
         *    user or the ddns script (for example when services are
         *    downloaded)
@@ -167,7 +167,7 @@ return view.extend({
        },
 
        handleToggleDDns: function(m, ev) {
-               return this.callInitAction('ddns', 'enabled')
+               return this.callInitAction('ddns', 'enable')
                        .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))
@@ -218,7 +218,7 @@ return view.extend({
                        service_status = '<b>' + _('Not Running') + '</b>';
 
                        if (service[section_id]) {
-                               stop.disabled = (!service[section_id].pid || (service[section_id].pid && cfg_enabled == '1'));
+                               stop.disabled = (!service[section_id].pid);
                                if (service[section_id].ip)
                                        ip = service[section_id].ip;
                                if (service[section_id].last_update)
@@ -308,17 +308,17 @@ return view.extend({
                        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 />" +
+                       o.cfgvalue = function() { return _("IPv6 is not supported by this system") + "<br />" +
                        _("Please follow the instructions on OpenWrt's homepage to enable IPv6 support") + "<br />" +
                        _("or update your system to the latest OpenWrt Release")};
                }
 
                if (!env['has_ssl']) {
                        o = s.taboption('info', form.DummyValue, '_no_https');
-                       o.titleref = L.url("admin", "system", "opkg")
+                       o.titleref = L.url("admin", "system", "package-manager")
                        o.rawhtml  = true;
                        o.title = '<b>' + _("HTTPS not supported") + '</b>';
-                       o.cfgvalue = function() { return _("Neither GNU Wget with SSL nor cURL installed to support secure updates via HTTPS protocol.") +
+                       o.cfgvalue = function() { return _("Neither GNU Wget with SSL nor cURL is installed to support secure updates via HTTPS protocol.") +
                        "<br />- " +
                        _("You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-*ssl' package.") +
                        "<br />- " +
@@ -327,10 +327,12 @@ return view.extend({
 
                if (!env['has_bindnet']) {
                        o = s.taboption('info', form.DummyValue, '_no_bind_network');
-                       o.titleref = L.url("admin", "system", "opkg")
+                       o.titleref = L.url("admin", "system", "package-manager")
                        o.rawhtml  = true;
                        o.title = '<b>' + _("Binding to a specific network not supported") + '</b>';
-                       o.cfgvalue = function() { return _("Neither GNU Wget with SSL nor cURL installed to select a network to use for communication.") +
+                       o.cfgvalue = function() { return _("Neither GNU Wget with SSL nor cURL is installed to select a network to use for communication.") +
+                       "<br />- " +
+                       _("This is only a problem with multiple WAN interfaces and your DDNS provider is unreachable via one of them.") +
                        "<br />- " +
                        _("You should install 'wget' or 'curl' package.") +
                        "<br />- " +
@@ -341,7 +343,7 @@ return view.extend({
 
                if (!env['has_proxy']) {
                        o = s.taboption('info', form.DummyValue, '_no_proxy');
-                       o.titleref = L.url("admin", "system", "opkg")
+                       o.titleref = L.url("admin", "system", "package-manager")
                        o.rawhtml  = true;
                        o.title = '<b>' + _("cURL without Proxy Support") + '</b>';
                        o.cfgvalue = function() { return _("cURL is installed, but libcurl was compiled without proxy support.") +
@@ -351,43 +353,32 @@ return view.extend({
                        _("In some versions cURL/libcurl in OpenWrt is compiled without proxy support.")};
                }
 
-               if (!env['has_forceip']) {
-                       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>';
-                       o.cfgvalue = function() { return _("BusyBox's nslookup and Wget do not support to specify " +
-                               "the IP version to use for communication with DDNS Provider!") +
-                               "<br />- " + _("You should install 'wget' or 'curl' or 'uclient-fetch' package.")
-                       };
-               }
-
                if (!env['has_bindhost']) {
                        o = s.taboption('info', form.DummyValue, '_no_dnstcp');
-                       o.titleref = L.url("admin", "system", "opkg")
+                       o.titleref = L.url("admin", "system", "package-manager")
                        o.rawhtml  = true;
                        o.title = '<b>' + _("DNS requests via TCP not supported") + '</b>';
-                       o.cfgvalue = function() { return _("BusyBox's nslookup and hostip do not support to specify to use TCP " +
-                               "instead of default UDP when requesting DNS server!") +
+                       o.cfgvalue = function() { return _("BusyBox's nslookup and hostip do not support TCP " +
+                               "instead of the default UDP when sending requests to the DNS server!") +
                                "<br />- " +
-                               _("You should install 'bind-host' or 'knot-host' or 'drill' package for DNS requests.")};
+                               _("Install 'bind-host' or 'knot-host' or 'drill' package if you know you need TCP for DNS requests.")};
                }
 
                if (!env['has_dnsserver']) {
                        o = s.taboption('info', form.DummyValue, '_no_dnsserver');
-                       o.titleref = L.url("admin", "system", "opkg")
+                       o.titleref = L.url("admin", "system", "package-manager")
                        o.rawhtml  = true;
                        o.title = '<b>' + _("Using specific DNS Server not supported") + '</b>';
                        o.cfgvalue = function() { return _("BusyBox's nslookup in the current compiled version " +
                        "does not handle given DNS Servers correctly!") +
-               "<br />- " +
-               _("You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' package, " +
+                       "<br />- " +
+                       _("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.")};
                }
 
                if (env['has_ssl'] && !env['has_cacerts']) {
                        o = s.taboption('info', form.DummyValue, '_no_certs');
-                       o.titleref = L.url("admin", "system", "opkg")
+                       o.titleref = L.url("admin", "system", "package-manager")
                        o.rawhtml  = true;
                        o.title = '<b>' + _("No certificates found") + '</b>';
                        o.cfgvalue = function() { return _("If using secure communication you should verify server certificates!") +
@@ -403,7 +394,7 @@ return view.extend({
                + '<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"';
+               + '::/32, f000::/4';
                o.default = "0";
                o.optional = true;
 
@@ -466,9 +457,6 @@ return view.extend({
                s.anonymous = true;
                s.addremove = true;
                s.addbtntitle = _('Add new services...');
-
-               s.anonymous = true;
-               s.addremove = true;
                s.sortable  = true;
 
                s.handleCreateDDnsRule = function(m, name, service_name, ipv6, ev) {
@@ -476,7 +464,7 @@ return view.extend({
                                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 == '')
+                       if (!section_id || !service_value || !ipv6_value)
                                return;
 
                        return m.save(function() {
@@ -485,6 +473,7 @@ return view.extend({
                                        uci.set('ddns', section_id, 'service_name', service_value);
                                }
                                uci.set('ddns', section_id, 'use_ipv6', ipv6_value);
+                               ui.hideModal();
                        }).then(L.bind(m.children[1].renderMoreOptionsModal, m.children[1], section_id));
                };
 
@@ -513,7 +502,7 @@ return view.extend({
 
                        ipv6 = s2.option( form.ListValue, 'use_ipv6',
                                _("IP address version"),
-                               _("Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"));
+                               _("Which record type to update at the DDNS provider (A/AAAA)"));
                        ipv6.default = '0';
                        ipv6.value("0", _("IPv4-Address"))
                        if (env["has_ipv6"]) {
@@ -522,11 +511,10 @@ return view.extend({
 
                        service_name = s2.option(form.ListValue, 'service_name',
                                        String.format('%s', _("DDNS Service provider")));
-                       service_name.value('-',"-- " + _("custom") + " --");
+                       service_name.value('-',"📝 " + _("custom") );
                        Object.keys(_this.services).sort().forEach(name => service_name.value(name));
                        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;
                        };
@@ -632,7 +620,7 @@ return view.extend({
 
                                use_ipv6 = s.taboption('basic', form.ListValue, 'use_ipv6',
                                        _("IP address version"),
-                                       _("Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"));
+                                       _("Which record type to update at the DDNS provider (A/AAAA)"));
                                use_ipv6.default = '0';
                                use_ipv6.modalonly = true;
                                use_ipv6.rmempty  = false;
@@ -644,7 +632,7 @@ return view.extend({
                                service_name = s.taboption('basic', form.ListValue, 'service_name',
                                        String.format('%s', _("DDNS Service provider")));
                                service_name.modalonly = true;
-                               service_name.value('-',"-- " + _("custom") + " --");
+                               service_name.value('-',"📝 " + _("custom") );
                                Object.keys(_this.services).sort().forEach(name => service_name.value(name));
                                service_name.cfgvalue = function(section_id) {
                                        return uci.get('ddns', section_id, 'service_name') || '-';
@@ -659,7 +647,6 @@ return view.extend({
                                };
                                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;
@@ -711,27 +698,31 @@ return view.extend({
                                        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 an Update Script OR an Update URL");
+                                               var other = this.section.formvalue(section_id, 'update_script');
+                                               if ((!value && !other) || (value && other)) {
+                                                       return _("Provide either an Update Script OR an Update URL");
                                                }
 
                                                return true;
                                        };
 
-                                       o = s.taboption('basic', form.Value, 'update_script',
+                                       o = s.taboption('basic', form.FileUpload, 'update_script',
                                                _("Custom update-script"),
                                                _("Custom update script for updating your DDNS Provider."));
+                                       o.root_directory = '/usr/lib/ddns/';
+                                       o.browser = true;
+                                       o.show_hidden = true;
+                                       o.enable_upload = true;
+                                       o.enable_remove = true;
+                                       o.enable_download = true;
                                        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 an Update Script OR an Update URL");
+                                               var other = this.section.formvalue(section_id, 'update_url');
+                                               if ((!value && !other) || (value && other)) {
+                                                       return _("Provide either an Update Script OR an Update URL");
                                                }
 
                                                return true;
@@ -798,7 +789,7 @@ return view.extend({
 
                                        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"));
+                                               _("Method used to determine the system IP-Address to send in updates"));
                                        o.modalonly = true;
                                        o.default = "network";
                                        o.value("network", _("Network"));
@@ -808,24 +799,24 @@ return view.extend({
                                        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);
+                                                               uci.unset('ddns', section_id, "ip_url");
+                                                               uci.unset('ddns', section_id, "ip_interface");
+                                                               uci.unset('ddns', section_id, "ip_script");
                                                                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);
+                                                               uci.unset('ddns', section_id, "ip_network");
+                                                               uci.unset('ddns', section_id, "ip_interface");
+                                                               uci.unset('ddns', section_id, "ip_script");
                                                                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);
+                                                               uci.unset('ddns', section_id, "ip_network");
+                                                               uci.unset('ddns', section_id, "ip_url");
+                                                               uci.unset('ddns', section_id, "ip_script");
                                                                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);
+                                                               uci.unset('ddns', section_id, "ip_network");
+                                                               uci.unset('ddns', section_id, "ip_url");
+                                                               uci.unset('ddns', section_id, "ip_interface");
                                                                break;
                                                        default:
                                                                break;
@@ -862,7 +853,7 @@ return view.extend({
 
                                        o = s.taboption('advanced', form.Value, 'ip_script',
                                                _("Script"),
-                                               _("User defined script to read systems IP-Address"));
+                                               _("User defined script to read system IP-Address"));
                                        o.modalonly = true;
                                        o.depends("ip_source", "script")
                                        o.placeholder = "/path/to/script.sh"
@@ -887,8 +878,8 @@ return view.extend({
                                                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);
+                                               var opt = this.section.formvalue(section_id, 'ip_source');
+                                               var val = this.section.formvalue(section_id, 'ip_'+opt);
                                                return uci.set('ddns', section_id, 'interface', val);
                                        };
 
@@ -973,11 +964,11 @@ return view.extend({
 
                                        o = s.taboption("timer", form.Value, "check_interval",
                                                _("Check Interval"));
-                                       o.placeholder = "30";
+                                       o.placeholder = "10";
                                        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),
+                                               var unit = this.section.formvalue(section_id, 'check_unit'),
                                                        time_to_sec = _this.time_res[unit || 'minutes'] * formvalue;
 
                                                if (formvalue && time_to_sec < 300)
@@ -990,14 +981,14 @@ return view.extend({
                                                _('Check Unit'),
                                                _("Interval unit to check for changed IP"));
                                        o.modalonly = true;
-                                       o.default  = "minutes"
+                                       o.optional = true;
                                        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")
+                                               _("Interval to force an update at the DDNS Provider")
                                                + "<br />" +
                                                _("Setting this parameter to 0 will force the script to only run once"));
                                        o.placeholder = "72";
@@ -1009,9 +1000,9 @@ return view.extend({
                                                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),
+                                               var check_unit = this.section.formvalue(section_id, 'check_unit'),
+                                                       check_val = this.section.formvalue(section_id, 'check_interval'),
+                                                       force_unit = this.section.formvalue(section_id, 'force_unit'),
                                                        check_to_sec = _this.time_res[check_unit || 'minutes'] * ( check_val || '30'),
                                                        force_to_sec = _this.time_res[force_unit || 'minutes'] * formvalue;
 
@@ -1026,7 +1017,6 @@ return view.extend({
                                                _("Interval unit for forced updates sent to DDNS Provider."));
                                        o.modalonly = true;
                                        o.optional = true;
-                                       o.default  = "minutes"
                                        o.value("minutes", _("minutes"));
                                        o.value("hours", _("hours"));
                                        o.value("days", _("days"));
@@ -1054,7 +1044,6 @@ return view.extend({
                                                _("Which time units to use for retry counters."));
                                        o.modalonly = true;
                                        o.optional = true;
-                                       o.default  = "seconds"
                                        o.value("seconds", _("seconds"));
                                        o.value("minutes", _("minutes"));
 
@@ -1073,13 +1062,13 @@ return view.extend({
                                        log_box.modalonly = true;
 
                                        log_box.update_log = L.bind(function(view, log_data) {
-                                               return document.getElementById('log_area').textContent = log_data.result;
+                                               return document.getElementById('syslog').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 %h for this service.').format(logdir)),
-                                                       E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 20, 'readonly' : 'readonly', 'id' : 'log_area' }, _('Please press [Read] button') ))
+                                                       E('p', {}, E('textarea', { 'style': 'width:100%; font-size: 10px', 'rows': 20, 'readonly' : 'readonly', 'id' : 'syslog' }, _('Please press [Read] button') ))
                                                ]);
                                        }, o, this);
                                }
@@ -1113,14 +1102,10 @@ return view.extend({
 
                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;
+               o.textvalue = section_id => resolved[section_id]?.pid 
+                       ? `<b>${_('Running')}</b> : ${resolved[section_id].pid}` 
+                       : `<b>${_('Not Running')}</b>`;
 
-                       return text;
-               };
 
                o = s.option(form.DummyValue, '_cfg_name', _('Name'));
                o.modalonly = false;
index 6765913f5a0c75b6f50e64825bb0254b084efe32..74d5db443b2c47e64a8ee08ccd146386c54543cd 100644 (file)
@@ -11,32 +11,32 @@ msgstr ""
 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
 "X-Generator: Weblate 5.7-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" غير مسموح به في المسار لسبب الأمان."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "اضافة خدمات جديدة..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "إعدادات متقدمة"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "السماح لعناوين IP غير العامة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "الإعدادات الأساسية"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "ربط الشبكة"
 
@@ -44,23 +44,15 @@ msgstr "ربط الشبكة"
 msgid "Binding to a specific network not supported"
 msgstr "الربط بشبكة معينة غير مدعوم"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "لا يدعم nslookup و hostip الخاص ب BusyBox تحديد استخدام TCP بدلاً من UDP "
 "الافتراضي عند طلب خادم DNS!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -68,11 +60,11 @@ msgstr ""
 "لا يعالج nslookup الخاص ب BusyBox في الإصدار المترجم الحالي خوادم DNS "
 "المحددة بشكل صحيح!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "مسار شهادات Ca"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -80,45 +72,40 @@ msgstr ""
 "مسار شهادات Ca الذي سيتم استخدامه لتنزيل بيانات الخدمات. قم بتعيين IGNORE "
 "لتخطي التحقق من صحة الشهادة."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "إلغاء"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr "تحقق من الوحدة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "خطأ في الاعداد"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "يحتوي الدليل على ملفات السجل لكل قسم قيد التشغيل."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr "يحتوي الدليل على PID ومعلومات الحالة الأخرى لكل قسم قيد التشغيل."
 
-#: 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "الإعداد الحالي:"
 
@@ -127,15 +114,15 @@ msgstr "الإعداد الحالي:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr "برنامج نصي للتحديث مخصص ليتم استخدامه لتحديث مزود DDNS."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "تحديث URL مخصص"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "تحديث البرنامج النصي المخصص"
 
@@ -149,8 +136,8 @@ msgstr "بدء تشغيل تلقائي DDNS معطل"
 msgid "DDNS Autostart enabled"
 msgstr "بدء التشغيل التلقائي DDNS قيد التشغيل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "مزود خدمة DDNS"
 
@@ -158,50 +145,39 @@ msgstr "مزود خدمة DDNS"
 msgid "DDns"
 msgstr "DDNS نظام أسماء النطاقات الديناميكية"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "خدمة DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "طلبات DNS عبر TCP غير مدعومة"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "خادم DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "يحدد الواجهة لقراءة عنوان IP للأنظمة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "يحدد الشبكة لقراءة عنوان IP للأنظمة منها"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "معطل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "المجال"
 
@@ -215,85 +191,81 @@ msgstr "نظام أسماء النطاقات الديناميكية"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "تحرير"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "تمكين الاتصال الآمن مع مزود DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "مفعَّل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "خطأ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "خطأ في عداد الحد الأقصى لإعادة المحاولة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "الفاصل الزمني لإعادة محاولة الخطأ"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr "مثال على IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "مثال على IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "ملف"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "اتبع التعليمات التي ستجدها على صفحة الويب الخاصة بهم."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "للحصول على الرموز المدعومة انظر هنا"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "فرض إصدار IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "فرض إصدار IP غير مدعوم"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "فرض الفاصل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "فرض TCP على DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "وحدة القوة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "صيغة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "الصيغة: IP أو FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -311,65 +283,65 @@ msgstr "منح الوصول إلى إجراءات DNS"
 msgid "HTTPS not supported"
 msgstr "HTTPS غير مدعوم"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "اسم المضيف / FQDN للتحقق ، إذا حدث تحديث IP أو ضروريًا"
 
-#: 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:791
 msgid "IP address source"
 msgstr "مصدر عنوان IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "إصدار عنوان IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "عنوان IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "يجب كتابة عنوان IPv6 بين قوسين معقوفين"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "IPv6 غير مدعوم (بالكامل) بواسطة هذا النظام حاليًا"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 غير مدعوم"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "عنوان IPv6"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "إذا تم تعطيل قسم الخدمة هذا ، فلا يمكن بدء تشغيله."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr "في حالة استخدام اتصال آمن ، يجب عليك التحقق من شهادات الخادم!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "معلومات"
 
@@ -377,12 +349,15 @@ msgstr "معلومات"
 msgid "Information"
 msgstr "معلومة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "أدخل برنامج نصي للتحديث أو عنوان URL للتحديث"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"يجب عليك تثبيت حزمة \"bind-host\" أو \"knot-host\" أو حزمة \"drill\" لطلبات "
+"DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -390,190 +365,194 @@ msgstr ""
 "قم بتثبيت حزمة \"ca-الشهادات\" أو الشهادات المطلوبة يدويًا في الدليل "
 "الافتراضي / etc / ssl / certs"
 
-#: 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:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "واجهه"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "الفاصل الزمني لفرض إرسال التحديثات إلى مزود DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "وحدة الفاصل الزمني لفرض التحديثات المرسلة إلى مزود DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "وحدة الفاصل الزمني للتحقق من تغيير IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr "عارض ملف السجل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "دليل السجل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "طول السجل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "تسجيل الدخول إلى ملف"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "سجل في سجل النظام"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "اسم"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "لا من واجهة LuCI ولا من وحدة التحكم."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "أبدا"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "خدمة DDns الجديدة …"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "لم يتم العثور على شهادات"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "لا تسجيل"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "غير عام وبشكل افتراضي عناوين IP المحظورة"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "لا يعمل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "ملاحضة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "عدد الأسطر الأخيرة المخزنة في ملفات السجل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "اختياري: شبكة لاستخدامها في الاتصال"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "اختياري: خادم وكيل للكشف والتحديثات."
 
-#: 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:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "عند الخطأ، سيتوقف البرنامج النصي عن التنفيذ بعد العدد المحدد من محاولات "
 "إعادة المحاولة."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "معلمة اختيارية مشفرة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "معلمة اختيارية"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr "اختياري: يستبدل [PARAMENC] في Update-URL (بترميز URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr "اختياري: يستبدل [PARAMOPT] في Update-URL (ليس بترميز URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "مخدم بروكسي"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "كلمة المرور"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "المسار إلى CA-Certificate"
 
@@ -583,40 +562,45 @@ msgid ""
 msgstr ""
 "يرجى اتباع التعليمات الموجودة على الصفحة الرئيسية ل OpenWrt لتمكين دعم IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "أدخل برنامج نصي للتحديث أو عنوان URL للتحديث"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "حقا تبديل الخدمة؟"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "إعادة تحميل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "يستبدل [المجال] في عنوان URL للتحديث (ترميز عنوان URL)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "يستبدل [PASSWORD] في تحديث URL (URL المشفر)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "يستبدل [USERNAME] في Update-URL (بترميز URL)"
 
@@ -624,7 +608,7 @@ msgstr "يستبدل [USERNAME] في Update-URL (بترميز URL)"
 msgid "Restart DDns"
 msgstr "أعد تشغيل DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "وحدة إعادة المحاولة"
 
@@ -633,36 +617,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "النص"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "اختر الخدمة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "الخدمة لا تدعم هذا النوع من بروتوكول الإنترنت"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "الخدمة غير مثبتة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "خدمات"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "تنزيل عنوان URL للخدمات"
 
@@ -670,13 +654,13 @@ msgstr "تنزيل عنوان URL للخدمات"
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -692,15 +676,15 @@ msgstr "ابدأ DDNS"
 msgid "State"
 msgstr "حالة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "دليل الحالة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "قف"
 
@@ -708,7 +692,7 @@ msgstr "قف"
 msgid "Stop DDNS"
 msgstr "وقف DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "أوقف هذه الخدمة"
 
@@ -716,20 +700,20 @@ msgstr "أوقف هذه الخدمة"
 msgid "Stopped"
 msgstr "توقفت"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "خدمة التبديل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "الإعداد الافتراضي \"0\" سيعيد المحاولة بلا حدود."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 "عند حدوث خطأ ، سيتوقف البرنامج النصي عن التنفيذ بعد عدد معين من المحاولات."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "اسم الخدمة مستخدم الآن"
 
@@ -737,7 +721,13 @@ msgstr "اسم الخدمة مستخدم الآن"
 msgid "There is no service configured."
 msgstr "لا توجد خدمة مهيأة."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "هذا هو المحتوى الحالي لملف السجل في %h لهذه الخدمة."
 
@@ -750,24 +740,24 @@ msgstr ""
 "هذا هو الإعداد الافتراضي إذا قمت بتشغيل نصوص DDNS بنفسك (أي عبر cron مع ضبط "
 "force_interval على \"0\")"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "سيتم تعيين هذا تلقائيًا على الواجهة المحددة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "محدد موقع المعلومات URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL المراد اكتشافه"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "مجهول"
@@ -776,35 +766,35 @@ msgstr "مجهول"
 msgid "Update DDns Services List"
 msgstr "تحديث قائمة خدمات DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "تحديث URL لاستخدامه لتحديث مزود DDNS الخاص بك."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "استخدم HTTP Secure"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "استخدم cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "البرنامج النصي المحدد من قبل المستخدم لقراءة عنوان IP للأنظمة"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "اسم المستخدم"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "استخدام خادم DNS محدد غير مدعوم"
 
-#: 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:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "القيم الأقل من \"التحقق من الفاصل الزمني\" باستثناء \"0\" غير مدعومة"
 
@@ -812,21 +802,26 @@ msgstr "القيم الأقل من \"التحقق من الفاصل الزمني
 msgid "Verify"
 msgstr "التحقق"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "تحذير"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "يحدد عنوان IP الذي يتم إرساله \"IPv4 / IPv6\" إلى مزود DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 "عند \"خطأ\" ، سيقوم البرنامج النصي بإعادة محاولة الإجراء الفاشل بعد وقت معين."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -834,7 +829,7 @@ msgstr ""
 "يكتب رسائل السجل إلى سجل النظام. ستتم دائمًا كتابة الأخطاء الفادحة في سجل "
 "النظام."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -843,18 +838,6 @@ msgstr ""
 "\"hostip\" ، إذا كنت بحاجة إلى تحديد خادم DNS لاكتشاف عنوان IP المسجل الخاص "
 "بك."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -863,49 +846,49 @@ msgstr ""
 "يجب عليك تثبيت \"wget\" أو \"curl\" أو \"uclient-fetch\" مع الحزمة "
 "\"libustream- * ssl\"."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "يجب عليك تثبيت الحزمة \"wget\" أو \"curl\"."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL بدون دعم الوكيل"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "حسب الطلب"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "أيام"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "دليل أو مسار / ملف"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "ساعات"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "أو"
 
@@ -913,15 +896,37 @@ msgstr "أو"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "أو قم بتحديث نظامك إلى أحدث إصدار من OpenWrt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "لتشغيل HTTPS بدون التحقق من شهادات الخادم (غير آمن)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "جاري التحقق من دعم الخدمة ..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "يحدد المصدر لقراءة عنوان IP للأنظمة ، والذي سيتم إرساله إلى مزود DDNS"
+
+#~ 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!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "فرض إصدار IP غير مدعوم"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "يجب عليك تثبيت الحزمة \"wget\" أو \"curl\" أو \"uclient-fetch\"."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "عداد إعادة المحاولة خطأ"
 
index 05d29a3faabb1f315810f2b2cb0dcf183f21f108..9051f0613189dc0824d6b324a3d065254964260e 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.8-rc\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" не се разрешава в пътя заради сигурността."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Добавяне на нови услуги..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Разширени настройки"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Разрешаване на непублични IP-та"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Основни настройки"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,73 +43,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Отмени"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Забранен"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Редактиране"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Позволен"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Грешка"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Инфо"
 
@@ -366,196 +340,201 @@ msgstr "Инфо"
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Интерфейс"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Име"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Никога"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Спиране"
 
@@ -685,7 +669,7 @@ msgstr "Спиране"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "Спрян"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL адрес"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Неизвестно"
@@ -750,35 +740,35 @@ msgstr "Неизвестно"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Потребителско име"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Предупреждение"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index b76297e152a2566dd487f08826dfd536f97174e3..de661ffaab796487de475cd1bfad39677bcc2c76 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.9-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "নিরাপত্তার কারনে পাথে \"../\" ব্যবহার করা যাবে না।"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "নতুন সার্ভিস যোগ করুন..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "উন্নত সেটিংস"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "নন-পাবলিক আইপি অনুমোদন দিন"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "সাধারন সেটিংস"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "নেটওয়ার্ক বিন্ড"
 
@@ -43,73 +43,62 @@ msgstr "নেটওয়ার্ক বিন্ড"
 msgid "Binding to a specific network not supported"
 msgstr "একটা নির্দিষ্ট নেটওয়ার্কে বিন্ড সম্ভব না"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "বাতিল করুন"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "নিষ্ক্রিয়"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "সক্রিয়"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "ভুল"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "তথ্য"
 
@@ -366,196 +340,201 @@ msgstr "তথ্য"
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "ইন্টারফেস"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr "লগ ফাইল ভিউয়ার"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "কখনও না"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "নির্দেশনা"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "সেবা"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -685,7 +669,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "অজানা"
@@ -750,35 +740,35 @@ msgstr "অজানা"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "সতর্কতা"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index d58a67d23a8eafe7c65969940288c63dedd6459f..c8345008052432598523ca6da469869eabd690dc 100644 (file)
@@ -15,32 +15,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.9-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Configuració avançada"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -48,73 +48,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Cancel•lar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -123,16 +112,16 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 #, fuzzy
 msgid "Custom update-URL"
 msgstr "URL d'actualització personalitzada"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -146,8 +135,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -155,50 +144,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domini"
 
@@ -212,85 +190,81 @@ msgstr "DNS dinàmic"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Activat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -308,63 +282,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -372,196 +346,201 @@ msgstr ""
 msgid "Information"
 msgstr "Informació"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interfície"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Mai"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Contrasenya"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Camí cap al certificat CA"
 
@@ -570,40 +549,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Torna a carregar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -611,7 +595,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -620,36 +604,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -657,11 +641,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -675,15 +659,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -691,7 +675,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -699,19 +683,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -719,7 +703,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -730,24 +720,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -756,35 +746,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nom d'usuari"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -792,89 +782,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "minuts"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -882,12 +867,12 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 
index 8f51feeb08ab19133d3894ebb03bac2777d37245..2441ecfa445669fde77d8506af8123d8b841ebb2 100644 (file)
@@ -15,32 +15,32 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 5.1-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Přidat nové služby..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Pokročilá nastavení"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Povolit neveřejné adresy IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Základní nastavení"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Vytvořit vazbu mezi sítí"
 
@@ -48,24 +48,16 @@ msgstr "Vytvořit vazbu mezi sítí"
 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:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the 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:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -73,11 +65,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Adresář certifikátů CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -85,46 +77,41 @@ 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Zrušit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Interval kontroly"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Zkontrolovat jednotku"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Chyba nastavení"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Vytvořit službu"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Současné nastavení:"
 
@@ -135,15 +122,15 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "Vlastní aktualizační-URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Vlastní aktualizační skript"
 
@@ -157,8 +144,8 @@ msgstr "Automatické spuštění DDNS je zakázáno"
 msgid "DDNS Autostart enabled"
 msgstr "Automatické spuštění DDNS povoleno"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Poskytovatel služeb DDNS"
 
@@ -166,52 +153,39 @@ msgstr "Poskytovatel služeb DDNS"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Služba DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "Server DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formát data"
 
-#: 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 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:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Zakázáno"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Doména"
 
@@ -225,85 +199,81 @@ msgstr "Dynamické DNS"
 msgid "Dynamic DNS Version"
 msgstr "Verze Dynamic DNS"
 
-#: 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:545
 msgid "Edit"
 msgstr "Upravit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Zapnuto"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Chyba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Interval opakování chyby"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Síťové rozhraní"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Příklad pro IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Příklad pro IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Soubor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found 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:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Podporované kódy najdete zde"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Vynutit verzi IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Interval vynucení"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 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:1025
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016
 msgid "Force Unit"
 msgstr "Vynutit jednotku"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formát"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formát: IP nebo FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -321,44 +291,44 @@ msgstr "Povolit přístup k procedurám DDNS"
 msgid "HTTPS not supported"
 msgstr "Protokol HTTPS není podporován"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "Zdrojová IP adresa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Verze IP adresy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4 adresa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "Protokol IPv6 není podporován"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6 adresa"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -366,25 +336,25 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will 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:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -392,12 +362,15 @@ msgstr "Info"
 msgid "Information"
 msgstr "Informace"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Vložte aktualizační skript či aktualizační URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -405,193 +378,197 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Nainstalovat službu"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Rozhraní"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Jednotka intervalu pro vynucení odeslání aktualizací poskytovateli DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Poslední aktualizace"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Prohlížeč souborů protokolu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Adresář protokolu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Délka protokolu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Protokolovat do souboru"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Protokolovat do syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Jméno"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Nikdy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nová služba DDNS…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Nebyly nalezeny žádné certifikáty"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Žádné protokolování"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Neveřejné a implicitně blokované adresy IP"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Není spuštěno"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Upozornění"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr "V případě chyby se skript zastaví po daném počtu opakování."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Volitelný kódovaný parametr"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Volitelný parametr"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Proxy server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Heslo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Cesta k certifikátu CA"
 
@@ -602,40 +579,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Vložte aktualizační skript či aktualizační URL"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Doopravdy přehodit službu?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Znovu načíst"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Znovu načíst tuto službu"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Nahradí [DOMAIN] v aktualizační adrese (kódováno URL)"
 
-#: 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:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Nahradí [USERNAME] v Update-URL (kódování URL)"
 
@@ -643,7 +625,7 @@ msgstr "Nahradí [USERNAME] v Update-URL (kódování URL)"
 msgid "Restart DDns"
 msgstr "Restartovat DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Opakovat jednotku"
 
@@ -652,36 +634,36 @@ msgid "Run once"
 msgstr "Spustit jednou"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Skript"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Vybrat službu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 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:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Služba není nainstalovaná"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Služby"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "URL pro stažení služeb"
 
@@ -689,13 +671,13 @@ msgstr "URL pro stažení služeb"
 msgid "Services list last update"
 msgstr "Poslední aktualizace seznamu služeb"
 
-#: 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -711,15 +693,15 @@ msgstr "Spustit DDNS"
 msgid "State"
 msgstr "Stav"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Stavový adresář"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Zastavit"
 
@@ -727,7 +709,7 @@ msgstr "Zastavit"
 msgid "Stop DDNS"
 msgstr "Zastavit DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Zastavit tuto službu"
 
@@ -735,19 +717,19 @@ msgstr "Zastavit tuto službu"
 msgid "Stopped"
 msgstr "Zastaveno"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Přehodit službu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Výchozí nastavení '0' znamená nekonečné opakování."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Název služby je již používán"
 
@@ -755,7 +737,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 "Toto je aktuální obsah souboru protokolu v adresáři %h pro tuto službu."
@@ -769,24 +757,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Nastavení časovače"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "Adresa URL pro rozpoznání"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Neznámé"
@@ -795,35 +783,35 @@ msgstr "Neznámé"
 msgid "Update DDns Services List"
 msgstr "Aktualizovat seznam služeb DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Použít zabezpečený protokol HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Použít cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Uživatelské jméno"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Hodnoty nižší než 'Interval kontroly' s výjimkou '0' nejsou podporovány"
@@ -832,22 +820,27 @@ msgstr ""
 msgid "Verify"
 msgstr "Ověřit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Varování"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+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:1044
 msgid "Which time units to use for retry counters."
 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:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -855,7 +848,7 @@ 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -864,19 +857,6 @@ msgstr ""
 "byste si nainstalovat balíček \"bind-host\", \"knot-host\", \"drill\" nebo "
 "\"hostip\"."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -885,50 +865,50 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL bez podpory proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "vlastní"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dny/dnů"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "adresář, nebo cesta/soubor"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "hodiny/hodin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "nebo"
 
@@ -936,15 +916,39 @@ msgstr "nebo"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 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 "Checking the service support..."
+#~ msgstr "Ověřování podpory služeb..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Definuje zdroj pro zjištění systémových IP adres, který bude odeslán "
+#~ "poskytovateli DDNS"
+
+#~ 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!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Vynucená verze IP není podporována"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "Měli byste nainstalovat balíček 'wget' nebo 'curl' nebo 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Čítač opakování chyb"
 
@@ -973,7 +977,7 @@ msgstr "k použití HTTPS bez ověření serverových certifikátů (nedůvěryh
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "Nástroje nslookup a wget pro BusyBox nepodporuje specifikaci"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr "Nástroje nslookup a hostip pro BusyBox nepodporují použití TCP"
 
 #~ msgid "BusyBox's nslookup in the current compiled version"
index d9669610bbf5355fe28ce704d391dc3a8a4b2203..27c09a896ba07ea5340837001e62f8c55600443a 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" er ikke tilladt i stien af sikkerhedsårsag."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Tilføj nye tjenester..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Avancerede indstillinger"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Tillad ikke-offentlige IP'er"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Grundlæggende indstillinger"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,73 +43,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Annuller"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Deaktiveret"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domæne"
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Rediger"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Aktiveret"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Fejl"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Fil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -366,196 +340,201 @@ msgstr "Info"
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interface"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Logmappe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Log til syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Navn"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
 msgid "Network"
 msgstr "Netværk"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Aldrig"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Ingen data"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Varsel"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Adgangskode"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Sti til CA-certifikat"
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Genindlæs"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Tjenester"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr "State"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stop"
 
@@ -685,7 +669,7 @@ msgstr "Stop"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "Stoppet"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL-ADRESSE"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Ukendt"
@@ -750,35 +740,35 @@ msgstr "Ukendt"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Brugernavn"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Advarsel"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "åbningstider"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "minutter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index 94ee00e2dc8da10d9193ea55f9b40551e3a518dd..6b56a74d63e65110dcd172cc50a3b9c11bce1e6c 100644 (file)
@@ -15,32 +15,32 @@ msgstr ""
 "X-Poedit-SourceCharset: UTF-8\n"
 "X-Poedit-Basepath: .\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "Bekannt als der TOKEN, auf z.B. afraid.org"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Neue Dienste hinzufügen..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Erweiterte Einstellungen"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Erlaube Nicht-öffentliche IPs"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Grundlegende Einstellungen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Bind-Netzwerk"
 
@@ -48,23 +48,15 @@ msgstr "Bind-Netzwerk"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"BusyBox's nslookup und Wget unterstützen nicht die IP Version für die "
-"Kommunikation festzulegen!"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "BusyBox's nslookup und hostip unterstützen es nicht das TCP-Protokoll für "
 "DNS Anfragen anstelle des standardmäßigen UDP-Protokolls zu verwenden!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -72,11 +64,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Pfad zu CA-Zertifikaten"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -84,47 +76,42 @@ msgstr ""
 "Ca Certs Pfad, der für das Herunterladen von Servicedaten verwendet werden "
 "soll. Stellen Sie IGNORE ein, um die Zertifikatsüberprüfung zu überspringen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Abbrechen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Kontrollintervall"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Einheit prüfen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Konfigurations-Fehler"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Dienst erstellen"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Aktuelle Einstellungen:"
 
@@ -135,15 +122,15 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "Eigene Update-URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Eigenes Update-Skript"
 
@@ -157,8 +144,8 @@ msgstr "DDNS Autostart deaktiviert"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS-Autostart aktiviert"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS-Dienstanbieter"
 
@@ -166,56 +153,42 @@ msgstr "DDNS-Dienstanbieter"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDNS-Dienst"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "DNS-Server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Datumsformat"
 
-#: 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 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:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Deaktiviert"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domäne"
 
@@ -229,85 +202,81 @@ msgstr "Dynamisches DNS"
 msgid "Dynamic DNS Version"
 msgstr "Dynamic-DNS-Version"
 
-#: 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:545
 msgid "Edit"
 msgstr "Bearbeiten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Aktiviert"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Fehler"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Höchstwiederholungszähler bei Fehlern"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Wiederholungsintervall bei Fehler"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Ereignis Netzwerk"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Beispiel für IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Beispiel für IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Datei"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Folge den Instruktionen auf ihrer Webseite."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Erzwinge IP-Version"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Erzwungene Aktualisierung"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Erzwinge TCP bei DNS-Anfragen"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Erzwinge Abschnitt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Format"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Format: IP-Adresse oder FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -327,44 +296,44 @@ msgstr "Zugriff zu ddns Abläufen gewähren"
 msgid "HTTPS not supported"
 msgstr "HTTPS nicht unterstützt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "IP-Adressquelle"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP-Adressversion"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-Adresse"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "IPv6 nicht unterstützt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-Adresse"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -372,28 +341,28 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 "Wenn dieser Service-Abschnitt deaktiviert ist, konnte es nicht gestartet "
 "werden."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -401,12 +370,15 @@ msgstr "Info"
 msgid "Information"
 msgstr "Informationen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Update-Skript oder Update-URL hier einfügen"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -414,196 +386,200 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Service installieren"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Schnittstelle"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "Intervall für ein Zwangsupdate des DDNS-Eintrags"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Letzte Aktualisierung"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Protokolldateibetrachter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Protokollverzeichnis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Protokolllänge"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Protokoll in Datei schreiben"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Ins Syslog protokollieren"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nome"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Weder GNU Wget mit SSL noch cURL sind installiert um ein Netzwerk zur "
 "Kommunikation festzulegen."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Weder GNU Wget mit SSL noch cURL sind installiert um sichere "
 "Aktualisierungen über HTTPS Protokoll zu unterstützen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Niemals"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Neuer DDns-Dienst…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Keine Zertifikate gefunden"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Keine Protokollierung"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Nicht-öffentliche und standardmäßig blockierte IPs"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Angehalten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Hinweis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Bei einem Fehler bricht das Skript die Ausführung nach einer bestimmten "
 "Anzahl von Wiederholungsversuchen ab."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Optionaler codierten Parameter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Optionaler Parameter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Proxy-Server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Kennwort"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Pfad zum CA-Zertifikat"
 
@@ -614,40 +590,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Update-Skript oder Update-URL hier einfügen"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Den Dienst wirklich wechseln?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Neu laden"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Diesen Service neu laden"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Ersetzt [DOMAIN] in Update-URL (URL-verschlüsselt)"
 
-#: 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:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Ersetzt [USERNAME] in der Update-URL (URL-codiert)"
 
@@ -655,7 +636,7 @@ msgstr "Ersetzt [USERNAME] in der Update-URL (URL-codiert)"
 msgid "Restart DDns"
 msgstr "DDns neustarten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Abschnitt erneut versuchen"
 
@@ -664,36 +645,36 @@ msgid "Run once"
 msgstr "Einmalig ausführen"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Läuft"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Skript"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Einen Dienst auswählen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 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:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Dienst nicht installiert"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Dienste"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Herunterladen von Dienst-URLs"
 
@@ -701,11 +682,11 @@ msgstr "Herunterladen von Dienst-URLs"
 msgid "Services list last update"
 msgstr "Letzte Aktualisierung der Diensteliste"
 
-#: 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -721,15 +702,15 @@ msgstr "DDNS starten"
 msgid "State"
 msgstr "Zustand"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Status-Verzeichnis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stopp"
 
@@ -737,7 +718,7 @@ msgstr "Stopp"
 msgid "Stop DDNS"
 msgstr "DDNS anhalten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Diesen Dienst anhalten"
 
@@ -745,21 +726,21 @@ msgstr "Diesen Dienst anhalten"
 msgid "Stopped"
 msgstr "Angehalten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Dienst wechseln"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Beim Standard-Wert von '0' wird es endlos erneut versucht."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 "Das Intervall, in dem jeder aufeinanderfolgende Wiederholungsversuch "
 "gestartet wird."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Dieser Dienstname ist bereits in Benutzung"
 
@@ -767,7 +748,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 "Dies ist der aktuelle Inhalt der Protokolldatei in %h für diesen Dienst."
@@ -781,24 +768,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Zeitgeber-Einstellungen"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL zur Adresserkennung für"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Unbekannt"
@@ -807,39 +794,39 @@ msgstr "Unbekannt"
 msgid "Update DDns Services List"
 msgstr "Aktualisiere Liste der DDNS-Anbieter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Verwende sicheres HTTP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Verwende cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Benutzername"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Ausgenommen von \"0\" werden keine Werte kleine als der \"Prüfinterval\" "
@@ -849,22 +836,28 @@ msgstr ""
 msgid "Verify"
 msgstr "Überprüfen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Warnung"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+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:1044
 msgid "Which time units to use for retry counters."
 msgstr "Welche Zeiteinheiten für Wiederholungszähler verwendet werden sollen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -872,7 +865,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -881,20 +874,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Sie sollten das Programmpakete 'bind-host' oder 'knot-host' oder 'drill' für "
-"DNS Anfragen installieren."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -903,51 +882,51 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL ohne Proxy Unterstützung"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "benutzerdefiniert"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "Tage"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "Verzeichnis oder Pfad/zur/Datei"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "Stunden"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "oder"
 
@@ -955,16 +934,41 @@ msgstr "oder"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "um HTTPS ohne Überprüfung der Server Zertifikate auszuführen (unsicher)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Überprüfe die Service-Unterstützung..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Definiert die Quelle zum Auslesen der IP-Adresse des Systems, die an den "
+#~ "DDNS-Anbieter gesendet wird"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "BusyBox's nslookup und Wget unterstützen nicht die IP Version für die "
+#~ "Kommunikation festzulegen!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Erzwinge IP-Version nicht unterstützt"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "Sie sollten das Programmpaket 'wget' oder 'curl' oder 'uclient-fetch' "
+#~ "installieren."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Wiederholungszähler bei Fehler"
 
@@ -1004,7 +1008,7 @@ msgstr ""
 #~ ">Weder über das LuCI Web Interface noch von der Geräte-Konsole"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the 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 "
@@ -1031,7 +1035,7 @@ msgstr ""
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "BusyBox' nslookup und Wget unterstützen kein 'specify'"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr ""
 #~ "BusyBox' nslookup und hostip unterstützen nicht die Angabe zur Benutzung "
 #~ "von TCP"
@@ -1181,9 +1185,9 @@ msgstr ""
 #~ msgstr "Hinweise"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "IPv6 wird vom System nicht (voll) unterstützt.<br /> Bitte folgen Sie den "
 #~ "Hinweisen auf der Homepage von OpenWrt, um die volle IPv6-Unterstützung "
@@ -1207,7 +1211,7 @@ msgstr ""
 #~ "Minuten == 300 Sekunden"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
index b35328de5bd5d330b4c74badd2ee304f3a0180e0..d2ce46e5a06da8c59e0abda2ae86d46eb7af10ee 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.14.1\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" δεν επιτρέπεται στη διαδρομή για Λόγους Ασφαλείας."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Προσθήκη νέων υπηρεσιών..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Ρυθμίσεις για προχωρημένους"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Να επιτρέπονται μη-δημόσιες διευθύνσεις IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Βασικές Ρυθμίσεις"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -46,73 +46,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Ακύρωση"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "Τρέχουσα ρύθμιση:"
 
@@ -121,15 +110,15 @@ msgstr "Τρέχουσα ρύθμιση:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr "Προσαρμοσμένο URL-ενημέρωσης"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -143,8 +132,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -152,50 +141,39 @@ msgstr ""
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Υπηρεσία DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -209,85 +187,81 @@ msgstr "Δυναμικό DNS"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Ενεργοποιήθηκε"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Σφάλμα"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -305,63 +279,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -369,196 +343,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Διεπαφή"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Ονομα"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Ποτέ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Κωδικός πρόσβασης"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -567,40 +546,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -608,7 +592,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -617,36 +601,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -654,11 +638,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -672,15 +656,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -688,7 +672,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -696,19 +680,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -716,7 +700,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -727,24 +717,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -753,35 +743,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Όνομα χρήστη"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -789,89 +779,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -879,12 +864,12 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 
index 7b316cc745dc6e9099c2da4644641e4c08f2f1d3..149a74c39a4136b8e3e306a3caec4a49afb48608 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.8-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "También conocido como el TOKEN en, por ejemplo, afraid.org"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Añadir nuevos servicios..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Ajustes avanzados"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Permitir IPs no públicas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Ajustes básicos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Vincular red"
 
@@ -46,23 +46,15 @@ msgstr "Vincular red"
 msgid "Binding to a specific network not supported"
 msgstr "No se admite la vinculación a una red específica"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"¡Nslookup y Wget de BusyBox no permiten especificar la versión de IP que se "
-"utilizará para la comunicación con el proveedor 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "¡Nslookup y 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:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ msgstr ""
 "¡nslookup de BusyBox en la actual versión compilada no maneja correctamente "
 "los servidores DNS determinados!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Ruta de certificados CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,46 +74,41 @@ msgstr ""
 "Ruta de los certificados CA que se utilizarán para descargar los datos de "
 "los servicios. Establezca IGNORE para omitir la validación de certificados."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Intervalo de comprobación"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Unidad de Comprobación"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Error de configuración"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Contiene archivos de registro para cada sección en ejecución."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr ""
 "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Crear servicio"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Ajuste actual:"
 
@@ -132,16 +119,16 @@ msgstr ""
 "Actualmente, las actualizaciones DDNS no se inician durante el arranque ni "
 "en eventos de interfaz."
 
-#: 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:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "URL de actualización personalizada"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script de actualización personalizado"
 
@@ -155,8 +142,8 @@ msgstr "Inicio automático DDNS desactivado"
 msgid "DDNS Autostart enabled"
 msgstr "Inicio automático DDNS activado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Proveedor de servicios DDNS"
 
@@ -164,52 +151,39 @@ msgstr "Proveedor de servicios DDNS"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Servicio DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "No se admiten solicitudes de DNS a través de TCP"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Servidor DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formato de fecha"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr "Define la página web desde la cual leer la dirección IP del sistema."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Define la interfaz desde la cual leer la dirección IP del sistema"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Define la red desde la cual leer la dirección IP del sistema"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Define la fuente desde la cual 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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
-msgstr "Define cual dirección IP (IPv4 o IPv6) se envía al proveedor de DDNS"
-
 #: 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:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Dominio"
 
@@ -223,85 +197,81 @@ msgstr "DNS dinámico"
 msgid "Dynamic DNS Version"
 msgstr "Versión de DNS dinámico"
 
-#: 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:545
 msgid "Edit"
 msgstr "Editar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Activado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Error"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Contador de Reintento Máx. de Error"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Intervalo de reintento de error"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Red de eventos"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Ejemplo para IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Ejemplo para IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Archivo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found 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:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Para códigos soportados mire aquí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forzar versión IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Versión de forzar IP no admitida"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Intervalo para forzar actualización"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forzar TCP en DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Unidad de tiempo para forzar actualización"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formato: IP o FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -320,44 +290,44 @@ msgstr "Conceder acceso a los procedimientos de DDNS"
 msgid "HTTPS not supported"
 msgstr "HTTPS no admitido"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr ""
 "Nombre de host / FQDN a validar, si una actualización de IP ocurre o es "
 "necesaria"
 
-#: 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:791
 msgid "IP address source"
 msgstr "Fuente de direccion IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Versión de dirección IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Dirección IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "La dirección IPv6 debe indicarse entre corchetes"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "IPv6 actualmente no es (totalmente) admitido por este sistema"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 no admitido"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Dirección IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -365,25 +335,25 @@ msgstr ""
 "Si están instalados los paquetes Wget y cURL, Wget se utiliza para la "
 "comunicación de forma predeterminada."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "Si esta sección del servicio está desactivada, no se iniciará."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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 proxy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -391,12 +361,15 @@ msgstr "Info"
 msgid "Information"
 msgstr "Información"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Inserta un script de actualización o una URL de actualización"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Debe instalar el paquete 'bind-host' o 'knot-host' o 'drill' para las "
+"peticiones DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -404,198 +377,202 @@ msgstr ""
 "Instala el paquete 'ca-certificates' o los certificados necesarios "
 "manualmente en el directorio predeterminado /etc/ssl/certs"
 
-#: 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:662
 msgid "Install Service"
 msgstr "Instalar servicio"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interfaz"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Intervalo para forzar envío de actualizaciones al proveedor DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Unidad de tiempo para el intervalo de actualizaciones forzadas enviadas al "
 "proveedor DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "Unidad de tiempo para el intervalo de verificación de cambio de IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Última actualización"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Visor de archivo de registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Directorio de registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Longitud de registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Registrar en archivo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Registro en syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Nombre de host a buscar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nombre"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Ni GNU Wget con SSL ni cURL están instalados para seleccionar una red para "
 "la comunicación."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Ni GNU Wget con SSL ni cURL están instalados para admitir actualizaciones "
 "seguras a través del protocolo HTTPS."
 
-#: 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:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "Red en la cual se iniciarán los scripts ddns-updater"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Nunca"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nuevo servicio DDNS…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Próxima actualizació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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "No se encontraron certificados"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Sin registro"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "IPs no públicas y bloqueadas por defecto"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "No se está ejecutando"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Aviso"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr "OPCIONAL: Fuerza el uso de comunicación puramente IPv4/IPv6."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
 msgstr ""
 "OPCIONAL: Fuerza el uso de TCP en lugar del UDP predeterminado en "
 "solicitudes DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "OPCIONAL: Usa un servidor DNS no predeterminado para detectar 'IP "
 "registrada'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "En caso de error, el script detendrá la ejecución después del número "
 "indicado de reintentos."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Parámetro Opcional Codificado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Parámetro Opcional"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr "Opcional: Reemplaza [PARAMENC] en URL de actualización (URL-encoded)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 "Opcional: Reemplaza [PARAMOPT] en URL de actualización (NO URL-encoded)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Servidor proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Contraseña"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Ruta al certificado CA"
 
@@ -606,40 +583,45 @@ msgstr ""
 "Por favor 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Inserta un script de actualización o una URL de actualización"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Leer / volver a leer el archivo de registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "¿Realmente quiere cambiar de servicio?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Recargar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Recargar este servicio"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Reemplaza [DOMAIN] en URL de actualización (URL-encoded)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Reemplaza [PASSWORD] en URL de actualización (URL-encoded)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Reemplaza [USERNAME] en URL de actualización (URL-encoded)"
 
@@ -647,7 +629,7 @@ msgstr "Reemplaza [USERNAME] en URL de actualización (URL-encoded)"
 msgid "Restart DDns"
 msgstr "Reiniciar DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Unidad de tiempo para Intervalo de Reintento"
 
@@ -656,36 +638,36 @@ msgid "Run once"
 msgstr "Ejecutar una vez"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Ejecutando"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Script"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Seleccione un servicio"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 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:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Servicio no instalado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Servicios"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "URL de descarga de servicios"
 
@@ -693,12 +675,12 @@ msgstr "URL de descarga de servicios"
 msgid "Services list last update"
 msgstr "Última actualización de lista de servicios"
 
-#: 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -714,15 +696,15 @@ msgstr "Iniciar DDNS"
 msgid "State"
 msgstr "Estado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Directorio de estado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Detener"
 
@@ -730,7 +712,7 @@ msgstr "Detener"
 msgid "Stop DDNS"
 msgstr "Detener DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Detener este servicio"
 
@@ -738,19 +720,19 @@ msgstr "Detener este servicio"
 msgid "Stopped"
 msgstr "Detenido"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Cambiar servicio"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "La configuración predeterminada de '0' reintentará infinitamente."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "El intervalo entre el cual comienza cada reintento sucesivo."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "El nombre del servicio ya está en uso"
 
@@ -758,7 +740,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 "Este es el contenido actual del archivo de registro en %h para este servicio."
@@ -772,24 +760,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 msgid "This will be autoset to the selected interface"
 msgstr "Esto se establecerá automáticamente en la interfaz seleccionada"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Ajustes de Temporizador"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL usada para detectar"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Desconocido"
@@ -798,35 +786,35 @@ msgstr "Desconocido"
 msgid "Update DDns Services List"
 msgstr "Actualizar la lista de servicios DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "URL usada para actualizar su Proveedor DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Usar HTTP seguro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Usar cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "Script definido por el usuario para leer la dirección IP del sistema"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nombre de usuario"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "No se admite el uso de un servidor DNS específico"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr "Valores inferiores a 5 minutos == 300 segundos no son admitidos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Valores inferiores a 'Intervalo de Verificación', excepto '0', son inválidos"
@@ -835,23 +823,28 @@ msgstr ""
 msgid "Verify"
 msgstr "Verificar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Advertencia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Define cual dirección IP (IPv4 o IPv6) se envía al proveedor de DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 "Qué unidades de tiempo usar para los contadores de intervalo de reintento."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -859,7 +852,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -867,18 +860,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Debe instalar el paquete 'bind-host' o 'knot-host' o 'drill' para las "
-"peticiones DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -887,49 +868,49 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL sin soporte de proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "personalizado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "días"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "directorio o ruta/archivo"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "horas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "o"
 
@@ -937,16 +918,39 @@ msgstr "o"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "para ejecutar HTTPS sin verificación de certificados de servidor (inseguro)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Comprobando el soporte de servicio..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Define la fuente desde la cual leer la dirección IP del sistema, que se "
+#~ "enviará al proveedor DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "¡Nslookup y Wget de BusyBox no permiten especificar la versión de IP que "
+#~ "se utilizará para la comunicación con el proveedor DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Versión de forzar IP no admitida"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Debe instalar el paquete 'wget' o 'curl' o 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Contador de reintentos de error"
 
@@ -986,7 +990,7 @@ msgstr ""
 #~ "interfaz de LuCI ni desde la consola"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the 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 /"
@@ -1013,7 +1017,7 @@ msgstr ""
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "Nslookup de BusyBox y Wget no admiten especificar"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr "Nslookup de BusyBox y hostip no admiten especificar el uso de TCP"
 
 #~ msgid "BusyBox's nslookup in the current compiled version"
@@ -1164,9 +1168,9 @@ msgstr ""
 #~ msgstr "Consejos"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "IPv6 actualmente no es (totalmente) compatible con este sistema<br />Siga "
 #~ "las instrucciones en la página de inicio de OpenWrt para activar el "
@@ -1192,7 +1196,7 @@ msgstr ""
 #~ "minutos == 300 segundos no son compatibles"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
index 65df73a5cc439e527f8d83990ca370fe31a1ae95..3c8771487d800296d11f4719e90ffc8aa727b106 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 5.7-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "به دلایل امنیتی در Path مجاز نیست"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "تنظیمات پیشرفته"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,73 +43,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "لغو"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr "شروع خودکار DDNS غیرفعال است"
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "از کار افتاده"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "دامنه"
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "ویرایش"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "به کار افتاده"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "خطا"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "پرونده"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "اگر این بخش از سرویس غیرفعال باشد، نمی توان آن را راه اندازی کرد."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "اطّلاعات"
 
@@ -366,196 +340,201 @@ msgstr "اطّلاعات"
 msgid "Information"
 msgstr "اطّلاعات"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "میانا"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "نام"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "هرگز"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "توجه"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "گذرواژه"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "خدمت‌ها"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr "وضعیت"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "توقّف"
 
@@ -685,7 +669,7 @@ msgstr "توقّف"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "ناشناخته"
@@ -750,35 +740,35 @@ msgstr "ناشناخته"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "نام کاربری"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "هشدار"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index 23ca2519af03566c91895514050ac01caca013ff..1444522db2e5867779fc9816ba676da0bc6d3154 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.12-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" ei ole sallittu polussa turvallisuussyistä."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Lisää uusia palveluita..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Lisäasetukset"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Salli ei-julkiset IP-osoitteet"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Perusasetukset"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Sido verkko"
 
@@ -43,23 +43,15 @@ msgstr "Sido verkko"
 msgid "Binding to a specific network not supported"
 msgstr "Sitomista tiettyyn verkkoon ei tueta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"BusyBoxin nslookup ja Wget eivät tue DDNS-palveluntarjoajan kanssa "
-"kommunikointiin käytettävän IP-version määrittämistä!"
-
-#: 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "BusyBoxin nslookup ja hostip eivät tue TCP:n käyttöä oletus-UDP:n sijasta "
 "DNS-palvelinta pyydettäessä!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -67,11 +59,11 @@ msgstr ""
 "BusyBoxin nslookup nykyisessä käännetyssä versiossa ei käsittele annettuja "
 "DNS-palvelimia oikein!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "CaCerts-polku"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -79,45 +71,40 @@ msgstr ""
 "Ca Certs -polku, jota käytetään palvelutietojen lataamiseen. Aseta IGNORE "
 "ohittaaksesi varmenteen vahvistuksen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Peruuta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Tarkistusväli"
 
-#: 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Tarkistetaan palvelutukea..."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27
 msgid "Configuration"
 msgstr "Kokoonpano"
 
 #: 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:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Määritysvirhe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create service"
 msgstr "Luo palvelu"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Nykyinen asetus:"
 
@@ -126,15 +113,15 @@ msgstr "Nykyinen asetus:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -148,8 +135,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -157,50 +144,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Pois käytöstä"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Verkkotunnus"
 
@@ -214,85 +190,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Muokkaa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Käytössä"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Virhe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Tiedosto"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Muoto"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Muoto: IP tai FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -310,63 +282,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr "HTTPS ei tuettu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr "IP-osoitteen lähde"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP-osoitteen versio"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-osoite"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 ei tuettu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-osoite"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Tietoja"
 
@@ -374,196 +346,201 @@ msgstr "Tietoja"
 msgid "Information"
 msgstr "Tietoja"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Asenna palvelu"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Sovitin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Viimeisin päivitys"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nimi"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Ei ikinä"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Uusi DDns-palvelu…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Seuraava päivitys"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Ei tietoja"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Sertifikaatteja ei löytynyt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Ei käynnissä"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Huomaa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Salasana"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Polku CA-varmenteeseen"
 
@@ -572,40 +549,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "Rekisteröity IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Lataa uudelleen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Lataa tämä palvelu uudelleen"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -613,7 +595,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr "Käynnistä DDns uudelleen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -622,36 +604,36 @@ msgid "Run once"
 msgstr "Suorita kerran"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Käynnissä"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Komentojono"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Valitse palvelu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Palvelu ei tue tätä IP-tyyppiä"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Palvelua ei ole asennettu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Palvelut"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -659,11 +641,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -677,15 +659,15 @@ msgstr "Käynnistä DDNS"
 msgid "State"
 msgstr "Tila"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Pysäytä"
 
@@ -693,7 +675,7 @@ msgstr "Pysäytä"
 msgid "Stop DDNS"
 msgstr "Pysäytä DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Pysäytä tämä palvelu"
 
@@ -701,19 +683,19 @@ msgstr "Pysäytä tämä palvelu"
 msgid "Stopped"
 msgstr "Pysäytetty"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Vaihda palvelua"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -721,7 +703,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -732,24 +720,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Ajastimen asetukset"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Tuntematon"
@@ -758,35 +746,35 @@ msgstr "Tuntematon"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Käytä cURL:ia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Käyttäjätunnus"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -794,89 +782,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Varoitus"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "päivää"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "tuntia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "tai"
 
@@ -884,11 +867,21 @@ msgstr "tai"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "päivitä järjestelmäsi uusimpaan OpenWrt-julkaisuun"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "sekuntia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
+
+#~ msgid "Checking the service support..."
+#~ msgstr "Tarkistetaan palvelutukea..."
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "BusyBoxin nslookup ja Wget eivät tue DDNS-palveluntarjoajan kanssa "
+#~ "kommunikointiin käytettävän IP-version määrittämistä!"
index 51bb4cb87931d0ee191c20f8aa0b9f30cd29db40..a81735d90d6f305e555783e4a8fedb50d283187d 100644 (file)
@@ -13,33 +13,33 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.18-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Ajouter de nouveaux services..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Paramètres avancés"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Autoriser les adresses IP non-publiques"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Paramètres de base"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Réseau Attaché"
 
@@ -47,24 +47,16 @@ msgstr "Réseau Attaché"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "Le nslookup et l'hostip de BusyBox ne permettent pas de spécifier "
 "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:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -72,11 +64,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Chemin d'accès des certificats CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -84,49 +76,44 @@ msgstr ""
 "Chemin d'accès Ca Certs qui sera utilisé afin de télécharger les données de "
 "service. Assigne IGNORE afin de sauter la validation de certificat."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Annuler"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Intervalle de contrôle"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Vérifier l'unité"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Vérifiant le support du service..."
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Erreur de configuration"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Créer un service"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Paramètre actuel :"
 
@@ -137,17 +124,17 @@ msgstr ""
 "Actuellement, les mises à jour DDNS ne sont pas lancées au démarrage ou lors "
 "des événements d'interface."
 
-#: 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:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "URL de mise à jour personnalisée"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script de mise à jour personnalisé"
 
@@ -161,8 +148,8 @@ msgstr "Démarrage automatique DDNS désactivé"
 msgid "DDNS Autostart enabled"
 msgstr "Démarrage automatique DDNS activé"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Fournisseur de service de DDNS"
 
@@ -170,53 +157,39 @@ msgstr "Fournisseur de service de DDNS"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Service DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "Serveur DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Format de date"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr "Définit la page web depuis laquelle lire les adresses IP système."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 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:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Désactivé"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domaine"
 
@@ -230,85 +203,81 @@ msgstr "DNS Dynamique"
 msgid "Dynamic DNS Version"
 msgstr "Version DNS dynamique"
 
-#: 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:545
 msgid "Edit"
 msgstr "Éditer"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Activé"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Erreur"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Intervalle de relance d'erreur"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Évènement réseau"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Exemple pour IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Exemple pour IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Fichier"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Suivez les instructions que vous trouverez sur leur page Web."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forcer la version IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Intervalle pour le forçage"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forcer TCP sur DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Forcer l'unité"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Format"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Format : IP ou FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -327,31 +296,31 @@ msgstr "Accorder l'accès aux procédures de ddns"
 msgid "HTTPS not supported"
 msgstr "HTTPS non pris en charge"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "Source de l'adresse IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Version de l'adresse IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Adresse IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 "IPv6 n'est actuellement pas (entièrement) pris en charge par ce système"
 
@@ -359,12 +328,12 @@ msgstr ""
 msgid "IPv6 not supported"
 msgstr "IPv6 non pris en charge"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Adresse IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -372,27 +341,27 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 "Si cette section de service est désactivée, elle n'a pas pu être démarrée."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Infos"
 
@@ -400,12 +369,15 @@ msgstr "Infos"
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an 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:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -413,195 +385,199 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Installer le service"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interface"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent 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:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Dernière mise à jour"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Visualiseur de fichier de journa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Répertoire de journal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Longueur du journal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Connectez-vous au fichier"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Connectez-vous à syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nom"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Ni de l'interface LuCI ni de la ligne de commande."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Jamais"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nouveau service DDns…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Aucune donnée"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Il n'y a aucun certificat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Pas de journaux"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "IP non publiques et par défaut bloquées"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Ne fonctionne pas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Remarque"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "FACULTATIF : Serveur proxy pour la détection et les mises à jour."
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "FACULTATIF : Utiliser 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr "En cas d'erreur, le script s'arrêtera après un nombre d'essais donné."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Paramètre codé en option"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Paramètre facultatif"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Serveur proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Mot de passe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Chemin vers le certificat CA"
 
@@ -612,40 +588,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an 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: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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Vraiment changer de service ?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Recharger"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Recharger ce service"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Remplace [DOMAIN] dans l'URL de mise à jour (encodé URL)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Remplace [MOT DE PASSE] dans l'URL de mise à jour (encodé URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Remplace [NON D'UTILISATEUR] dans l'URL de mise à jour (encodé URL)"
 
@@ -653,7 +634,7 @@ msgstr "Remplace [NON D'UTILISATEUR] dans l'URL de mise à jour (encodé URL)"
 msgid "Restart DDns"
 msgstr "Redémarrer DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Réessaier l'unité"
 
@@ -662,36 +643,36 @@ msgid "Run once"
 msgstr "Exécuter une fois"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "En cours d'exécution"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Script"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Choisis un service"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Le service ne supporte pas ce type d'adresse IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Service non-installé"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Services"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Téléchargement de l'URL de services"
 
@@ -699,13 +680,13 @@ msgstr "Téléchargement de l'URL de services"
 msgid "Services list last update"
 msgstr "Dernière mise à jour de la liste de services"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr ""
 "Définir ce paramètre sur 0 forcera le script à ne s’exécuter qu’une seule "
 "fois"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -721,15 +702,15 @@ msgstr "Démarrez DDNS"
 msgid "State"
 msgstr "État"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Répertoire d'état"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Arrêter"
 
@@ -737,7 +718,7 @@ msgstr "Arrêter"
 msgid "Stop DDNS"
 msgstr "Arrêtez DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Arrêtez ce service"
 
@@ -745,19 +726,19 @@ msgstr "Arrêtez ce service"
 msgid "Stopped"
 msgstr "Arrêté"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Change de service"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 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:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Intervalle entre deux tentatives réussies."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Le nom du service est déjà utilisé"
 
@@ -765,7 +746,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Il s’agit du contenu actuel du fichier journal en %h pour ce service."
 
@@ -778,24 +765,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Paramètres de la minuterie"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL a détecter"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Inconnue"
@@ -804,38 +791,38 @@ msgstr "Inconnue"
 msgid "Update DDns Services List"
 msgstr "Fait une mise à jour de la liste de services DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 "Mettre à jour l'URL à utiliser pour mettre à jour votre fournisseur DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Utilisez HTTP Secure"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Utilisez cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nom d'utilisateur"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Les valeurs inférieures à 'Vérifier l'intervalle' sauf '0' ne sont pas "
@@ -845,24 +832,30 @@ msgstr ""
 msgid "Verify"
 msgstr "Vérifier"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Avertissement"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+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:1044
 msgid "Which time units to use for retry counters."
 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:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -870,7 +863,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -879,18 +872,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -899,51 +880,51 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL sans prise en charge proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "personnalisé"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "jours"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "répertoire ou chemin/fichier"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "heures"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "ou"
 
@@ -951,16 +932,39 @@ msgstr "ou"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 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 "Checking the service support..."
+#~ msgstr "Vérifiant le support du service..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Définit la source à partir de laquelle lire l'adresse IP système qui sera "
+#~ "envoyée au fournisseur DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ 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 !"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Forcer la version IP n'est pas pris en charge"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Vous devez installer le paquet 'wget' ou 'curl' ou 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Compteur de tentatives d'erreur"
 
@@ -1001,7 +1005,7 @@ msgstr ""
 #~ "<br /> Ni à partir de l'interface LuCI ni à partir de la console"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the 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 /> "
@@ -1082,9 +1086,9 @@ msgstr ""
 #~ msgstr "Conseils"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "L'IPv6 est actuellement non pris en charge (complètement) par ce "
 #~ "système<br />Veuillez suivre les applications sur la page d'accueil de "
index aa6383193e04f9eac6f3dbfeb0758c069c63863d..02b26ee001f7e1a89a1c12d52b578b1c99d1a7b7 100644 (file)
@@ -11,32 +11,32 @@ msgstr ""
 "n>6 && n<11) ? 3 : 4;\n"
 "X-Generator: Weblate 5.9-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "Ní cheadaítear “../” ar an gcosán ar Chúis Slándála."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "A.k.a. an TOKEN ag e.g. eagla.org"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Cuir seirbhísí nua leis..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Socruithe chun cinn"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Ceadaigh IPanna neamhphoiblí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Socruithe Bunúsacha"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Ceangail Líonra"
 
@@ -44,23 +44,15 @@ msgstr "Ceangail Líonra"
 msgid "Binding to a specific network not supported"
 msgstr "Ceangal le líonra ar leith nach dtacaíonn sé"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"Ní thacaíonn nslookup BusyBox agus Wget leis an leagan IP a shonrú le húsáid "
-"le haghaidh cumarsáide le Soláthraí 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "Ní thacaíonn nslookup agus hostip BusyBox le sonrú chun TCP a úsáid in ionad "
 "UDP réamhshocraithe agus freastalaí DNS á iarraidh agat!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -68,11 +60,11 @@ msgstr ""
 "Ní láimhseálann nslookup BusyBox sa leagan tiomsaithe reatha Freastalaithe "
 "DNS a thugtar i gceart!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Cosán Teastais CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -80,45 +72,40 @@ msgstr ""
 "Conair deimhnithe CA a úsáidfear chun sonraí seirbhísí a íoslódáil. Socraigh "
 "IGNORE chun bailíochtú teastais a scipeáil."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Cealaigh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Seiceáil Eatramh"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Seiceáil Aonad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Seiceáil an tacaíocht seirbhíse..."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27
 msgid "Configuration"
 msgstr "Cumraíocht"
 
 #: 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:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Earráid Cumraíochta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Tá comhaid Logála ann do gach rannóg reatha."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr "Tá PID agus faisnéis stádais eile ann do gach rannóg reatha."
 
-#: 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:536
 msgid "Create service"
 msgstr "Cruthaigh seirbhí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:405
 msgid "Current setting:"
 msgstr "Suíomh reatha:"
 
@@ -129,15 +116,15 @@ msgstr ""
 "Faoi láthair ní thosaítear nuashonruithe DDNS ag tosaithe nó ar imeachtaí "
 "comhéadain."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr "Script nuashonraithe saincheaptha chun do Sholáthraí DDNS a nuashonrú."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "URL uasghrádaithe saincheaptha"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script nuashonraithe saincheaptha"
 
@@ -151,8 +138,8 @@ msgstr "DDNS Autostart míchumasaithe"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS Autostart cumasaithe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Soláthraí seirbhíse DDNS"
 
@@ -160,53 +147,39 @@ msgstr "Soláthraí seirbhíse DDNS"
 msgid "DDns"
 msgstr "DDN"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Seirbhís DDNs"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "Ní thacaítear le hiarratais DNS trí TCP"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Freastalaí DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formáid dáta"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr "Sainmhíníonn an leathanach Gréasáin chun seoladh IP córais a léamh ó."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Sainmhíníonn an comhéadan chun seoladh IP córais a léamh ó"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Sainmhíníonn an líonra chun seoladh IP córais a léamh ó"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Sainmhíníonn sé an fhoinse chun seoladh IP na córais a léamh, a sheolfar "
-"chuig an soláthraí DDNS"
-
-#: 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:635
-msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
-msgstr ""
-"Sainmhínítear cén seoladh IP 'IPv4/IPv6' a sheoltar chuig an soláthraí DDNS"
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17
 msgid "Disabled"
 msgstr "Díchumasaithe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Fearann"
 
@@ -220,85 +193,81 @@ msgstr "DNS dinimiciúil"
 msgid "Dynamic DNS Version"
 msgstr "Leagan Dinimiciúil DNS"
 
-#: 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:545
 msgid "Edit"
 msgstr "Cuir in eagar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "Cumasaigh cumarsáid shlán le soláthraí DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Cumasaithe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Earráid"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Earráid Max Retry Counter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Eatramh Aththriail Earráide"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Líonra Imeachtaí"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Sampla le haghaidh IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Sampla le haghaidh IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Comhad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Lean na treoracha atá le fáil ar a leathanach WEB."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Le haghaidh cóid tacaithe féach anseo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Leagan Fórsa IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Ní thacaítear le Leagan IP Force"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Eatramh Fórsa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Fórsa TCP ar DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Aonad Fórsa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formáid"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formáid: IP nó FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -318,42 +287,42 @@ msgstr "Rochtain a dheonú ar nósanna imeachta ddns"
 msgid "HTTPS not supported"
 msgstr "Ní thacaítear le HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "Óstainm/FQDN le bailíochtú, cibé an bhfuil nuashonrú IP riachtanach"
 
-#: 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:791
 msgid "IP address source"
 msgstr "Foinse seoladh IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Leagan seoladh IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-Seoladh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "Caithfear seoladh IPv6 a thabhairt i lúibíní cearnacha"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "Faoi láthair ní thacaíonn an córas seo le IPv6 (go hiomlán)"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "Ní thacaítear le IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6 Seoladh"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -361,26 +330,26 @@ msgstr ""
 "Má tá pacáiste Wget agus cURL suiteáilte, úsáidtear Wget le haghaidh "
 "cumarsáide de réir réamhshocraithe."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "Má tá an rannán seirbhíse seo díchumasaithe ní thosófar í."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 "Má tá cumarsáid shlán in úsáid agat, ba cheart duit teastais an fhreastalaí "
 "a fhíorú!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 msgid ""
 "In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
 msgstr ""
 "I roinnt leaganacha curl/libcurl i OpenWRT a thiomsú gan tacaíocht "
 "seachfhreastalaí."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Faisnéis"
 
@@ -388,12 +357,15 @@ msgstr "Faisnéis"
 msgid "Information"
 msgstr "Eolas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Cuir isteach Script Nuashonraithe NÓ URL Nuashonraithe"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Ba chóir duit pacáiste 'bind-host' nó 'knot-host' nó 'drill' a shuiteáil le "
+"haghaidh iarratais DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -401,201 +373,205 @@ msgstr ""
 "Suiteáil pacáiste 'ca-certificats' nó teastais riachtanacha de láimh isteach "
 "in eolaire réamhshocraithe /etc/ssl/certs"
 
-#: 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:662
 msgid "Install Service"
 msgstr "Suiteáil Seirbhís"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Comhéadan"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Eatramh chun nuashonruithe a chur i bhfeidhm chuig Soláthraí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Aonad eatramh le haghaidh nuashonruithe éigeantais seolta chuig Soláthraí "
 "DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "Aonad eatramh chun an IP athraithe a sheiceáil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Nuashonrú Deiridh"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Breathnóir Comhad Logála"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Eolaire logála"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Fad logála"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Logáil isteach i gcomhad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Logáil chuig syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Cuardaigh Ainm Óstach"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Ainm"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Níl GNU Wget le SSL ná cURL suiteáilte chun líonra a roghnú le húsáid le "
 "haghaidh cumarsáide."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Níl GNU Wget le SSL ná cURL suiteáilte chun tacú le nuashonruithe slán trí "
 "phrótacal HTTPS."
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Ní ó chomhéadan LuCi ná ó chonsól."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
 msgid "Network"
 msgstr "Líonra"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "Líonra ar a gcuirfear tús leis na scripteanna ddns-updater"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Ná riamh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Seirbhís Nua DDNs…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "An chéad Nuashonrú"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Gan aon Sonraí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Níl aon deimhnithe le fáil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Gan logáil"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "IPanna neamhphoiblí agus de réir réamhshocraithe"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Gan Rith"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Fógra"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "Líon na línte deireanach atá stóráilte i gcomhaid loga"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr "ROGHNACH: Cuir iallach ar úsáid cumarsáid íon IPv4/IPv6 amháin."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
 msgstr ""
 "ROGHNACH: Cuir iallach ar úsáid TCP in ionad UDP réamhshocraithe ar "
 "iarratais DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "ROGHNACH: Líonra le húsáid le haghaidh cumarsáide"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "ROGHNACH: Proxy-Server le haghaidh braite agus nuashonruithe."
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "ROGHNACH: Úsáid freastalaí DNS neamh-réamhshocraithe chun 'IP Cláraithe' a "
 "bhrath."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Ar Earráid stopfaidh an script forghníomhú tar éis an líon athiarrachtaí a "
 "thugtar."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Paraiméadar Ionchódaithe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Paraiméadar Roghnach"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 "Roghnach: Cuireann sé in ionad [PARAMENC] i URL uasghrádaithe (URL-"
 "ionchódaithe)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 "Roghnach: Cuireann sé in ionad [PARAMOPT] i URL uasghrádaithe (NÍ URL-"
 "ionchódaithe)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Freastalaí Proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Pasfhocal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Conair chuig Teastas CA"
 
@@ -605,40 +581,45 @@ msgid ""
 msgstr ""
 "Lean na treoracha ar leathanach baile OpenWRT chun tacaíocht IPv6 a chumasú"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071
 msgid "Please press [Read] button"
 msgstr "Brúigh [Léigh] cnaipe le do thoil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Cuir isteach Script Nuashonraithe NÓ URL Nuashonraithe"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Léithe/Athléigh comhad log"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "An bhfuil fonn ort an tseirbhís a athrú?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "IP cláraithe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Athlódáil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Athluchtaigh an tseirbhís seo"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Cuireann sé in ionad [DOMAIN] in Update-URL (URL-ionchódaithe)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Cuireann sé in ionad [PASSWORD] in Update-URL (URL-ionchódaithe)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 "Cuireann sé in ionad [USERNAME] in URL nuashonraithe (URL-ionchódaithe)"
@@ -647,7 +628,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr "Athosaigh DDNanna"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Aonad Athbhreithnigh"
 
@@ -656,36 +637,36 @@ msgid "Run once"
 msgstr "Rith uair amháin"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Ag rith"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Scripteanna"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Roghnaigh seirbhís"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Ní thacaíonn an tseirbhís leis an gcineál IP seo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Seirbhís níl suiteáil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Seirbhísí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Íoslódáil URL Seirbhísí"
 
@@ -693,13 +674,13 @@ msgstr "Íoslódáil URL Seirbhísí"
 msgid "Services list last update"
 msgstr "Liosta seirbhísí an nuashonrú"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr ""
 "Cuirfidh an paraiméadar seo a shocrú go 0 iallach ar an script a rith ach "
 "uair amháin"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -715,15 +696,15 @@ msgstr "Tosaigh DDNS"
 msgid "State"
 msgstr "Stáit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103
 msgid "Status"
 msgstr "Stádas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Eolaire stádais"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stad"
 
@@ -731,7 +712,7 @@ msgstr "Stad"
 msgid "Stop DDNS"
 msgstr "Stad DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Stop an tseirbhís seo"
 
@@ -739,19 +720,19 @@ msgstr "Stop an tseirbhís seo"
 msgid "Stopped"
 msgstr "Stopa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Seirbhís athraigh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Déanfaidh an socrú réamhshocraithe de '0' iarracht gan teorainn."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "An t-eatramh idir a dtosaíonn gach triail eile ina dhiaidh sin."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Úsáidtear ainm na seirbhíse cheana féin"
 
@@ -759,7 +740,13 @@ msgstr "Úsáidtear ainm na seirbhíse cheana féin"
 msgid "There is no service configured."
 msgstr "Níl aon seirbhís cumraithe ann."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Is é seo ábhar reatha an chomhaid logála in% h don tseirbhís seo."
 
@@ -772,24 +759,24 @@ msgstr ""
 "Is é seo an réamhshocraithe má reáchtáil tú scripteanna DDNS leat féin (ie "
 "trí cron le force_interval socraithe go '0')"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "Beidh sé seo uathshocraithe chuig an gcomhéadan roghnaithe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Socruithe ama"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL chun a bhrath"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Anaithnid"
@@ -798,35 +785,35 @@ msgstr "Anaithnid"
 msgid "Update DDns Services List"
 msgstr "Nuashonraigh Liosta Seirbhísí DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "Nuashonraigh URL chun do Sholáthraí DDNS a nuashonrú."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Úsáid HTTP Secure"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Úsáid cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "Script sainmhínithe ag úsáideoir chun seoladh IP córais"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Ainm úsáideora"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Freastalaí DNS ar leith a úsáid nach dtacaítear"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr "Ní thacaítear le luachanna faoi bhun 5 nóiméad == 300 soicind"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "Tá luachanna níos ísle ná 'Seiceáil Eatramh' seachas '0' neamhbhailí"
 
@@ -834,22 +821,28 @@ msgstr "Tá luachanna níos ísle ná 'Seiceáil Eatramh' seachas '0' neamhbhail
 msgid "Verify"
 msgstr "Fíoraigh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Aire"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+"Sainmhínítear cén seoladh IP 'IPv4/IPv6' a sheoltar chuig an soláthraí DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "Cé na haonaid ama atá le húsáid le haghaidh cuntair athbhreithnithe."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 msgid ""
 "Writes detailed messages to log file. File will be truncated automatically."
 msgstr ""
 "Scríobhann teachtaireachtaí mionsonraithe chuig comhad Déanfar comhad a "
 "ghearradh go huathoibríoch."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -857,7 +850,7 @@ msgstr ""
 "Scríobhann teachtaireachtaí logála chuig syslog. Scríofar Earráidí "
 "Criticiúla chuig syslog i gcónaí."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -865,19 +858,6 @@ msgstr ""
 "Ba chóir duit pacáiste 'bind-host' nó 'knot-host' nó 'drill' nó 'hostip' a "
 "shuiteáil, más gá duit freastalaí DNS a shonrú chun d'IP cláraithe a bhrath."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Ba chóir duit pacáiste 'bind-host' nó 'knot-host' nó 'drill' a shuiteáil le "
-"haghaidh iarratais DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-"Ba chóir duit pacáiste 'wget' nó 'curl' nó 'uclient-fetch' a shuiteáil."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -886,51 +866,51 @@ msgstr ""
 "Ba chóir duit 'wget' nó 'curl' nó 'uclient-fetch' a shuiteáil le pacáiste "
 "'libustream-*ssl'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "Ba chóir duit pacáiste 'wget' nó 'curl' a shuiteáil."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 msgid ""
 "You should install 'wget' or 'uclient-fetch' package or replace libcurl."
 msgstr ""
 "Ba chóir duit pacáiste 'wget' nó 'uclient-fetch' a shuiteáil nó libcurl a "
 "athsholáthar."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 "Tá cURL suiteáilte, ach tiomsaíodh libcurl gan tacaíocht seachfhreastalaí."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL gan Tacaíocht Seachfhreachta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "gnás"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "laethanta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "eolaire nó cosáin/comhad"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "uaireanta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "nóiméad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "nó"
 
@@ -938,11 +918,35 @@ msgstr "nó"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "nó nuashonrú do chóras go dtí an Scaoileadh OpenWRT is déanaí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "soicindí"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "HTTPS a reáchtáil gan deimhnithe freastalaí a fhíorú (neamhchinnte)"
+
+#~ msgid "Checking the service support..."
+#~ msgstr "Seiceáil an tacaíocht seirbhíse..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Sainmhíníonn sé an fhoinse chun seoladh IP na córais a léamh, a sheolfar "
+#~ "chuig an soláthraí DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "Ní thacaíonn nslookup BusyBox agus Wget leis an leagan IP a shonrú le "
+#~ "húsáid le haghaidh cumarsáide le Soláthraí DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Ní thacaítear le Leagan IP Force"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "Ba chóir duit pacáiste 'wget' nó 'curl' nó 'uclient-fetch' a shuiteáil."
index 60fcc53f15fb92c115bd438c1d9d6a486603c9fb..78214363018668b676114248559e2a46e079dcf3 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "הגדרות מתקדמות"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -46,73 +46,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "ביטול"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -121,16 +110,16 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 #, fuzzy
 msgid "Custom update-URL"
 msgstr "עדכן URL באופן ידני"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -144,8 +133,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -153,50 +142,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -210,85 +188,81 @@ msgstr "DNS דינאמי"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "פעילה"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -306,63 +280,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -370,196 +344,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "מנשק"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "אף פעם"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "סיסמא"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -568,40 +547,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -609,7 +593,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -618,36 +602,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -655,11 +639,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -673,15 +657,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -689,7 +673,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -697,19 +681,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -717,7 +701,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -728,24 +718,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -754,35 +744,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "שם משתמש"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -790,89 +780,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -880,12 +865,12 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 
index c0d28e2f947a4f566e95c10bbc65aa5728794eea..1e46a75162beb3bab873cb5a392f78dddf777c06 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 5.7-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "उन्नत सेटिंग्स"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,73 +43,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "रद्द करें"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -366,196 +340,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -685,7 +669,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "अज्ञात"
@@ -750,35 +740,35 @@ msgstr "अज्ञात"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index 42aff3a85f70e64468bd4f72f9f9aaab9d213c8d..3efdc1bd38dee3ce3389d1a64f05a35a401b3e63 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.8-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Új szolgáltatások hozzáadása…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Haladó beállítások"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Nem nyilvános IP-k engedélyezése"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Alapszintű beállítások"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Hálózat kötése"
 
@@ -46,77 +46,64 @@ msgstr "Hálózat kötése"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Mégse"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Ellenőrzési időköz"
 
-#: 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Beállítási hiba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Szolgáltatás létrehozása"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Jelenlegi beállítás:"
 
@@ -127,16 +114,16 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "Egyéni frissítési URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Egyéni frissítő parancsfájl"
 
@@ -150,8 +137,8 @@ msgstr "A DDNS automatikus indítása letiltva"
 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:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS-szolgáltató"
 
@@ -159,56 +146,41 @@ msgstr "DDNS-szolgáltató"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDns szolgáltatás"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "DNS-kiszolgáló"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Dátumformátum"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 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:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Letiltva"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Tartomány"
 
@@ -222,85 +194,81 @@ msgstr "Dinamikus DNS"
 msgid "Dynamic DNS Version"
 msgstr "Dinamikus DNS verziója"
 
-#: 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:545
 msgid "Edit"
 msgstr "Szerkesztés"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Engedélyezve"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Hiba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 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:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Eseményhálózat"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Példa az IPv4-hez"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Példa az IPv6-hoz"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Fájl"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "IP-verzió kényszerítése"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Kényszerítés időköze"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 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:1025
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formátum"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formátum: IP vagy FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -320,42 +288,42 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr "A HTTPS nem támogatott"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "IP-cím forrása"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP-cím verziója"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-cím"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "Az IPv6 nem támogatott"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-cím"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -363,28 +331,28 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will 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:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Infó"
 
@@ -392,212 +360,219 @@ msgstr "Infó"
 msgid "Information"
 msgstr "Információ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Csatoló"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent 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:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Utolsó frissítés"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Naplófájl-megjelenítő"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Naplókönyvtár"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Napló hossza"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Naplózás fájlba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Naplózás a rendszernaplóba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Név"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Soha"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Új DDNS szolgáltatás…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 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:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Nincs naplózás"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Nem nyilvános és alapértelmezetten blokkolt IP-k"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Nem fut"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Értesítés"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Elhagyható kódolt paraméterek"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Elhagyható paraméter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Proxy-kiszolgáló"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Jelszó"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Útvonal a CA-tanúsítványhoz"
 
@@ -608,40 +583,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Újratöltés"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "A szolgáltatás újratöltése"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 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)"
@@ -650,7 +630,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr "DDns újraindítása"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -659,36 +639,36 @@ msgid "Run once"
 msgstr "Futtatás egyszer"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Parancsfájl"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Szolgáltatások"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -696,11 +676,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -714,15 +694,15 @@ msgstr "DDNS indítása"
 msgid "State"
 msgstr "Állapot"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Állapotkönyvtár"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Megállítás"
 
@@ -730,7 +710,7 @@ msgstr "Megállítás"
 msgid "Stop DDNS"
 msgstr "DDNS leállítása"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "A szolgáltatás leállítása"
 
@@ -738,21 +718,21 @@ msgstr "A szolgáltatás leállítása"
 msgid "Stopped"
 msgstr "Megállítva"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 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:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "A szolgáltatás neve már használatban van"
 
@@ -760,7 +740,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -773,24 +759,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Időzítő beállításai"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "Felismerendő URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Ismeretlen"
@@ -799,37 +785,37 @@ msgstr "Ismeretlen"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "HTTP biztonság használata"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "cURL használata"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Felhasználónév"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Az „Ellenőrzési időköz” értékénél alacsonyabb értékek a „0” kivételével nem "
@@ -839,23 +825,30 @@ msgstr ""
 msgid "Verify"
 msgstr "Ellenőrzés"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Figyelmeztetés"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+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:1044
 msgid "Which time units to use for retry counters."
 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:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -863,24 +856,12 @@ 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -889,51 +870,51 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 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:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "egyéni"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "nap"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 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:996
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "óra"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "vagy"
 
@@ -941,17 +922,38 @@ msgstr "vagy"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 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 ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ 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"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ 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!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Az IP verziójának kényszerítése nem támogatott"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "Telepítenie kell a „wget”, a „curl” vagy az „uclient-fetch” csomagot."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Hiba újrapróbálási számláló"
 
@@ -987,7 +989,7 @@ msgstr ""
 #~ 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"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr ""
 #~ "A BusyBox nslookup és hostip programjai nem támogatják a használandó TCP "
 #~ "megadását"
index 192f8ea6ce83de15f397cdeb35a6157ff17e2ce1..fe1c8afd7610d7b2a69c3cc827fcc529f8e367e2 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.8.2\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Aggiungi un nuovo servizio..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Impostazioni avanzate"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Consenti IP non pubblici"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Impostazioni di base"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Collega Rete"
 
@@ -46,23 +46,15 @@ msgstr "Collega Rete"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"Nslookup di BusyBox e Wget non supportano lo specificare la versione IP da "
-"usare per la comunicazione con il Provider DDNS!"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "Nslookup di BusyBox e hostip non supportano lo specificare l'uso di TCP "
 "invece di UDP di default quando richiedono il server DNS!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Percorso certificati CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,47 +74,42 @@ msgstr ""
 "Percorso dei certificati CA che verrà utilizzato per scaricare i dati dei "
 "servizi. Imposta IGNORA per saltare la convalida del certificato."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Annulla"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Intervallo di Controllo"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Unità controllo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Verifica del supporto del servizio..."
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Errore di Configurazione"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Crea Servizio"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Impostazioni Correnti:"
 
@@ -133,17 +120,17 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "URL di aggiornamento personalizzato"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script di aggiornamento personalizzato"
 
@@ -157,8 +144,8 @@ msgstr "Autoavvio DDNS disabilitato"
 msgid "DDNS Autostart enabled"
 msgstr "AutoAvvio DDNS attivo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Provider del Servizio DDNS"
 
@@ -166,52 +153,39 @@ msgstr "Provider del Servizio DDNS"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Servizio DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "Server DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formato Data"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr "Definisce la pagina Web da cui leggere l'indirizzo IP del sistema."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Definisce la rete da cui leggere l'indirizzo IP del sistema"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Definisce la sorgente da cui leggere l'indirizzo IP del sistema, questa "
-"verrà inviata al provider DDNS"
-
-#: 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:635
-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:17
 msgid "Disabled"
 msgstr "Disattivato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Dominio"
 
@@ -225,85 +199,81 @@ msgstr "DNS Dinamico"
 msgid "Dynamic DNS Version"
 msgstr "Versione DNS Dinamico"
 
-#: 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:545
 msgid "Edit"
 msgstr "Modifica"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Abilita"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Errore"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Errore: Contatore massimo di tentativi raggiunto"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Intervallo nuovo tentativo"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Network Evento"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Esempio di IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Esempio di IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "File"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Segui le istruzioni che trovi sulla loro pagina WEB."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forza Versione IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Forza Versione IP non supportato"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Intervallo aggiornamento forzato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forza TCP su DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Unità aggiornamento forzato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formato: IP o FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -321,43 +291,43 @@ msgstr "Concedere l'accesso a ddns procedures"
 msgid "HTTPS not supported"
 msgstr "HTTPS non supportato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "Sorgente indirizzo IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Versione indirizzo IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Indirizzo-IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "IPv6 non supportato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Indirizzo-IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -365,24 +335,24 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will 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:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -390,12 +360,15 @@ msgstr "Info"
 msgid "Information"
 msgstr "Informazioni"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Inserisci uno script di aggiornamento OPPURE un URL di aggiornamento"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -403,197 +376,201 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Installa servizio"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interfaccia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Intervallo per mandare un aggiornamento forzato al provider DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent 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:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Ultimo Aggiornamento"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Visualizzatore Registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Directory registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Lunghezza registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Registra su file"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Registra su syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nome"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Nè GNU Wget con SSL nè cURL installati per selezionare una rete da usare per "
 "comunicazione."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Nè GNU Wget con SSL nè cURL installati per supportare aggiornamenti sicuri "
 "via protocollo HTTPS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Né dall'interfaccia LuCI né dalla console."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Mai"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nuovo Servizio DDns…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Nessun dato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Nessun certificato trovato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Nessun registro"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Ip non pubblici e bloccati di default"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Non in esecuzione"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Avviso"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "OPZIONALE: Usa Server DNS non di default per individuare 'IP Registrato'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Se si verifica un errore lo script smetterà di funzionare dopo un "
 "determinato numero di tentativi."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Parametro Codificato Opzionale"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Parametro Opzionale"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Server PROXY"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Password"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Percorso del certificato CA"
 
@@ -604,40 +581,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Inserisci uno script di aggiornamento OPPURE un URL di aggiornamento"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Cambiare davvero servizio?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Ricarica"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Aggiorna questo servizio"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Sostituisci [DOMINIO] nell'URL di aggiornamento (URL codificato)"
 
-#: 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:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Sostituisci [USERNAME] nell'URL di aggiornamento (URL codificato)"
 
@@ -645,7 +627,7 @@ msgstr "Sostituisci [USERNAME] nell'URL di aggiornamento (URL codificato)"
 msgid "Restart DDns"
 msgstr "Riavvia DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Unità nuovo tentativo"
 
@@ -654,36 +636,36 @@ msgid "Run once"
 msgstr "Esegui una volta"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Script"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Seleziona un servizio"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Il servizio non supporta questo tipo di IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Servizio non installato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Servizi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "URL download file dei servizi"
 
@@ -691,12 +673,12 @@ msgstr "URL download file dei servizi"
 msgid "Services list last update"
 msgstr "Ultimo aggiornamento dell'elenco dei servizi"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr ""
 "Impostando questo parametro a 0, lo script verrà eseguito solo una volta"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -712,15 +694,15 @@ msgstr "Avvia DDNS"
 msgid "State"
 msgstr "Stato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Stato cartella"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Ferma"
 
@@ -728,7 +710,7 @@ msgstr "Ferma"
 msgid "Stop DDNS"
 msgstr "Arresta DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Arresta questo servizio"
 
@@ -736,19 +718,19 @@ msgstr "Arresta questo servizio"
 msgid "Stopped"
 msgstr "Fermato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Cambia servizio"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "L'opzione di default '0' riproverà all'infinito."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "L'intervallo tra il quale avrà inizio ogni tentativo successivo."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Questo nome per il servizio è già usato"
 
@@ -756,7 +738,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 "Questo è il contenuto corrente del file di log in %h per questo servizio."
@@ -770,24 +758,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Impostazioni del Timer"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL da individuare"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Sconosciuto"
@@ -796,35 +784,35 @@ msgstr "Sconosciuto"
 msgid "Update DDns Services List"
 msgstr "Aggiorna l'elenco dei servizi DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Usa HTTP Sicuro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Usa cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nome utente"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Valori inferiori al 'Check Interval' (Intervallo di Check) eccetto '0' non "
@@ -834,22 +822,27 @@ msgstr ""
 msgid "Verify"
 msgstr "Verifica"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Avviso"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Definisce quale indirizzo IP 'IPv4/IPv6' è mandato al provider DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "Unità di tempo da utilizzare per i contatori dei tentativi."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -857,7 +850,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -866,18 +859,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Dovresti installare il pacchetto 'bind-host' o 'knot-host' o 'drill' per le "
-"richieste DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -886,50 +867,50 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL senza Supporto Proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "personalizzato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "giorni"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "directory o percorso/file"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "ore"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "o"
 
@@ -937,16 +918,39 @@ msgstr "o"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "per eseguire HTTPS senza la verifica dei certificati del server (insicuro)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Verifica del supporto del servizio..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Definisce la sorgente da cui leggere l'indirizzo IP del sistema, questa "
+#~ "verrà inviata al provider DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "Nslookup di BusyBox e Wget non supportano lo specificare la versione IP "
+#~ "da usare per la comunicazione con il Provider DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Forza Versione IP non supportato"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Dovresti installare il pacchetto 'wget' o 'curl' o 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Contatore tentativi su errore"
 
@@ -989,7 +993,7 @@ msgstr ""
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "Nslookup di Busybox e Wget non supportano la specifica"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr ""
 #~ "Nslookup di Busybox e HostIp non supportano la specifica per usare TCP"
 
@@ -1128,9 +1132,9 @@ msgstr ""
 #~ msgstr "Suggerimenti"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "IPv6 non è (pienamente) supportato da questo sistema<br />Per favore "
 #~ "segui le istruzioni sul sito di OpenWrt per abilitare il supporto a "
@@ -1155,7 +1159,7 @@ msgstr ""
 #~ "minuti == 300 secondi non sono supportati"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
index 2896f10c9a76eaf145cf8df18b63ff66697dc34d..47bf40fd43b46344c3e305258c9756d89a967526 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.8-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "セキュリティ上の理由でパスで「../」を使用できません。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "新規サービスを追加..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "詳細設定"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "非パブリック IP を許可"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "基本設定"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "ネットワークをバインド"
 
@@ -46,23 +46,15 @@ msgstr "ネットワークをバインド"
 msgid "Binding to a specific network not supported"
 msgstr "特定のネットワークへのバインドはサポートされていません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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 のバー"
-"ジョン指定をサポートしていません!"
-
-#: 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "BusyBox の nslookup と hostip は、DNSサーバーをリクエストする際にデフォルト"
 "の UDP の代わりに TCP を使用する指定をサポートしていません!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ msgstr ""
 "現在のコンパイル済バージョンの BusyBox の nslookup は、指定された DNS サー"
 "バーを正しく処理しません!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "CA 証明書パス"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,46 +74,41 @@ msgstr ""
 "サービスデータをダウンロードするために使用される CA 証明書のパスです。証明書"
 "の検証をスキップするには IGNORE を設定します。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "キャンセル"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr "チェックの単位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "構成エラー"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "実行中の各セクションのログファイルを含むディレクトリです。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr ""
 "実行中の各セクションの PID とその他のステータス情報を含むディレクトリです。"
 
-#: 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "現在の設定 :"
 
@@ -132,15 +119,15 @@ msgstr ""
 "現在、 DDNS のアップデートはブート時またはインターフェース イベント時に開始さ"
 "れません。"
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr "DDNS プロバイダーの更新に使用されるカスタム更新スクリプトです。"
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "手動アップデート-URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "カスタム更新スクリプト"
 
@@ -154,8 +141,8 @@ msgstr "DDNS 自動開始が無効"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS 自動開始が有効"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS サービス・プロバイダー"
 
@@ -163,52 +150,39 @@ msgstr "DDNS サービス・プロバイダー"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDNS サービス"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "TCP 経由の DNS リクエストはサポートされていません"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS サーバー"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "システムの IP アドレス読み取り元のインターフェースを定義 :"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "システムの IP アドレス読み取り元のネットワークを定義 :"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "無効"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "ドメイン"
 
@@ -222,85 +196,81 @@ msgstr "ダイナミックDNS"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "編集"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "DDNS プロバイダーとの安全な通信を有効にする"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "有効"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "エラー"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "最大エラー試行カウンタ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "エラー再試行間隔"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr "IPv4 の例"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "IPv6 の例"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "ファイル"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "プロバイダーの Web ページにある使用方法に従ってください。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "サポートされているコードについては、こちらをご覧ください"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "IP バージョンの強制"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "IP バージョンの強制はサポートされていません"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "強制の間隔"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "DNS で TCP を強制"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "強制の単位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "形式"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "形式: IP または FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -320,30 +290,30 @@ msgstr "ddnsプロシージャへのアクセスを許可"
 msgid "HTTPS not supported"
 msgstr "HTTPS はサポートされていません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "IP 更新が発生した、または必要な場合に検証するホスト名または FQDN です"
 
-#: 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:791
 msgid "IP address source"
 msgstr "IP アドレス読み取り元"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP アドレスのバージョン"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4アドレス"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "IPv6 アドレスは角括弧内に記述される必要があります"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 "IPv6 は現在このシステムによってサポートされていないか、完全ではありません"
 
@@ -351,12 +321,12 @@ msgstr ""
 msgid "IPv6 not supported"
 msgstr "IPv6 はサポートされていません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6アドレス"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -364,26 +334,26 @@ msgstr ""
 "wget および cURL パッケージがインストールされている場合、通信にはデフォルト"
 "で wget が使用されます。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 "このサービスセクションが無効化されている場合、セクションは開始されることがで"
 "きません。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr "安全な通信を使用する場合は、サーバー証明書を検証する必要があります!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "情報"
 
@@ -391,12 +361,15 @@ msgstr "情報"
 msgid "Information"
 msgstr "情報"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "更新スクリプトを挿入または URL を更新"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"DNS リクエストするには、bind-host、knot-host または drill パッケージをインス"
+"トールする必要があります。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -404,197 +377,201 @@ msgstr ""
 "'ca-certificates' パッケージをインストールするか、必要な証明書をデフォルト"
 "の /etc/ssl/certs ディレクトリに手動で配置してください"
 
-#: 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:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "インターフェース"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "DDNS プロバイダーに送信する強制アップデートの間隔です"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "DDNS プロバイダーに送信する強制アップデートの間隔の単位です"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "変更された IP のチェック間隔の単位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr "ログファイル・ビューア"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "ログ・ディレクトリ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "ログの長さ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "ファイルへログを記録"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "syslog へログを記録"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "名前"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 "LuCI インターフェースから、またはコンソールからのどちらだとしてもです。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "なし"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "新規 DDNS サービス…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "証明書が見つかりません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "ログを記録しない"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "非パブリックかつデフォルトでブロックされる IP"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "実行されていません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "注意"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "ログファイルに保存される行数です"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "オプション : 通信に使用するネットワーク"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "オプション: 検出とアップデートに使用するプロキシ サーバーです。"
 
-#: 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:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr "指定された再試行回数後のスクリプトのエラーで実行を停止します"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "エンコードされたパラメーター(オプション)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "パラメーター(オプション)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "プロキシ・サーバー"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "パスワード"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "CA証明書のパス"
 
@@ -604,40 +581,45 @@ msgid ""
 msgstr ""
 "IPv6 サポートを有効にするには、OpenWrt のホームページの指示に従ってください"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "更新スクリプトを挿入または URL を更新"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "本当にサービスを切り替えますか?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "リロード"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "更新 URL 内の [DOMAIN] を置き換えます(URL エンコードされたもの)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "更新 URL 内の [PASSWORD] を置き換えます(URL エンコードされたもの)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "更新 URL 内の [USERNAME] を置き換えます(URL エンコードされたもの)"
 
@@ -645,7 +627,7 @@ msgstr "更新 URL 内の [USERNAME] を置き換えます(URL エンコード
 msgid "Restart DDns"
 msgstr "DDNS を再起動"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "再試行の単位"
 
@@ -654,36 +636,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "スクリプト"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "サービスを選択"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "サービスはこの IP タイプをサポートしていません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "サービスがインストールされていません"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "サービス"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "サービスダウンロード URL"
 
@@ -691,11 +673,11 @@ msgstr "サービスダウンロード URL"
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -711,15 +693,15 @@ msgstr "DDNS を開始"
 msgid "State"
 msgstr "状態"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "ステータス ディレクトリ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "停止"
 
@@ -727,7 +709,7 @@ msgstr "停止"
 msgid "Stop DDNS"
 msgstr "DDNS を停止"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "このサービスを停止"
 
@@ -735,19 +717,19 @@ msgstr "このサービスを停止"
 msgid "Stopped"
 msgstr "停止済"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "サービスを切り替える"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "デフォルトのゼロを設定すると、無限に再試行します。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "指定された再試行回数後のスクリプトのエラーで実行を停止します"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "サービス名はすでに使用されています"
 
@@ -755,7 +737,13 @@ msgstr "サービス名はすでに使用されています"
 msgid "There is no service configured."
 msgstr "構成済のサービスはありません。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "本サービスの%hでログファイルの現在の内容です。"
 
@@ -768,24 +756,24 @@ msgstr ""
 "もしユーザー自身で DDNS スクリプトを実行する場合、これがデフォルトです(例: "
 "force_interval を '0' に設定して cron で)"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "これは選択したインターフェースに自動設定されます"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "検出する URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "不明"
@@ -794,36 +782,36 @@ msgstr "不明"
 msgid "Update DDns Services List"
 msgstr "DDNS サービスリストを更新"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 "DDNS プロバイダーをアップデートするために使用されるアップデート URL です。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "HTTPS の使用"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "cURL を使用"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "システムの IP アドレスを読み取るユーザー定義スクリプト"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "ユーザー名"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "特定の DNS サーバーの使用はサポートされていません"
 
-#: 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:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "チェック間隔より小さい値はサポートされていません(ゼロを除く)"
 
@@ -831,24 +819,29 @@ msgstr "チェック間隔より小さい値はサポートされていません
 msgid "Verify"
 msgstr "検証"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "警告"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "DDNS プロバイダーに送信される IP アドレス「IPv4/IPv6」を定義"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 "エラーの場合、スクリプトは指定された時間が経過すると失敗したアクションを再試"
 "行します"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -856,7 +849,7 @@ msgstr ""
 "ログメッセージを syslog に書き込みます。 重大なエラーは常に syslog に書き込ま"
 "れます。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -864,19 +857,6 @@ msgstr ""
 "登録済 IP を検出するため DNS サーバーを指定する必要がある場合は、bind-host、"
 "knot-host、drill または hostip パッケージをインストールする必要があります。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -885,52 +865,52 @@ msgstr ""
 "libustream-*ssl パッケージとともに wget、curl または uclient-fetch パッケージ"
 "をインストールする必要があります。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "wget または curl パッケージをインストールする必要があります。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "プロキシ・サポートなしの cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "カスタム"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "日数"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "ディレクトリまたはパス/ファイル"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "時間"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "または"
 
@@ -938,15 +918,40 @@ msgstr "または"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "またはシステムを最新の OpenWrt リリースに更新します"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "サーバー証明書の検証なしにHTTPSを実行する(安全ではありません)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "サービスのサポートをチェック中..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "システムのIPアドレス読み取り元を定義します。それは、DDNS プロバイダーに送"
+#~ "信されます"
+
+#~ 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 の"
+#~ "バージョン指定をサポートしていません!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "IP バージョンの強制はサポートされていません"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "wget、curl または uclient-fetch パッケージをインストールする必要がありま"
+#~ "す。"
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "エラー再試行カウンター"
 
index 3727c7b0c059ebdc01d9f2afdc95406ce151ecfb..d84b060a2bc30dce609349a40d15f0cc9593aaf5 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.1-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\"는 보안상의 이유로 경로에 사용될 수 없습니다."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "새로운 서비스 추가..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "고급 설정"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "비공인 IP 사용"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "기본 설정"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,29 +43,23 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "CA 인증서 경로"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -73,45 +67,40 @@ msgstr ""
 "서비스 데이터를 다운로드할 때 사용될 CA 인증서의 경로입니다. IGNORE로 설정하"
 "면 인증서 유효성 검증을 생략합니다."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "취소"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "설정 오류"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "현재 설정:"
 
@@ -120,15 +109,15 @@ msgstr "현재 설정:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -142,8 +131,8 @@ msgstr "DDNS 자동 실행 비활성화됨"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS 자동 실행 활성화됨"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS 서비스 제공자"
 
@@ -151,50 +140,39 @@ msgstr "DDNS 서비스 제공자"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDNS 서비스"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "TCP를 통한 DNS 요청이 지원되지 않음"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS 서버"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "비활성화"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -208,85 +186,81 @@ msgstr "동적 DNS"
 msgid "Dynamic DNS Version"
 msgstr "동적 DNS 버전"
 
-#: 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:545
 msgid "Edit"
 msgstr "수정"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "활성화"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "에러"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "오류 재시도 간격"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr "IPv4 예시"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "IPv6 예시"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "파일"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -304,63 +278,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4 주소"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "정보"
 
@@ -368,12 +342,13 @@ msgstr "정보"
 msgid "Information"
 msgstr "정보"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -381,185 +356,189 @@ msgstr ""
 "'ca-certificates' 패키지를 설치하거나, /etc/ssl/certs 기본 디렉터리에 필요한 "
 "인증서를 직접 설치해주세요."
 
-#: 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:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "인터페이스"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "이름"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "안함"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "패스워드"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "CA 인증서 경로"
 
@@ -568,40 +547,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -609,7 +593,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr "DDNS 재시작"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -618,36 +602,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "스크립트"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "서비스"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -655,11 +639,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -673,15 +657,15 @@ msgstr "DDNS 실행"
 msgid "State"
 msgstr "상태"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -689,7 +673,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr "DDNS 중지"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -697,19 +681,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "중지됨"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -717,7 +701,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -728,24 +718,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -754,35 +744,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "HTTPS 사용"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "cURL 사용"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "사용자명"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "특정 DNS 서버 사용이 지원되지 않습니다."
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -790,89 +780,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "경고"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -880,12 +865,12 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 
index 97784506aae4c5e7dbfc4cb678b279ef307ab66e..e8d9c0d2affe6d189a7cdcbb36ffa9dd219f0ea7 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: Weblate 5.8-rc\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "„../“ nėra leidžiamas kelias, dėl saugos priežasčių."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Pridėti naujas tarnybas..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Pažangūs nustatymai"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Leisti neviešus IP adresus"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Paprasti nustatymai"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Pririšti tinklą"
 
@@ -46,23 +46,15 @@ msgstr "Pririšti tinklą"
 msgid "Binding to a specific network not supported"
 msgstr "Pririšimas prie savitojo tinklo yra nepalaikomas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"„BusyBox nslookup“ ir „Wget“ nepalaiko, kad specifikuotu IP versiją, kurią "
-"naudosite komunikacijos ryšiui su „DDNS“ teikėju!"
-
-#: 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "„BusyBox nslookup“ ir „hostip“ nepalaiko, kad specifikuotu naudoti „TCP“ "
 "vietoj numatytojo „UDP“, kai prašoma „DNS“ serverio!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ msgstr ""
 "„BusyBox nslookup“, kuris yra randamas dabartinėj kompiliuotoj versijoj, "
 "netvarko duotus „DNS“ serverius tinkamai!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "„CA“ sertifikatų kelias"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,47 +74,42 @@ msgstr ""
 "„CA“ sertifikatų kelias bus naudojamas atsisiųsti tarnybos duomenis. "
 "Nustatyti į „IGNORUOTI“, norint praleisti sertifikatų patikrą."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Atšaukti"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Patikrinimo intervalas"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Patikrinti vienetą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Tikrinamas tarnybos palaikymas..."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27
 msgid "Configuration"
 msgstr "Konfigūravimas"
 
 #: 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:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Konfigūracijos klaida"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Katalogas/Vietovė laiko kiekvieno veikiančio skyriaus žurnalo failus."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr ""
 "Katalogas/Vietovė laiko kiekvieno veikiančio skyriaus – „PID“ ir kitų būklių/"
 "būsenų informaciją."
 
-#: 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:536
 msgid "Create service"
 msgstr "Sukurti tarnybą"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Dabartinis nustatymas:"
 
@@ -133,16 +120,16 @@ msgstr ""
 "Šiuo metu, „DDNS“ naujinimai yra nepaleidžiami įkrovos metu arba sąsajos/"
 "sietuvo įvykiuose."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Pasirinktinis naujinimo skriptas, naudojamas Jūsų „DDNS“ teikėjui atnaujinti."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Pasirinktinis atnaujinimo „URL“ – saitas"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Pasirinktinis atnaujinimo skriptas"
 
@@ -156,8 +143,8 @@ msgstr "„DDNS“ automatinis paleidimas išjungtas"
 msgid "DDNS Autostart enabled"
 msgstr "„DDNS“ automatinis paleidimas įjungtas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "„DDNS“ tarnybos teikėjas"
 
@@ -165,54 +152,40 @@ msgstr "„DDNS“ tarnybos teikėjas"
 msgid "DDns"
 msgstr "„DDns“"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "„DDns“ tarnyba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "„DNS“ prašymai per „TCP“ yra nepalaikomi"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "„DNS“ serveris"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Datos formatas"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 "Apibrėžia tinklalapį/svetainę, iš kurio reikia skaityti sistemos IP adresą."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Apibrėžia sąsają/sietuvą, iš kurios skaitomas sistemų IP adresas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Apibrėžia tinklą, iš kurio reikia skaityti sistemos IP adresą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Apibrėžia šaltinį, iš kurio reikia skaityti sistemos IP adresą, kuris bus "
-"siunčiamas – „DDNS“ teikėjui"
-
-#: 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:635
-msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
-msgstr ""
-"Apibrėžia, kuris IP adresas (IPv4/IPv6) yra siunčiamas – „DDNS“ teikėjui"
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17
 msgid "Disabled"
 msgstr "Išjungta/Neįgalinta (-s/-i)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domenas-Sritis"
 
@@ -226,85 +199,81 @@ msgstr "Dinaminis „DNS“"
 msgid "Dynamic DNS Version"
 msgstr "Dinaminio „DNS“ versija"
 
-#: 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:545
 msgid "Edit"
 msgstr "Redaguoti"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "Įjungti/Įgalinti saugią komunikacijos ryšį su „DDNS“ teikėju"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Įjungta/Įgalinta (-s/-i)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Klaida"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Maksimalus klaidos pa(si)kartojimo/bandymų iš naujo skaitiklis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Klaidos pakartojimo/bandymo iš naujo intervalas"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Įvykio tinklas"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "IPv4 pavyzdys"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "IPv6 pavyzdys"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Failas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Sekite instrukcijas, kurias Jūs rasite jų tinklalapyje/svetainėje."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Dėl palaikomų kodų, žiūrėkite čia:"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Priversti IP versiją"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "„Priversti IP versiją“ – yra nepalaikomas"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Priversti intervalą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Priversti „TCP“ ant „DNS“"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Priversti vienetą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formatas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formatas: IP arba „FQDN“"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -324,45 +293,45 @@ msgstr "Duoti prieigą prie „DDNS“ procedūrų"
 msgid "HTTPS not supported"
 msgstr "„HTTPS“ yra nepalaikomas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr ""
 "Įrenginio (t.y skleidėjo/vedėjo) pavadinimas/„FQDN“, kurį reikia "
 "patvirtinti, jei IP atnaujinimas įvyko arba buvo būtinas"
 
-#: 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:791
 msgid "IP address source"
 msgstr "IP adreso šaltinis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP adreso versija"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-Adresas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 "IPv6 adresas turi būti nurodytas laužtiniuose skliaustuose – „[“ ir „]“"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "IPv6 dabartiniu metu, nepalaikoma (pilnai) šioje sistemoje"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 yra nepalaikomas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-Adresas"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -370,28 +339,28 @@ msgstr ""
 "Jei „Wget“ ir „cURL“ paketai yra įdiegti, tada „Wget“ bus naudojamas "
 "komunikacijos ryšiui, pagal numatytuosius nustatymus."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 "Jei šios tarnybos skyrius yra išjungtas/neįgalintas, tada jo nebus galima "
 "paleisti."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 "Jei naudojate saugųjį komunikacijos ryšį, tada Jūs turėtumėte patvirtinti/"
 "patikrinti serverio sertifikatus!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 msgid ""
 "In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
 msgstr ""
 "Kai kuriose versijose – „cURL/libcurl“, randamos „OpenWrt“, yra "
 "kompiliuojama be įgalioto/-jo palaikymo."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Informacija"
 
@@ -399,12 +368,15 @@ msgstr "Informacija"
 msgid "Information"
 msgstr "Informacija"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Įterpkite naujinimo skriptą ARBA atnaujinimo „URL“ – saitą"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Turėtumėte įdi̇́egti – „bind-host“ arba „knot-host“, arba „drill“ paketą, "
+"„DNS“ užklausoms."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -412,201 +384,205 @@ msgstr ""
 "Įdi̇́egti „ca-certificates“ paketą arba reikiamus sertifikatus ranka į "
 "numatytąjį/-ą katalogą/vietovę – „/etc/ssl/certs“"
 
-#: 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:662
 msgid "Install Service"
 msgstr "Įdiegti tarnybą"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Sąsaja ir/arba Sietuvas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Intervalas, per kurį priverstinai siųsti naujinimus „DDNS“ teikėjui"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Intervalo vienetas, skirtas priverstiniams naujinimams siųsti – „DDNS“ "
 "teikėjui."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "Intervalo vienetas, norint patikrinti dėl pakeisto IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Paskutinis atnaujinimas"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Žurnalo failo žiūrovas/-ė"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Žurnalo katalogas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Žurnalo ilgis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Žurnalinti į failą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Žurnalinti į „syslog“"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "„Lookup“ įrenginio (t.y skleidėjo/vedėjo) pavadinimas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Vardas/Pavadinimas"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Nei „GNU Wget“ su „SSL“, nei „cURL“ yra įdiegti̇̀, kad būtų pasirenkamas "
 "tinklas ryšio komunikacijai."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Nei GNU „Wget“ su „SSL“, nei „cURL“ yra įdiegti̇̀, kad būtų palaikomi saugūs "
 "naujinimai per „HTTPS“ protokolą."
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Nei iš „LuCI“ sąsajos/sietuvo, nei iš konsolės."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
 msgid "Network"
 msgstr "Tinklas"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "Tinklas, kuriame „ddns-updater“ skriptai bus vykdomi"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Niekada"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nauja „DDns“ tarnyba…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Kitas atnaujinimas"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Nėra duomenų"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Jokių sertifikatų nerasta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Jokio žurnalinimo"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Nevieši ir pagal numatytuosius nustatymus užblokuoti IP (dgs.)"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Neveikia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Pranešimas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "Paskutinių eilučių, saugomų žurnalo failuose, skaičius"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 "PASIRENKAMA: Priverstinai naudoti tik „grynus“ IPv4/IPv6 komunikacijos "
 "ryšius."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
 msgstr ""
 "PASIRENKAMA: Priverstinai naudoti „TCP“ vietoj numatytojo „UDP“, „DNS“ "
 "užklausoms."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "PASIRENKAMA: Tinklas, naudojamas ryšio komunikacijai"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "PASIRENKAMA: Įgaliotinis/-as serveris, aptikimui/-ams ir naujinimams."
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "PASIRENKAMA: Naudoti nenumatytąjį „DNS“ serverį, kad aptiktumėte – "
 "„Registruotą IP“."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr "Įvykus klaidai, skriptas nustos vykdyti po nurodyto skaičiaus bandymų."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Pasirinktinis užkoduotas parametras"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Pasirinktinis parametras"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 "Pasirenkama: Pakeičia „[PARAMENC]“, kuris yra randamas atnaujinimo „URL“ – "
 "saite („URL“ – saito užkoduotas)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 "Pasirenkama: Pakeičia „[PARAMOPT]“, kuris yra randamas atnaujinimo „URL“ – "
 "saite (NE „URL“ – saito užkoduotas)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "ĮGALIOTAS-Serveris"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Slaptažodis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Kelias į „CA-Sertifikatas“"
 
@@ -617,44 +593,49 @@ msgstr ""
 "Prašome sekti instrukcijas telkiantis į „OpenWrt“ puslapį apie IPv6 "
 "palaikymo įgalinimą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071
 msgid "Please press [Read] button"
 msgstr "Prašome paspausti [Skaityta] mygtuką"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Įterpkite naujinimo skriptą ARBA atnaujinimo „URL“ – saitą"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Skaityti / Iš naujo perskaityti žurnalo failą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Ar tikrai pakeisti tarnybą?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "Registruotas IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Perleidimas/-sti"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Perleisti šią tarnybą"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr ""
 "Pakeičia – „[DOMAIN]“, kuris yra randamas „URL“ – saite („URL“ – saito "
 "užkoduotas)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 "Pakeičia „[PASSWORD]“, kuris yra randamas „URL“ – saite („URL“ – saito "
 "užkoduotas)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 "Pakeičia „[USERNAME]“, kuris yra randamas „URL“ – saite („URL“ – saito "
@@ -664,7 +645,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr "Paleisti iš naujo „DDns“"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Pakartojimo/Bandymo iš naujo vienetas/-ai"
 
@@ -673,36 +654,36 @@ msgid "Run once"
 msgstr "Paleisti tik kartą"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Veikia"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Skriptas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Pasirinkti tarnybą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Tarnyba nepalaiko šio IP tipo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Tarnyba yra neįdiegta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Tarnybos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Tarnybų „URL“ – saito atsisiuntimas"
 
@@ -710,13 +691,13 @@ msgstr "Tarnybų „URL“ – saito atsisiuntimas"
 msgid "Services list last update"
 msgstr "Paskutinis tarnybų sąrašo atnaujinimas"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr ""
 "Nustačius šį parametrą į – 0-į, skriptas bus priverstinai paleistas tik "
 "vieną kartą"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -732,15 +713,15 @@ msgstr "Paleisti „DDNS“"
 msgid "State"
 msgstr "Būklė"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103
 msgid "Status"
 msgstr "Būklė/Būsena"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Būklės/Būsenos katalogas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stop"
 
@@ -748,7 +729,7 @@ msgstr "Stop"
 msgid "Stop DDNS"
 msgstr "Stabdyti „DDNS“"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Stabdyti šią tarnybą"
 
@@ -756,23 +737,23 @@ msgstr "Stabdyti šią tarnybą"
 msgid "Stopped"
 msgstr "Sustabdytas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Pakeisti tarnybą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 "Numatytasis nustatymas yra – „0-is“, kuris be galo bandys pa(si)kartoti/"
 "bandyti iš naujo."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 "Intervalas, tarp kurio prasideda kiekvienas nuoseklus pa(si)kartojimas/"
 "bandymas iš naujo."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Tarnybos pavadinimas jau yra naudojamas"
 
@@ -780,7 +761,13 @@ msgstr "Tarnybos pavadinimas jau yra naudojamas"
 msgid "There is no service configured."
 msgstr "Nėra jokios tarnybos sukonfigūruotos."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Tai yra dabartinis šios tarnybos žurnalo failo turinys, randamas – %h."
 
@@ -793,26 +780,26 @@ msgstr ""
 "Tai yra numatytasis nustatymas, jei Jūs vykdote „DDNS“ skriptus patys (t.y. "
 "per „cron“, su „force_interval“ nustatytu į – „0-į“)"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 "Šis bus automatiškai nustatytą/-as į parinktą/pasirinktą sąsają ir/arba "
 "sietuvą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Laikmačio nustatymai"
 
-#: 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:796
 msgid "URL"
 msgstr "„URL“ – Saitas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "„URL“ – Saitą, kurį aptikti"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Nežinoma/-s/-i"
@@ -821,39 +808,39 @@ msgstr "Nežinoma/-s/-i"
 msgid "Update DDns Services List"
 msgstr "Atnaujinti „DDns“ tarnybų sąrašą"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 "Atnaujinti „URL“ – saitą, kuris bus naudojamas atnaujinimams; Jūsų „DDNS“ "
 "teikėjui."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Naudoti „saugų HTTP“"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Naudoti „cURL“"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 "Naudotojo/Vartotojo nustatytas skriptas, skirtas skaityti sistemų IP adresus"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Naudotojo/Vartotojo vardas (t.y. Slapyvardis)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Naudojant savitą „DNS“ serverį yra nepalaikoma"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 "Reikšmės, mažesnės nei 5-ios minutės == 300-ai sekundžių, yra nepalaikomos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Reikšmės, mažesnės nei „Patikrinimo intervalas“, išskyrus – „0-is“, yra "
@@ -863,23 +850,29 @@ msgstr ""
 msgid "Verify"
 msgstr "Patvirtinti/Patikrinti"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Įspėjimas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+"Apibrėžia, kuris IP adresas (IPv4/IPv6) yra siunčiamas – „DDNS“ teikėjui"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 "Kokius laiko vienetus naudoti, pa(si)kartojimo/bandymo iš naujo skaitikliui."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 msgid ""
 "Writes detailed messages to log file. File will be truncated automatically."
 msgstr ""
 "Rašo išsamius pranešimus į žurnalo failą. Failas bus automatiškai "
 "patrumpintas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -887,7 +880,7 @@ msgstr ""
 "Rašo žurnalo pranešimus į – „syslog“. Kritinės klaidos visada bus rašomos į "
 "– „syslog“."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -896,19 +889,6 @@ msgstr ""
 "„hostip“ paketą, jei Jums reikia nurodyti „DNS“ serverį, kad aptiktų Jūsų "
 "registruotą IP."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Turėtumėte įdi̇́egti – „bind-host“ arba „knot-host“, arba „drill“ paketą, "
-"„DNS“ užklausoms."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-"Jūs turėtumėte įdiegti „wget“ arba „curl“, arba net „uclient-fetch“ paketą."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -917,52 +897,52 @@ msgstr ""
 "Jūs turėtumėte įdiegti „wget“ arba „curl“, arba net „uclient-fetch“ su "
 "„libustream-*ssl“ paketą/-us."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "Jūs turėtumėte įdiegti „wget“ arba „curl“ paketą."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 msgid ""
 "You should install 'wget' or 'uclient-fetch' package or replace libcurl."
 msgstr ""
 "Jūs turėtumėte įdiegti „wget“ arba „uclient-fetch“ paketą, galite ir "
 "pakeisti „libcurl“."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 "„cURL“ yra įdiegtas, bet „libcurl“ buvo kompiliuotas be įgaliotinio "
 "palaikymo."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "„cURL“ be įgaliotojo palaikymo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "pasirinktinis"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dienos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "katalogas arba vietovės kelias/failas"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "valandos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "minutės"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "arba"
 
@@ -972,13 +952,38 @@ msgstr ""
 "arba atnaujinkite savo sistemą į naujausią/paskausią „OpenWrt“ leidinį/"
 "versiją"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "sekundės"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "kad paleistumėte „HTTPS“ nepatikrintus/nepatvirtintus serverio sertifikatus "
 "(nesaugu)"
+
+#~ msgid "Checking the service support..."
+#~ msgstr "Tikrinamas tarnybos palaikymas..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Apibrėžia šaltinį, iš kurio reikia skaityti sistemos IP adresą, kuris bus "
+#~ "siunčiamas – „DDNS“ teikėjui"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "„BusyBox nslookup“ ir „Wget“ nepalaiko, kad specifikuotu IP versiją, "
+#~ "kurią naudosite komunikacijos ryšiui su „DDNS“ teikėju!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "„Priversti IP versiją“ – yra nepalaikomas"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "Jūs turėtumėte įdiegti „wget“ arba „curl“, arba net „uclient-fetch“ "
+#~ "paketą."
index 2f5fc4627dc8ed457ef934dffc33d2bf804c0a6b..76f3e4c0fe1c71b5c3f4ed05c806208c22576904 100644 (file)
@@ -10,32 +10,32 @@ 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:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "प्रगत सेटिंग्ज"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,73 +43,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "रद्द करा"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "अक्षम"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "सक्षम केले"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -366,196 +340,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "इंटरफेस"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "नाव"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "संकेतशब्द"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "रीलोड करा"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "सेवा"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr "स्थिती"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "थांबा"
 
@@ -685,7 +669,7 @@ msgstr "थांबा"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "बंद"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "अज्ञात"
@@ -750,35 +740,35 @@ msgstr "अज्ञात"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "वापरकर्तानाव"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index e792b26035466e44efb598068928084d82da947d..09ee292220d55aaca3767942d6564ae553c1be5b 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Tetapan Lanjutan"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -43,73 +43,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr ""
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -118,15 +107,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -140,8 +129,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -149,50 +138,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -206,85 +184,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Dibolehkan"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -302,63 +276,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -366,196 +340,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Antara muka"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -564,40 +543,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -605,7 +589,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -614,36 +598,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Perkhidmatan"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -651,11 +635,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -669,15 +653,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -685,7 +669,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -693,19 +677,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -713,7 +697,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -724,24 +714,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -750,35 +740,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -786,89 +776,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "minit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -876,11 +861,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index d84b7a9982b572019435f0c4938f5ddd85436b1d..4097e2d8489471c7f076b259f4108c6a5ebca913 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Legg til nye tjenester …"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Avanserte innstillinger"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -46,73 +46,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Avbryt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr ""
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create service"
 msgstr "Opprett tjeneste"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Nåværende innstilling:"
 
@@ -121,15 +110,15 @@ msgstr "Nåværende innstilling:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr "Egendefinert oppdaterings-URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -143,8 +132,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -152,50 +141,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Avskrudd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domene"
 
@@ -209,85 +187,81 @@ msgstr "Dynamisk DNS"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Rediger"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Påskrudd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Feil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Fil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -305,63 +279,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-adresse"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 støttes ikke"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-adresse"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -369,196 +343,201 @@ msgstr "Info"
 msgid "Information"
 msgstr "Info"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Grensesnitt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Utfør oppslag av vertsnavn"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Navn"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Aldri"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Ingen data"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Ingen loggføring"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Kjører ikke"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Passord"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -567,40 +546,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Last inn igjen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -608,7 +592,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -617,36 +601,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Kjører"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Tjenester"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -654,11 +638,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -672,15 +656,15 @@ msgstr ""
 msgid "State"
 msgstr "Tilstand"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stopp"
 
@@ -688,7 +672,7 @@ msgstr "Stopp"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -696,19 +680,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "Stoppet"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -716,7 +700,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -727,24 +717,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Ukjent"
@@ -753,35 +743,35 @@ msgstr "Ukjent"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Brukernavn"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -789,89 +779,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Advarsel"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "timer"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -879,12 +864,12 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 
index 964deedfcc1b9ec4fba7ab72adf260dec3ba7946..787081ed6c417194db44ba6b03beee2caf4d48d3 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.18-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" is om veiligheidsredenen niet toegestaan in het pad."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Nieuwe diensten toevoegen..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Geavanceerde instellingen"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Niet-openbare IP's toestaan"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Basisinstellingen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Bind netwerk"
 
@@ -43,25 +43,16 @@ msgstr "Bind netwerk"
 msgid "Binding to a specific network not supported"
 msgstr "Binding aan een specifiek netwerk wordt niet ondersteund"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"De nslookup en Wget van BusyBox bieden geen ondersteuning voor het "
-"specificeren van de IP-versie die moet worden gebruikt voor communicatie met "
-"de DDNS-provider!"
-
-#: 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "De nslookup en hostip van BusyBox ondersteunen niet om te specificeren om "
 "TCP te gebruiken in plaats van standaard UDP bij het aanvragen van een DNS-"
 "server!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -69,11 +60,11 @@ msgstr ""
 "De nslookup van BusyBox in de huidige gecompileerde versie kan bepaalde DNS-"
 "servers niet correct verwerken!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Ca Certs pad"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -81,46 +72,41 @@ msgstr ""
 "Ca Certs-pad dat wordt gebruikt om servicegegevens te downloaden. Stel "
 "NEGEREN in om certificaatvalidatie over te slaan."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Annuleren"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Interval controleren"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Controleer eenheid"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "De serviceondersteuning controleren..."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27
 msgid "Configuration"
 msgstr "Configuratie"
 
 #: 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:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Configuratiefout"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Directory bevat logboekbestanden voor elke actieve sectie."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr ""
 "Directory bevat PID en andere statusinformatie voor elke actieve sectie."
 
-#: 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:536
 msgid "Create service"
 msgstr "Service maken"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Huidige instelling:"
 
@@ -131,16 +117,16 @@ msgstr ""
 "Momenteel worden DDNS-updates niet gestart bij het opstarten of bij "
 "interfacegebeurtenissen."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Aangepast updatescript om te gebruiken voor het updaten van uw DDNS-provider."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Aangepaste update-URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Aangepast update-script"
 
@@ -154,8 +140,8 @@ msgstr "DDNS Autostart uitgeschakeld"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS Autostart ingeschakeld"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS-serviceprovider"
 
@@ -163,59 +149,45 @@ msgstr "DDNS-serviceprovider"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDns-service"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "DNS-verzoeken via TCP worden niet ondersteund"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS-server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Datum formaat"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 "Definieert de webpagina waarvan het IP-adres van het systeem moet worden "
 "gelezen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 "Definieert de interface waaruit het IP-adres van het systeem moet worden "
 "gelezen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 "Definieert het netwerk waaruit het IP-adres van het systeem moet worden "
 "gelezen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Definieert de bron waaruit het IP-adres van het systeem moet worden gelezen, "
-"dat naar de DDNS-provider wordt verzonden"
-
-#: 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:635
-msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
-msgstr ""
-"Definieert welk IP-adres 'IPv4/IPv6' wordt verzonden naar de DDNS-provider"
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17
 msgid "Disabled"
 msgstr "Uitgeschakeld"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domein"
 
@@ -229,85 +201,81 @@ msgstr "Dynamische DNS"
 msgid "Dynamic DNS Version"
 msgstr "Dynamische DNS-versie"
 
-#: 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:545
 msgid "Edit"
 msgstr "Bewerk"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "Beveiligde communicatie met DDNS-provider inschakelen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Ingeschakeld"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Fout"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Fout opnieuw proberen interval"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Evenementennetwerk"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Voorbeeld voor IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Voorbeeld voor IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Bestand"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Volg de instructies die u op hun WEB-pagina vindt."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Kijk hier voor ondersteunde codes"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forceer IP-versie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Forceer IP-versie niet ondersteund"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Forceer interval"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forceer TCP op DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Kracht eenheid"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formaat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formaat: IP of FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -327,42 +295,42 @@ msgstr "Toegang verlenen tot ddns-procedures"
 msgid "HTTPS not supported"
 msgstr "HTTPS wordt niet ondersteund"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "Hostnaam/FQDN om te valideren, als IP-update plaatsvindt of nodig is"
 
-#: 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:791
 msgid "IP address source"
 msgstr "IP-adres bron"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP-adres versie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-adres"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "Het IPv6-adres moet tussen vierkante haken worden vermeld"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "IPv6 wordt momenteel niet (volledig) ondersteund door dit systeem"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 wordt niet ondersteund"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-adres"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -370,26 +338,26 @@ msgstr ""
 "Als Wget en cURL-pakket zijn geïnstalleerd, wordt Wget standaard gebruikt "
 "voor communicatie."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "Als dit servicegedeelte is uitgeschakeld, kan het niet worden gestart."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 "Als u beveiligde communicatie gebruikt, moet u de servercertificaten "
 "verifiëren!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 msgid ""
 "In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
 msgstr ""
 "In sommige versies wordt cURL/libcurl in OpenWrt gecompileerd zonder proxy-"
 "ondersteuning."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -397,12 +365,15 @@ msgstr "Info"
 msgid "Information"
 msgstr "Informatie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Voeg een updatescript OF een update-URL in"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"U moet het pakket 'bind-host' of 'knot-host' of 'drill' installeren voor DNS-"
+"verzoeken."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -410,194 +381,198 @@ msgstr ""
 "Installeer het 'ca-certificates'-pakket of benodigde certificaten handmatig "
 "in de standaardmap /etc/ssl/certs"
 
-#: 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:662
 msgid "Install Service"
 msgstr "Service installeren"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interface"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Interval om geforceerde updates naar DDNS Provider te sturen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "Intervaleenheid om updates naar de DDNS-provider te forceren."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "Intervaleenheid om te controleren op gewijzigd IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Laatste update"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Logbestandviewer"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Logbestand"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Lengte van het logboek"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Log naar bestand"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Log naar syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Hostnaam opzoeken"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Naam"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Noch GNU Wget met SSL noch cURL geïnstalleerd om een netwerk te selecteren "
 "om te gebruiken voor communicatie."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Noch GNU Wget met SSL, noch cURL geïnstalleerd om veilige updates via HTTPS-"
 "protocol te ondersteunen."
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Noch van de LuCI-interface, noch van de console."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
 msgid "Network"
 msgstr "Netwerk"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "Netwerk waarop de ddns-updater-scripts worden gestart"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Nooit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nieuwe DDns-service…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Volgende update"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Geen gegevens"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Geen certificaten gevonden"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Geen logboekregistratie"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Niet-openbare en standaard geblokkeerde IP's"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Loopt niet"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Kennisgeving"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "Aantal laatste regels opgeslagen in logbestanden"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr "OPTIONEEL: Forceer het gebruik van pure IPv4/IPv6-communicatie."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
 msgstr ""
 "OPTIONEEL: Forceer het gebruik van TCP in plaats van standaard UDP op DNS-"
 "aanvragen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "OPTIONEEL: Netwerk te gebruiken voor communicatie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "OPTIONEEL: Proxy-Server voor detectie en updates."
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "OPTIONEEL: Gebruik niet-standaard DNS-server om 'Geregistreerd IP' te "
 "detecteren."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Bij een fout stopt het script de uitvoering na het opgegeven aantal pogingen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Optionele gecodeerde parameter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Optionele parameter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr "Optioneel: Vervangt [PARAMENC] in Update-URL (URL-gecodeerd)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr "Optioneel: Vervangt [PARAMOPT] in Update-URL (NIET URL-gecodeerd)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "PROXY-Server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Wachtwoord"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Pad naar CA-certificaat"
 
@@ -608,40 +583,45 @@ msgstr ""
 "Volg de instructies op de startpagina van OpenWrt om IPv6-ondersteuning in "
 "te schakelen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071
 msgid "Please press [Read] button"
 msgstr "Druk op de knop [Lezen]."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Voeg een updatescript OF een update-URL in"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Logbestand lezen/herlezen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Echt switch service?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "Geregistreerd IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Herladen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Laad deze service opnieuw"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Vervangt [DOMAIN] in Update-URL (URL-gecodeerd)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Vervangt [PASSWORD] in Update-URL (URL-gecodeerd)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Vervangt [USERNAME] in Update-URL (URL-gecodeerd)"
 
@@ -649,7 +629,7 @@ msgstr "Vervangt [USERNAME] in Update-URL (URL-gecodeerd)"
 msgid "Restart DDns"
 msgstr "DDns opnieuw starten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Eenheid opnieuw proberen"
 
@@ -658,36 +638,36 @@ msgid "Run once"
 msgstr "Eén keer uitvoeren"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Lopend"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Script"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Selecteer een service"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Service ondersteunt dit IP-type niet"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Service niet geïnstalleerd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Diensten"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Services-URL downloaden"
 
@@ -695,13 +675,13 @@ msgstr "Services-URL downloaden"
 msgid "Services list last update"
 msgstr "Services lijst laatste update"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr ""
 "Als u deze parameter instelt op 0, wordt het script gedwongen om slechts één "
 "keer te worden uitgevoerd"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -717,15 +697,15 @@ msgstr "DDNS starten"
 msgid "State"
 msgstr "Staat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Statusmap"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stop"
 
@@ -733,7 +713,7 @@ msgstr "Stop"
 msgid "Stop DDNS"
 msgstr "Stop DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Stop deze service"
 
@@ -741,19 +721,19 @@ msgstr "Stop deze service"
 msgid "Stopped"
 msgstr "Gestopt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Switch service"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "De standaardinstelling van '0' zal oneindig opnieuw proberen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Het interval tussen elke succesvolle nieuwe poging."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "De servicenaam wordt al gebruikt"
 
@@ -761,7 +741,13 @@ msgstr "De servicenaam wordt al gebruikt"
 msgid "There is no service configured."
 msgstr "Er is geen service geconfigureerd."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Dit is de huidige inhoud van het logbestand in %h voor deze service."
 
@@ -774,24 +760,24 @@ msgstr ""
 "Dit is de standaard als u DDNS-scripts zelf uitvoert (d.w.z. via cron met "
 "force_interval ingesteld op '0')"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "Dit wordt automatisch ingesteld op de geselecteerde interface"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Timer-instellingen"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL om te detecteren"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Onbekend"
@@ -800,38 +786,38 @@ msgstr "Onbekend"
 msgid "Update DDns Services List"
 msgstr "Update de lijst met DDns-services"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 "Update-URL die moet worden gebruikt voor het updaten van uw DDNS-provider."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Gebruik HTTP-beveiligd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Gebruik cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 "Door de gebruiker gedefinieerd script om het IP-adres van het systeem te "
 "lezen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Gebruikersnaam"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Het gebruik van een specifieke DNS-server wordt niet ondersteund"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr "Waarden onder 5 minuten == 300 seconden worden niet ondersteund"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Lagere waarden dan 'Check Interval' behalve '0' worden niet ondersteund"
@@ -840,23 +826,29 @@ msgstr ""
 msgid "Verify"
 msgstr "Verifiëren"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Waarschuwing"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+"Definieert welk IP-adres 'IPv4/IPv6' wordt verzonden naar de DDNS-provider"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 "Welke tijdseenheden moeten worden gebruikt voor tellers voor nieuwe pogingen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 msgid ""
 "Writes detailed messages to log file. File will be truncated automatically."
 msgstr ""
 "Schrijft gedetailleerde berichten naar logbestand. Bestand wordt automatisch "
 "afgekapt."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -864,7 +856,7 @@ msgstr ""
 "Schrijft logboekberichten naar syslog. Kritieke fouten worden altijd naar "
 "syslog geschreven."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -873,18 +865,6 @@ msgstr ""
 "installeren, als u een DNS-server moet opgeven om uw geregistreerde IP te "
 "detecteren."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"U moet het pakket 'bind-host' of 'knot-host' of 'drill' installeren voor DNS-"
-"verzoeken."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr "U moet het pakket 'wget' of 'curl' of 'uclient-fetch' installeren."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -893,51 +873,51 @@ msgstr ""
 "U moet 'wget' of 'curl' of 'uclient-fetch' installeren met het pakket "
 "'libustream-*ssl'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "U moet het 'wget'- of 'curl'-pakket installeren."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 msgid ""
 "You should install 'wget' or 'uclient-fetch' package or replace libcurl."
 msgstr ""
 "U moet het pakket 'wget' of 'uclient-fetch' installeren of libcurl vervangen."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 "cURL is geïnstalleerd, maar libcurl is gecompileerd zonder proxy-"
 "ondersteuning."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL zonder proxy-ondersteuning"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "aangepast"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dagen"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "map of pad/bestand"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "uren"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "of"
 
@@ -945,15 +925,39 @@ msgstr "of"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "of werk uw systeem bij naar de nieuwste OpenWrt-release"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "seconden"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "om HTTPS uit te voeren zonder verificatie van servercertificaten (onveilig)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "De serviceondersteuning controleren..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Definieert de bron waaruit het IP-adres van het systeem moet worden "
+#~ "gelezen, dat naar de DDNS-provider wordt verzonden"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "De nslookup en Wget van BusyBox bieden geen ondersteuning voor het "
+#~ "specificeren van de IP-versie die moet worden gebruikt voor communicatie "
+#~ "met de DDNS-provider!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Forceer IP-versie niet ondersteund"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "U moet het pakket 'wget' of 'curl' of 'uclient-fetch' installeren."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Fout, opnieuw proberen teller"
index 52375e8f028ca17729381a073e9986ddc84fe0c9..c775dee5f512e4b6b4ed00d8e406487ddf505f66 100644 (file)
@@ -14,32 +14,32 @@ msgstr ""
 "|| n%100>=20) ? 1 : 2);\n"
 "X-Generator: Weblate 5.8-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "Znany także jako TOKEN, np. na afraid.org"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Dodaj nowe usługi..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Ustawienia zaawansowane"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Zezwalaj na niepubliczne IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Ustawienia podstawowe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Powiąż sieć"
 
@@ -47,23 +47,15 @@ msgstr "Powiąż sieć"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "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:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -71,11 +63,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Ścieżka certyfikatów CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -83,46 +75,41 @@ msgstr ""
 "Ścieżka certyfikatów CA do pobierania danych usług. Ustaw IGNORE, aby "
 "pominąć weryfikację certyfikatu."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Anuluj"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Interwał sprawdzania"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Jednostka sprawdzania"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Sprawdzanie obsługi usługi..."
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Błąd konfiguracji"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Utwórz usługę"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Ustawienie bieżące:"
 
@@ -133,15 +120,15 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr "Własny skrypt do aktualizacji twojego dostawcy DDNS."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Własny adres URL aktualizacji"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Własny skrypt aktualizacji"
 
@@ -155,8 +142,8 @@ msgstr "Autostart DDNS wyłączony"
 msgid "DDNS Autostart enabled"
 msgstr "Autostart DDNS włączony"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Dostawca usług DDNS"
 
@@ -164,53 +151,40 @@ msgstr "Dostawca usług DDNS"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Usługa DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "Żądania DNS przez TCP nie są obsługiwane"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Serwer DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Format daty"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 "Określa witrynę internetową, z której odczytywany jest systemowy adres IP."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Określa interfejs, z którego odczytywany jest systemowy adres IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Określa sieć, z której odczytywany jest systemowy adres IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Określa źródło, z którego odczytywany jest systemowy adres IP, który "
-"zostanie wysłany do dostawcy DDNS"
-
-#: 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:635
-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:17
 msgid "Disabled"
 msgstr "Wyłączone"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domena"
 
@@ -224,85 +198,81 @@ msgstr "Dynamiczny DNS"
 msgid "Dynamic DNS Version"
 msgstr "Wersja 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:545
 msgid "Edit"
 msgstr "Edytuj"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Włączone"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Błąd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Licznik maksimum błędów powtórzeń"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Interwał błędów powtórzeń"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Zdarzenia sieciowe"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Przykład dla IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Przykład dla IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Plik"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Postępuj zgodnie z instrukcjami, które znajdziesz na ich stronie www."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Wymuś wersję IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Wymuszenie wersji IP jest nieobsługiwane"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Interwał wymuszania"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Wymuś TCP w DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Jednostka wymuszania"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Format"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Format: IP lub FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -321,42 +291,42 @@ msgstr "Udziel dostępu do procedur DDNS"
 msgid "HTTPS not supported"
 msgstr "Protokół HTTPS nie jest obsługiwany"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "Nazwa hosta/FQDN do sprawdzenia, czy aktualizacja IP jest konieczna"
 
-#: 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:791
 msgid "IP address source"
 msgstr "Źródło adresu IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Wersja adresu IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Adres IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "IPv6 nie jest obsługiwany"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Adres IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -364,26 +334,26 @@ msgstr ""
 "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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "Jeśli ta sekcja jest wyłączona, usługa nie uruchomi się."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 "Jeśli korzystasz z bezpiecznej komunikacji, należy zweryfikować certyfikaty "
 "serwera!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 msgid ""
 "In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
 msgstr ""
 "W niektórych wersjach cURL/libcurl w OpenWrt jest kompilowany bez obsługi "
 "proxy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Informacyjne"
 
@@ -391,12 +361,15 @@ msgstr "Informacyjne"
 msgid "Information"
 msgstr "Informacje"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Wstaw skrypt aktualizacji LUB URL aktualizacji"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Należy zainstalować pakiet „bind-host” lub „knot-host”, lub „drill”, dla "
+"żądań DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -404,194 +377,198 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Zainstaluj usługę"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interfejs"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Częstotliwość wymuszania wysyłania aktualizacji do dostawcy DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Jednostka interwału wymuszonego przesyłania aktualizacji do dostawcy DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Ostatnia aktualizacja"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Przeglądarka plików dziennika"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Katalog dzienników"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Długość dziennika"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Rejestrowanie do pliku"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Rejestrowanie do dziennika systemowego"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nazwa"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Ani GNU Wget z SSL, ani cURL nie są zainstalowane, aby wybrać sieć, która "
 "będzie używana do komunikacji."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Nigdy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Nowa usługa DDNS…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Nie znaleziono certyfikatów"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Brak rejestrowania"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Niepubliczne i domyślnie zablokowane IP"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Nie działa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Spostrzeżenie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "W przypadku błędu skrypt zatrzyma wykonywanie po określonej liczbie "
 "ponownych prób."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Opcjonalny zakodowany parametr"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Opcjonalny parametr"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr "Opcjonalnie: Zastępuje [PARAMENC] w Update-URL (niezakodowany URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Serwer PROXY"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Hasło"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Ścieżka do certyfikatu CA"
 
@@ -602,40 +579,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Wstaw skrypt aktualizacji LUB URL aktualizacji"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Wczytaj / Ponownie wczytaj plik dziennika"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Naprawdę zmienić usługę?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "Zarejestrowany IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Przeładuj"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Przeładuj usługę"
 
-#: 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:733
 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:754
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Zastąp [USERNAME] w Update-URL (zakodowany URL)"
 
@@ -643,7 +625,7 @@ msgstr "Zastąp [USERNAME] w Update-URL (zakodowany URL)"
 msgid "Restart DDns"
 msgstr "Restartuj DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Jednostka powtarzania"
 
@@ -652,36 +634,36 @@ msgid "Run once"
 msgstr "Uruchom raz"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Skrypt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Wybierz usługę"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Usługa nie obsługuje tego typu adresów IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Usługa nie została zainstalowana"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Usługi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Adres URL pobierania usług"
 
@@ -689,11 +671,11 @@ msgstr "Adres URL pobierania usług"
 msgid "Services list last update"
 msgstr "Ostatnia aktualizacja listy usług"
 
-#: 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -709,15 +691,15 @@ msgstr "Uruchom DDNS"
 msgid "State"
 msgstr "Województwo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Status katalogu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Zatrzymaj"
 
@@ -725,7 +707,7 @@ msgstr "Zatrzymaj"
 msgid "Stop DDNS"
 msgstr "Zatrzymaj DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Zatrzymaj tę usługę"
 
@@ -733,19 +715,19 @@ msgstr "Zatrzymaj tę usługę"
 msgid "Stopped"
 msgstr "Zatrzymane"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Przełącz usługę"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 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:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Interwał pomiędzy próbami."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Nazwa usługi jest już używana"
 
@@ -753,7 +735,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Jest to bieżąca zawartość pliku dziennika w %h dla tej usługi."
 
@@ -766,24 +754,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Ustawienia zegara"
 
-#: 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:796
 msgid "URL"
 msgstr "Adres URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL do wykrycia"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Nieznany"
@@ -792,35 +780,35 @@ msgstr "Nieznany"
 msgid "Update DDns Services List"
 msgstr "Zaktualizuj listę usług DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "Adres URL do aktualizacji dostawcy DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Użyj bezpiecznego HTTP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Użyj cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "Skrypt zdefiniowany przez użytkownika do odczytu adresu IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nazwa użytkownika"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "Wartości niższe niż „Interwał sprawdzania” oprócz „0” są nieprawidłowe"
 
@@ -828,24 +816,29 @@ msgstr "Wartości niższe niż „Interwał sprawdzania” oprócz „0” są n
 msgid "Verify"
 msgstr "Zweryfikuj"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Ostrzeżenie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+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:1044
 msgid "Which time units to use for retry counters."
 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:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -853,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -862,18 +855,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Należy zainstalować pakiet „bind-host” lub „knot-host”, lub „drill”, dla "
-"żądań DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr "Należy zainstalować pakiet „wget” lub „curl”, lub „uclient-fetch”."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -882,50 +863,50 @@ msgstr ""
 "Należy zainstalować pakiet „wget” lub „curl”, lub „uclient-fetch”, z "
 "pakietem „libustream-*ssl”."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "Należy zainstalować pakiet „wget” lub „curl”."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 msgid ""
 "You should install 'wget' or 'uclient-fetch' package or replace libcurl."
 msgstr ""
 "Należy zainstalować pakiet „wget” lub „uclient-fetch”, lub zastąpić libcurl."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL bez obsługi proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "własny"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dni"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "katalog lub ścieżka/plik"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "godzin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "lub"
 
@@ -933,16 +914,39 @@ msgstr "lub"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "do uruchomienia HTTPS bez weryfikacji certyfikatów serwera (niezabezpieczone)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Sprawdzanie obsługi usługi..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Określa źródło, z którego odczytywany jest systemowy adres IP, który "
+#~ "zostanie wysłany do dostawcy DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "nslookup i Wget BusyBox nie obsługują określenia wersji IP, która ma być "
+#~ "używana do komunikacji z dostawcą DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Wymuszenie wersji IP jest nieobsługiwane"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Należy zainstalować pakiet „wget” lub „curl”, lub „uclient-fetch”."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Licznik błędów powtórzeń"
 
@@ -980,7 +984,7 @@ msgstr ""
 #~ "Ani z interfejsu LuCI, ani z konsoli"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the 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 /> "
@@ -1006,7 +1010,7 @@ msgstr ""
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "BusyBox nslookup i Wget nie obsługują określania"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr ""
 #~ "Nslookup, hostip i BusyBox nie obsługują określania używanego przez TCP"
 
index d11a225d22a52da76ebf32d89b13ef63a10aa0cc..7ac596530ad3adb106bced10fa8fa8e4c8e0d22f 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.8-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "Conhecido como o TOKEN, por exemplo, no fear.org"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Adicionar novos serviços...."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Configurações avançadas"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Permitir IP's não-públicos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Definições Básicas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Ligar Rede"
 
@@ -46,23 +46,15 @@ msgstr "Ligar Rede"
 msgid "Binding to a specific network not supported"
 msgstr "Ligar a uma rede específica não suportada"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Caminho de Certs de Ac"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,47 +74,42 @@ 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Intervalo de verificação"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Unidade de verificação"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Erro de configuração"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Criar serviço"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Definição atual:"
 
@@ -133,17 +120,17 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "URL para atualização personalizada"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script de atualização personalizado"
 
@@ -157,8 +144,8 @@ msgstr "Inicialização automática do DDNS desativada"
 msgid "DDNS Autostart enabled"
 msgstr "Inicialização automática do DDNS ativada"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Provedor de serviços DDNS"
 
@@ -166,52 +153,39 @@ msgstr "Provedor de serviços DDNS"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Serviço DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "Servidor DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formato da data"
 
-#: 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 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:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Desativado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domínio"
 
@@ -225,85 +199,81 @@ msgstr "DNS Dinâmico"
 msgid "Dynamic DNS Version"
 msgstr "Versão DNS Dinâmica"
 
-#: 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:545
 msgid "Edit"
 msgstr "Editar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Ativado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Falha"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Máximo de tentativas após erro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Intervalo de Tentativas em Erro"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Rede de Eventos"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Exemplo de IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Exemplo de IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Ficheiro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found 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:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forçar Versão de IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Forçar o intervalo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forçar TCP no DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Forçar a unidade"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formato: IP ou FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -322,44 +292,44 @@ msgstr "Conceder UCI acesso aos procedimentos ddns"
 msgid "HTTPS not supported"
 msgstr "HTTPS não suportado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "Fonte do endereço IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Versão do endereço IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Endereço-IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "IPv6 não suportado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Endereço-IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -367,25 +337,25 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will 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:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Informações"
 
@@ -393,12 +363,15 @@ msgstr "Informações"
 msgid "Information"
 msgstr "Informação"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Inserir um Script ou URL de Atualização"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -406,192 +379,196 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Instalar o serviço"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interface"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Unidade de intervalo para forçar atualizações enviadas ao provedor de DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Última atualização"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Visualizador de ficheiro de log"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Directório de Log"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Tamanho do log"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Log para ficheiro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Registar para o syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nome"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Nem GNU Wget com SSL, nem cURL instalado para selecionar uma rede para usar "
 "para comunicação."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Nem GNU Wget com SSL, nem cURL instalado para suportar atualizações seguras "
 "via protocolo HTTPS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Nunca"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Novo Serviço de DDns…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Nenhum certificado encontrado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Sem registros"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "IPs não públicos e bloqueados por padrão"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Não em Execução"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Aviso"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Perante um erro, o script interromperá a execução após um determinado número "
 "de tentativas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Parâmetro Opcionalmente Codificado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Parâmetro Opcional"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "servidor PROXY"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Palavra-passe"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Caminho para o certificado da AC"
 
@@ -602,40 +579,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Inserir um Script ou URL de Atualização"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Realmente mudar o serviço?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Recarregar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Recarregar este serviço"
 
-#: 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:733
 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:754
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Substitui [USERNAME] na URL de atualização"
 
@@ -643,7 +625,7 @@ msgstr "Substitui [USERNAME] na URL de atualização"
 msgid "Restart DDns"
 msgstr "Reiniciar DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Tentar a unidade novamente"
 
@@ -652,36 +634,36 @@ msgid "Run once"
 msgstr "Executar apenas uma vez"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Executando"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Script"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Selecione um serviço"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 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:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "O Serviço não está instalado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Serviços"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Descarregar URL de serviços"
 
@@ -689,12 +671,12 @@ msgstr "Descarregar URL de serviços"
 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:1002
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -710,15 +692,15 @@ msgstr "Iniciar DDNS"
 msgid "State"
 msgstr "Estado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Diretório de estado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Parar"
 
@@ -726,7 +708,7 @@ msgstr "Parar"
 msgid "Stop DDNS"
 msgstr "Parar DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Parar este serviço"
 
@@ -734,19 +716,19 @@ msgstr "Parar este serviço"
 msgid "Stopped"
 msgstr "Parado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Trocar serviço"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "A configuração padrão de '0' terá tentativas infinitas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "O intervalo entre o qual cada nova tentativa sucessiva começará."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "O nome do serviço já está usado"
 
@@ -754,7 +736,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Este é o conteúdo atual do ficheiro de registo %h para este serviço."
 
@@ -767,24 +755,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Configurações do Controlador de Tempo"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "Detectada pela URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Desconhecido"
@@ -793,35 +781,35 @@ msgstr "Desconhecido"
 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:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Usar HTTP Seguro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Usar cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nome do utilizador"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "Valores mais baixos que 'Check Interval' exceto '0' não são suportados"
 
@@ -829,22 +817,27 @@ msgstr "Valores mais baixos que 'Check Interval' exceto '0' não são suportados
 msgid "Verify"
 msgstr "Verificar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Aviso"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Define qual endereço IP 'IPv4/IPv6' é enviado ao provedor DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "Quais unidades de tempo usar para contadores de novas tentativas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 msgid ""
 "Writes detailed messages to log file. File will be truncated automatically."
 msgstr ""
 "Escreve mensagens detalhadas no ficheiro de log. O ficheiro será "
 "automaticamente truncado."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -852,7 +845,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -860,18 +853,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' para "
-"requisições DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -880,49 +861,49 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL sem suporte a proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "personalizado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dias"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "diretório ou caminho/ficheiro"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "horas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "ou"
 
@@ -930,16 +911,39 @@ msgstr "ou"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "para executar HTTPS sem verificação dos certificados do servidor (não seguro)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "A verificar o suporte de serviço..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Define a fonte de leitura do endereço IP do sistema, que será enviado "
+#~ "para o provedor de DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ 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!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Forçar Versão de IP não suportado"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Você deve instalar o pacote 'wget' ou 'curl' ou 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Contador de Tentativas em Erro"
 
@@ -978,7 +982,7 @@ msgstr ""
 #~ "<br />Nem da interface LuCI nem do console"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the 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 /"
@@ -1005,7 +1009,7 @@ msgstr ""
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "O nslookup e o Wget do BusyBox não suportam especificar"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr ""
 #~ "O nslookup e a hostip do BusyBox não suportam especificar a usar o TCP"
 
index 047265228698b65f68788fc68ff5732f81c135c9..f734d099ea486108e2795d73d9e2542c8c1ac169 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 5.7-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 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:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Adicionar novos serviços..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Configurações avançadas"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Permitir IPs não-públicos"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Configurações Básicas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Limitar Rede"
 
@@ -46,23 +46,15 @@ msgstr "Limitar Rede"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"nslookup e Wget do BusyBox não suportam que especifique a versão de IP a ser "
-"usada para comunicação com o provedor DDNS!"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "nslookup e hostip do BusyBox não suportam que especifique para usar TCP em "
 "vez do padrão UDP quando requisitando servidor DNS!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Caminho dos certificados Ca"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,47 +74,42 @@ 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Cancelar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Intervalo de verificação"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Verificar a Unidade"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Erro de configuração"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Criar serviço"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Configuração atual:"
 
@@ -133,17 +120,17 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "URL para atualização personalizada"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script para atualização personalizado"
 
@@ -157,8 +144,8 @@ msgstr "Auto-inicialização de DDNS desabilitada"
 msgid "DDNS Autostart enabled"
 msgstr "Inicialização automática de DDNS habilitado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Provedor de serviço DDNS"
 
@@ -166,52 +153,39 @@ msgstr "Provedor de serviço DDNS"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Serviço DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 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:918
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
 msgid "DNS-Server"
 msgstr "Servidor DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formato de data"
 
-#: 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 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:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 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:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Desativado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domínio"
 
@@ -225,85 +199,81 @@ msgstr "DNS Dinâmico"
 msgid "Dynamic DNS Version"
 msgstr "Versão de DNS dinâmico"
 
-#: 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:545
 msgid "Edit"
 msgstr "Editar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Ativado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Erro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Máximo de tentativas após erro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Intervalo de tentativas em Erro"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Rede de Evento"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Exemplo para IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Exemplo para IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Arquivo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found 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:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 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:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forçar versão de IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Forçar intervalo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forçar TCP em DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Impor a Unidade"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Formato"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Formato: IP ou FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -321,44 +291,44 @@ msgstr "Conceda acesso UCI aos procedimentos ddns"
 msgid "HTTPS not supported"
 msgstr "HTTPS não suportado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "Fonte do endereço IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Versão do endereço IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Endereço IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 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:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not 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:310
 msgid "IPv6 not supported"
 msgstr "IPv6 não suportado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Endereço IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -366,25 +336,25 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will 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:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Informação"
 
@@ -392,12 +362,15 @@ msgstr "Informação"
 msgid "Information"
 msgstr "Informações"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Insira um script de atualização OU uma URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -405,192 +378,196 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Serviço de instalação"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interface"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Unidade de intervalo para impor as atualizações enviados ao provedor DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Última atualização"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Visualizador de arquivo de registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Diretório de registro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Tamanho do log"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Log para arquivo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Registrar no syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nome"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Nem GNU Wget com SSL nem cURL instalado para selecionar uma rede para usar "
 "para comunicação."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Nem GNU Wget com SSL nem cURL instalado para suportar atualizações seguras "
 "via protocolo HTTPS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Nunca"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Novo Serviço DDNS…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Nenhum certificado encontrado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Sem registros"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "IPs não públicos e bloqueados por padrão"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Não está em execução"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Aviso"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 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:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Em erro, o script interromperá a execução após uma determinada quantidade de "
 "tentativas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Parâmetro Opcionalmente Codificado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Parâmetro Opcional"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "servidor PROXY"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Senha"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Caminho para o certificado CA"
 
@@ -601,40 +578,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Insira um script de atualização OU uma URL"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Ler / Ler novamente o arquivo do registro log"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Deseja realmente trocar o serviço?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Recarregar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Recarregar este serviço"
 
-#: 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:733
 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:754
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Substitui [USERNAME] na URL de atualização"
 
@@ -642,7 +624,7 @@ msgstr "Substitui [USERNAME] na URL de atualização"
 msgid "Restart DDns"
 msgstr "Reiniciar DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Tentar a Unidade Novamente"
 
@@ -651,36 +633,36 @@ msgid "Run once"
 msgstr "Rodar apenas uma vez"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Script"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Selecione um serviço"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 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:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "O serviço não está instalado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Serviços"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "URL dos serviços para download"
 
@@ -688,12 +670,12 @@ msgstr "URL dos serviços para download"
 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:1002
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -709,15 +691,15 @@ msgstr "Iniciar DDNS"
 msgid "State"
 msgstr "Estado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Diretório de status"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Parar"
 
@@ -725,7 +707,7 @@ msgstr "Parar"
 msgid "Stop DDNS"
 msgstr "Parar DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Para este serviço"
 
@@ -733,20 +715,20 @@ msgstr "Para este serviço"
 msgid "Stopped"
 msgstr "Parado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Trocar o serviço"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "A configuração padrão de '0' terá infinitas tentativas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 "O intervalo entre o qual cada nova tentativa com sucesso será iniciada."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "O nome do serviço já é usado"
 
@@ -754,7 +736,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 "Este é o conteúdo atual do arquivo de registro em %h para este serviço."
@@ -768,24 +756,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 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:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Configurações do Controlador de Tempo"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "Detectada pela URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Desconhecido"
@@ -794,35 +782,35 @@ msgstr "Desconhecido"
 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:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Usar HTTP Seguro"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Usar cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nome do usuário"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 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:984
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "Valores mais baixos 'Check Interval', exceto '0' não são suportados"
 
@@ -830,22 +818,27 @@ msgstr "Valores mais baixos 'Check Interval', exceto '0' não são suportados"
 msgid "Verify"
 msgstr "Verificar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Alerta"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Define qual endereço IP ‘IPv4/IPv6’ é enviado ao provedor DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "Quais unidades de tempo usar para a contagem das novas tentativas."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -853,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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -862,18 +855,6 @@ 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:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Você deve instalar o pacote 'bind-host' ou 'knot-host' ou 'drill' para "
-"requisições DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -882,49 +863,49 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 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:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL sem suporte a proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "personalizado"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dias"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "diretório ou caminho/arquivo"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "horas"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "ou"
 
@@ -932,16 +913,39 @@ msgstr "ou"
 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:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 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 "Checking the service support..."
+#~ msgstr "Verificando o suporte do serviço..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Define a origem para ler o endereço IP de sistemas, que será enviada ao "
+#~ "provedor DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "nslookup e Wget do BusyBox não suportam que especifique a versão de IP a "
+#~ "ser usada para comunicação com o provedor DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Forçar versão de IP não suportado"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Você deve instalar o pacote 'wget' ou 'curl' ou 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Contador de Tentativas em Erro"
 
@@ -981,7 +985,7 @@ msgstr ""
 #~ "<br />nem da interface LuCI nem do console"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the 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 "
@@ -1007,7 +1011,7 @@ msgstr ""
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "nslookup do BusyBox e Wget não possuem suporte a especificar"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr ""
 #~ "nslookup do BusyBox e hostip não possuem suporte a especificar para usar "
 #~ "TCP"
@@ -1155,9 +1159,9 @@ msgstr ""
 #~ msgstr "Dicas"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "IPv6 não é (completamente) suportado por este sistema<br />Por favor siga "
 #~ "as instruções na página inicial do OpenWrt para habilitar o suporte ao "
@@ -1182,7 +1186,7 @@ msgstr ""
 #~ "300 segundos não são suportados"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
index 5751f0c65b78066fe8a38faf0cfe63455ca01512..03b594e85303f47bfb3486a5ee78e29cb5fb36fa 100644 (file)
@@ -14,32 +14,32 @@ msgstr ""
 "20)) ? 1 : 2;\n"
 "X-Generator: Weblate 4.18-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" nu este permis în calea de acces din motive de securitate."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Adaugă servicii noi..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Setări avansate"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Permite IP-uri non-publice"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Setări de bază"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Leagă de rețea"
 
@@ -47,23 +47,15 @@ msgstr "Leagă de rețea"
 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:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"BusyBox's nslookup și Wget nu suportă specificarea versiunii IP de utilizat "
-"pentru comunicarea cu furnizorul 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "BusyBox's nslookup și hostip nu acceptă specificarea utilizării TCP în loc "
 "de UDP implicit atunci când se solicită un server DNS!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -71,11 +63,11 @@ msgstr ""
 "BusyBox's nslookup în versiunea compilată actuală nu gestionează corect "
 "serverele DNS date!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Ca Certs cale de acces"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -83,49 +75,44 @@ msgstr ""
 "Ca Certs calea de acces care va fi utilizată pentru a descărca datele "
 "serviciilor. Setați IGNORE pentru a sări peste validarea certificatelor."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Anulare"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Interval de verificare"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Verificați unitatea"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Verificarea suportului de service..."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:27
 msgid "Configuration"
 msgstr "Configurație"
 
 #: 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:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Eroare de configurație"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 "Directorul conține fișierele jurnal pentru fiecare secțiune în curs de "
 "execuție."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr ""
 "Directorul conține PID și alte informații de stare pentru fiecare secțiune "
 "în curs de execuție."
 
-#: 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:536
 msgid "Create service"
 msgstr "Creează serviciu"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Setarea curentă:"
 
@@ -136,17 +123,17 @@ msgstr ""
 "În prezent, actualizările DDNS nu sunt pornite la pornire sau la evenimente "
 "de interfață."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Script de actualizare personalizat care va fi utilizat pentru actualizarea "
 "furnizorului DDNS."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Adresa particularizata de actualizare"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Script de update personalizat"
 
@@ -160,8 +147,8 @@ msgstr "Pornirea automată a DDNS dezactivată"
 msgid "DDNS Autostart enabled"
 msgstr "Pornirea automată a DDNS activată"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Furnizorul de servicii DDNS"
 
@@ -169,52 +156,39 @@ msgstr "Furnizorul de servicii DDNS"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Serviciul DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "Cererile DNS prin TCP nu sunt acceptate"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Server DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formatul datei"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr "Definește pagina web de pe care se citește adresa IP a sistemelor."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Definește interfața de la care se citește adresa IP a sistemelor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Definește rețeaua din care se citește adresa IP a sistemelor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Definește sursa de la care se citește adresa IP a sistemelor, care va fi "
-"trimisă furnizorului DDNS"
-
-#: 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:635
-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:17
 msgid "Disabled"
 msgstr "Dezactivat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domeniu"
 
@@ -228,85 +202,81 @@ msgstr "DNS dinamic"
 msgid "Dynamic DNS Version"
 msgstr "Versiune DNS Dinamic"
 
-#: 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:545
 msgid "Edit"
 msgstr "Editați"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "activat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Eroare"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 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:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Rețeaua de evenimente"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Exemplu pentru IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Exemplu pentru IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Fișier"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Urmați instrucțiunile pe care le veți găsi pe pagina lor WEB."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Pentru coduri acceptate, uitați-vă aici"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Forțează versiune IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Interval de forță"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Forțați TCP pe DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Unitatea de forță"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Format"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Format: IP sau FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -325,44 +295,44 @@ msgstr "Acordați acces la procedurile ddns"
 msgid "HTTPS not supported"
 msgstr "HTTPS nu este acceptat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr ""
 "Numele de gazdă/FQDN de validat, dacă se întâmplă sau este necesară "
 "actualizarea IP-ului"
 
-#: 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:791
 msgid "IP address source"
 msgstr "Sursa adresei IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Versiunea adresei IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Adresa IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "Adresa IPv6 trebuie indicată între paranteze drepte"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "IPv6 nu este în prezent (pe deplin) acceptat de acest sistem"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 nu este suportat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Adresă IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -370,27 +340,27 @@ msgstr ""
 "În cazul în care sunt instalate pachetele Wget și cURL, Wget este utilizat "
 "în mod implicit pentru comunicare."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 "Dacă această secțiune de serviciu este dezactivată, nu a putut fi pornită."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 "Dacă utilizați o comunicare securizată, ar trebui să verificați "
 "certificatele serverului!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 msgid ""
 "In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
 msgstr ""
 "În unele versiuni, cURL/libcurl din OpenWrt este compilat fără suport pentru "
 "proxy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Informații"
 
@@ -398,12 +368,15 @@ msgstr "Informații"
 msgid "Information"
 msgstr "Informație"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Introduceți un script de actualizare SAU un URL de actualizare"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Ar trebui să instalați pachetul 'bind-host' ori 'knot-host' sau 'drill' "
+"pentru cererile DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -411,197 +384,201 @@ msgstr ""
 "Instalați pachetul 'ca-certificates' sau certificatele necesare manual în "
 "directorul implicit /etc/ssl/certs"
 
-#: 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:662
 msgid "Install Service"
 msgstr "Instalarea serviciului"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Interfață"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 "Interval pentru a forța trimiterea de actualizări către furnizorul DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Unitatea de interval pentru a forța trimiterea de actualizări către "
 "furnizorul DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Ultima actualizare"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Vizualizator de fișiere jurnal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Director de jurnal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Lungimea jurnalului"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Înregistrare în fișier"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Înregistrare în syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Căutarea numelui de gazdă"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Nume"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Nici GNU Wget cu SSL și nici cURL nu sunt instalate pentru a selecta o rețea "
 "de utilizat pentru comunicare."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Nici GNU Wget cu SSL și nici cURL nu sunt instalate pentru a suporta "
 "actualizări securizate prin protocolul HTTPS."
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Nici de la interfața LuCI, nici de la consolă."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
 msgid "Network"
 msgstr "Rețea"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "Rețeaua pe care vor fi pornite scripturile ddns-updater"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Niciodată"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Noul serviciu DDns…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Următoarea actualizare"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Nu există date"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Nu s-au găsit certificate"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Fără logare"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "IP-uri nepublice și implicit blocate"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Nu funcționează"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Aviz"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "Numărul ultimelor linii stocate în fișierele jurnal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr "OPȚIONAL: Forțează utilizarea exclusivă a comunicațiilor IPv4/IPv6."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
 msgstr ""
 "OPȚIONAL: Forțează utilizarea TCP în loc de UDP implicit pentru cererile DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "OPȚIONAL: Rețeaua de utilizat pentru comunicare"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "OPȚIONAL: Proxy-Server pentru detectare și actualizări."
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "OPȚIONAL: Utilizați un server DNS care nu este prestabilit pentru a detecta "
 "\"Registered IP\"."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "În caz de eroare, scriptul va întrerupe execuția după un anumit număr de "
 "încercări repetate."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Parametru codificat opțional"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Parametru opțional"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr "Opțional: Înlocuiește [PARAMENC] în Update-URL (URL-encodat)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr "Opțional: Înlocuiește [PARAMOPT] în Update-URL (NU este codificat URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "PROXY-Server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Parolă"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Calea către certificatul CA"
 
@@ -612,40 +589,45 @@ msgstr ""
 "Vă rugăm să urmați instrucțiunile de pe pagina de start a OpenWrt pentru a "
 "activa suportul IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071
 msgid "Please press [Read] button"
 msgstr "Vă rugăm să apăsați butonul [Read]"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Introduceți un script de actualizare SAU un URL de actualizare"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Citiți / Recitiți fișierul jurnal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Chiar schimbați serviciul?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "IP înregistrat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Reîncărcați"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Reîncărcați acest serviciu"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Înlocuiește [DOMAIN] în Update-URL (URL-encoded)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Înlocuiește [PASSWORD] în Update-URL (URL-encoded)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Înlocuiește [USERNAME] în Update-URL (URL-encoded)"
 
@@ -653,7 +635,7 @@ msgstr "Înlocuiește [USERNAME] în Update-URL (URL-encoded)"
 msgid "Restart DDns"
 msgstr "Reporniți DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Unitate de reluare"
 
@@ -662,36 +644,36 @@ msgid "Run once"
 msgstr "Rulați o dată"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Rulare"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Scenariu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Selectați un serviciu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Serviciul nu acceptă acest tip de ip"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Serviciul nu este instalat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Servicii"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Servicii URL Descărcare"
 
@@ -699,13 +681,13 @@ msgstr "Servicii URL Descărcare"
 msgid "Services list last update"
 msgstr "Ultima actualizare a listei de servicii"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr ""
 "Setarea acestui parametru la 0 va forța scriptul să ruleze doar o singură "
 "dată"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -721,15 +703,15 @@ msgstr "Porniți DDNS"
 msgid "State"
 msgstr "Stat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103
 msgid "Status"
 msgstr "Stare"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Director de stare"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stop"
 
@@ -737,7 +719,7 @@ msgstr "Stop"
 msgid "Stop DDNS"
 msgstr "Opriți DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Opriți acest serviciu"
 
@@ -745,19 +727,19 @@ msgstr "Opriți acest serviciu"
 msgid "Stopped"
 msgstr "S-a oprit"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Comutați serviciul"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Setarea implicită de \"0\" va reîncerca la infinit."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Intervalul între care va începe fiecare reîncercare succesivă."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Numele serviciului este deja utilizat"
 
@@ -765,7 +747,13 @@ msgstr "Numele serviciului este deja utilizat"
 msgid "There is no service configured."
 msgstr "Nu este configurat niciun serviciu."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 "Acesta este conținutul actual al fișierului jurnal în %h pentru acest "
@@ -780,24 +768,24 @@ msgstr ""
 "Aceasta este valoarea implicită în cazul în care rulați singur scripturile "
 "DDNS (de exemplu, prin cron cu force_interval setat la '0')"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "Aceasta va fi setată automat pe interfața selectată"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Setări temporizator"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL de detectat"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Necunoscut"
@@ -806,37 +794,37 @@ msgstr "Necunoscut"
 msgid "Update DDns Services List"
 msgstr "Actualizarea listei de servicii DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 "URL de actualizare care urmează să fie utilizat pentru actualizarea "
 "furnizorului DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Utilizați HTTP Securizat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Utilizați cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "Script definit de utilizator pentru a citi adresa IP a sistemelor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Nume Utilizator"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Nu se acceptă utilizarea unui server DNS specific"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr "Valorile sub 5 minute == 300 de secunde nu sunt acceptate"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 "Valorile mai mici ale 'Intervalului de verificare', cu excepția lui '0', nu "
@@ -846,23 +834,28 @@ msgstr ""
 msgid "Verify"
 msgstr "Verifică"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Avertisment"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Definește care adresă IP \"IPv4/IPv6\" este trimisa furnizorului DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 "Unitățile de timp care trebuie utilizate pentru contoarele de încercări "
 "repetate."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 msgid ""
 "Writes detailed messages to log file. File will be truncated automatically."
 msgstr ""
 "Scrie mesaje detaliate în fișierul jurnal. Fișierul va fi trunchiat automat."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -870,7 +863,7 @@ msgstr ""
 "Scrie mesajele de jurnal în syslog. Erorile critice vor fi întotdeauna "
 "scrise în syslog."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -879,18 +872,6 @@ msgstr ""
 "\"drill\" sau \"hostip\", dacă aveți nevoie să specificați un server DNS "
 "pentru a vă detecta IP-ul înregistrat."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Ar trebui să instalați pachetul 'bind-host' ori 'knot-host' sau 'drill' "
-"pentru cererile DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr "Ar trebui să instalați pachetul 'wget' ori 'curl' sau 'uclient-fetch'."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -899,51 +880,51 @@ msgstr ""
 "Ar trebui să instalați \"wget\" sau \"curl\" sau \"uclient-fetch\" cu "
 "pachetul \"libustream-*ssl\"."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "Ar trebui să instalați pachetul \"wget\" sau \"curl\"."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 msgid ""
 "You should install 'wget' or 'uclient-fetch' package or replace libcurl."
 msgstr ""
 "Ar trebui să instalați pachetul 'wget' sau 'uclient-fetch' sau să înlocuiți "
 "libcurl."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 "cURL este instalat, dar libcurl a fost compilat fără suport pentru proxy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL fără suport Proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "personalizat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "zile"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "director sau cale/file"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "ore"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "minute"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "sau"
 
@@ -951,16 +932,40 @@ msgstr "sau"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "sau actualizați-vă sistemul la cea mai recentă versiune OpenWrt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "secunde"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 "pentru a rula HTTPS fără verificarea certificatelor serverului (nesigur)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Verificarea suportului de service..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Definește sursa de la care se citește adresa IP a sistemelor, care va fi "
+#~ "trimisă furnizorului DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "BusyBox's nslookup și Wget nu suportă specificarea versiunii IP de "
+#~ "utilizat pentru comunicarea cu furnizorul DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Forțarea versiunii IP nu este suportată"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr ""
+#~ "Ar trebui să instalați pachetul 'wget' ori 'curl' sau 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Număr de reîncercări in caz de eroare"
 
index 62c2a4bbca89be4400d37d380df6f2dc5cea25c4..f230ff576d36fa1c8786d5d75477ccc55d43e96c 100644 (file)
@@ -16,33 +16,33 @@ msgstr ""
 "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
 "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 "Использование «../» в пути не разрешается по соображениям безопасности."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "A.k.a. the TOKEN at e.g. afraid.org"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Добавить новую службу..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Дополнительные настройки"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Разрешить непубличные IP-адреса"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Основные настройки"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Привязать сеть"
 
@@ -50,23 +50,15 @@ msgstr "Привязать сеть"
 msgid "Binding to a specific network not supported"
 msgstr "Привязка к определенной сети не поддерживается"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "Утилиты nslookup и hostip из состава busybox не позволяют указать "
 "использование TCP вместо UDP по умолчанию при запросе к DNS-серверу!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -74,11 +66,11 @@ msgstr ""
 "Утилита nslookup из установленной сборки busybox некорректно работает с "
 "данными серверами DNS!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Путь к сертификатам CA"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -86,47 +78,42 @@ msgstr ""
 "Путь к сертификатам CA, которые будут использоваться для загрузки данных "
 "сервисов. Установите IGNORE, чтобы пропустить проверку сертификата."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Отмена"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr "Элемент проверки"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Ошибка конфигурации"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Каталог, содержащий файлы журналов для каждой запущенной службы."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr ""
 "Каталог, содержащий PID-файлы и другую информацию о состоянии каждой "
 "запущенной службы."
 
-#: 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "Текущие настройки:"
 
@@ -137,17 +124,17 @@ msgstr ""
 "В настоящее время обновления DDNS не запускаются при загрузке или при "
 "событиях интерфейса."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Пользовательский скрипт обновления, который будет использоваться для вашего "
 "провайдера DDNS."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Пользовательский URL обновления"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Пользовательский скрипт обновления"
 
@@ -161,8 +148,8 @@ msgstr "Автозапуск DDNS отключен"
 msgid "DDNS Autostart enabled"
 msgstr "Автозапуск DDNS включён"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Провайдер службы DDNS"
 
@@ -170,52 +157,39 @@ msgstr "Провайдер службы DDNS"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Служба DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "Запросы DNS по протоколу TCP не поддерживаются"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Сервер DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Определяет интерфейс для чтения системного IP-адреса из"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Определяет сеть для считывания системного IP-адреса"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Отключено"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Домен"
 
@@ -229,85 +203,81 @@ msgstr "Динамический DNS"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Изменить"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "Включить безопасное соединение с провайдером DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Включен"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Ошибка"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Ошибка Максимальный счетчик повторных попыток"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Интервал попытки повтора при ошибке"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr "Шаблон для IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Шаблон для IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Файл"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Следуйте инструкциям, размещенным на их веб-странице."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Поддерживаемые коды смотрите здесь"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Назначенная версия протокола IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Назначенная версия протокола IP не поддерживается"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Назначить интервал"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Использовать протокол TCP для DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Размерность интервала обновления"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Формат"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "В виде: IP-адрес или полное доменное имя"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -327,32 +297,32 @@ msgstr "Предоставить доступ к процедурам DDNS"
 msgid "HTTPS not supported"
 msgstr "HTTPS не поддерживается"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr ""
 "Имя хоста/полное доменное имя для проверки, если IP-адрес изменяется или "
 "есть необходимость"
 
-#: 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:791
 msgid "IP address source"
 msgstr "IP-адрес источника"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Версия IP-адреса"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-адрес"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "IPv6-адрес должен быть указан в квадратных скобках"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 "В настоящее время эта система не (полностью) поддерживает протокол IPv6"
 
@@ -360,12 +330,12 @@ msgstr ""
 msgid "IPv6 not supported"
 msgstr "IPv6 не поддерживается"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-адрес"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -373,26 +343,26 @@ msgstr ""
 "Если установлены пакеты wget и cURL, то по умолчанию будет использоваться "
 "wget."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "Если служба отключена, её нельзя будет запустить."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 "Если используется безопасное соединение, необходимо проверить сертификаты "
 "сервера!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Информация"
 
@@ -400,12 +370,15 @@ msgstr "Информация"
 msgid "Information"
 msgstr "Информация"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Укажите скрипт обновления или URL обновления"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Следует установить пакет 'bind-host', 'knot-host' или 'drill' для DNS-"
+"запросов."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -413,195 +386,199 @@ msgstr ""
 "Установите пакет 'ca-certificates' или поместите необходимые сертификаты в "
 "каталог /etc/ssl/certs"
 
-#: 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:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Интерфейс"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Интервал для отправки обновлений провайдеру DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "Размерность интервала отправки обновлений провайдеру DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "Размерность интервала проверки изменений IP-адреса"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr "Просмотр файла журнала"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Каталог журнала"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Просмотр журнала"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Запись в файл"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Логгировать в syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Название"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Не установлены пакеты GNU wget c SSL или cURL для возможности выбора сети "
 "для связи."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Ни из веб-интерфейса LuCI, ни из консоли."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Никогда"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Новая служба DDNS…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Сертификаты не найдены"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Отключить журналирование"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Непубличные и заблокированные по умолчанию IP-адреса"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Не работает"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Уведомление"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "Число последних строк, для хранения в журнале"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "Необязательно: сеть для связи"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "Необязательно: прокси-сервер для обнаружения и обновления."
 
-#: 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:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "При ошибке скрипт остановит выполнение после заданного количества повторных "
 "попыток."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Необязательный кодированный параметр"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Необязательный параметр"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Прокси-сервер"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Пароль"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Путь к сертификату CA"
 
@@ -612,40 +589,45 @@ msgstr ""
 "Следуйте инструкциям на домашней странице OpenWrt, чтобы включить поддержку "
 "IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Укажите скрипт обновления или URL обновления"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Действительно переключить службу?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Перезагрузить"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 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:754
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:745
 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:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Заменяет [USERNAME] в Update-URL (URL-encoded)"
 
@@ -653,7 +635,7 @@ msgstr "Заменяет [USERNAME] в Update-URL (URL-encoded)"
 msgid "Restart DDns"
 msgstr "Перезапустить DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Размерность интервалов повтора"
 
@@ -662,36 +644,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Скрипт"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Выберите службу"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Служба не поддерживает выбранный тип IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Служба не установлена"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Службы"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "URL файла поддержки служб"
 
@@ -699,11 +681,11 @@ msgstr "URL файла поддержки служб"
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -719,15 +701,15 @@ msgstr "Запустить DDNS"
 msgid "State"
 msgstr "Состояние"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Папка состояния"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Остановить"
 
@@ -735,7 +717,7 @@ msgstr "Остановить"
 msgid "Stop DDNS"
 msgstr "Остановить DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Остановить эту службу"
 
@@ -743,19 +725,19 @@ msgstr "Остановить эту службу"
 msgid "Stopped"
 msgstr "Остановлена"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Переключить службу"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Значение по умолчанию '0' используется для бесконечного повтора."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Интервал между последовательными попытками."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Имя службы уже используется"
 
@@ -763,7 +745,13 @@ msgstr "Имя службы уже используется"
 msgid "There is no service configured."
 msgstr "Служба не настроена."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Это текущее содержимое файла журнала в %h для этой службы."
 
@@ -776,24 +764,24 @@ msgstr ""
 "Это поведение по умолчанию, если вы запускаете скрипты DDNS самостоятельно "
 "(т.е. через cron с параметром force_interval, установленным в '0')"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "Будет выполнена автоматическая настройка на выбранный интерфейс"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL для обнаружения"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Неизвестный"
@@ -802,35 +790,35 @@ msgstr "Неизвестный"
 msgid "Update DDns Services List"
 msgstr "Обновить список служб DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "URL для обновления данных провайдера DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Использовать HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Использовать cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "Заданный пользователем скрипт для чтения системного IP-адреса"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Имя пользователя"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Использование определенного DNS сервера не поддерживается"
 
-#: 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:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "Значения меньше интервала проверки (кроме 0) не поддерживаются"
 
@@ -838,22 +826,27 @@ msgstr "Значения меньше интервала проверки (кр
 msgid "Verify"
 msgstr "Проверить"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Внимание"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Определяет, который IP-адрес 'IPv4/IPv6' отправляется провайдеру DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "Какие единицы времени использовать для таймера повторных попыток."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -861,7 +854,7 @@ msgstr ""
 "Записывать сообщения в syslog. Критические ошибки всегда будут записаны в "
 "syslog."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -870,18 +863,6 @@ msgstr ""
 "если нужно указать DNS-сервер для обнаружения вашего зарегистрированного IP-"
 "адреса."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -890,49 +871,49 @@ msgstr ""
 "Следует установить пакет 'wget', 'curl' или 'uclient-fetch' с 'libustream-"
 "*ssl'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "Следует установить пакет 'wget' или 'curl'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL без поддержки прокси"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "пользовательский"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "дни"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "каталог или путь/файл"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "часа(ов)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "или"
 
@@ -940,15 +921,38 @@ msgstr "или"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "или обновить вашу систему до последнего релиза OpenWrt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "использовать HTTPS без проверки сертификатов сервера (небезопасно)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Проверка поддержки службы..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Определяет источник для чтения системного IP-адреса, который будет "
+#~ "отправляться провайдеру DDNS"
+
+#~ 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!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Назначенная версия протокола IP не поддерживается"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Следует установить пакет 'wget', 'curl' или 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Счётчик попыток повтора при ошибке"
 
@@ -985,7 +989,7 @@ msgstr "использовать HTTPS без проверки сертифик
 #~ "интерфейса LuCI, ни с консоли"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once"
 #~ msgstr ""
 #~ "Интервал для отправки обновлений провайдеру DDNS<br />Установка значения "
@@ -1132,9 +1136,9 @@ msgstr "использовать HTTPS без проверки сертифик
 #~ msgstr "Подсказки"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "IPv6 не поддерживается вашей прошивкой.<br />Следуйте инструкциям на "
 #~ "главной странице OpenWrt, чтобы включить поддержку IPv6<br />или обновить "
@@ -1161,7 +1165,7 @@ msgstr "использовать HTTPS без проверки сертифик
 
 #, fuzzy
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
index 7a221cdbd2332590cf92ea3b5155b0b6cbba9778..ea653b96f905490e8926fbb871f19e4af05b6b59 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 5.0-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Pridať nové služby..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Pokročilé nastavenia"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Povoliť neverejné adresy IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Základné nastavenia"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Previazať siete"
 
@@ -43,73 +43,62 @@ msgstr "Previazať siete"
 msgid "Binding to a specific network not supported"
 msgstr "Previazanie k určitej sieti nie je podporované"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Zrušiť"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Interval kontroly"
 
-#: 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Kontroluje sa podpora služby..."
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Chyba konfigurácie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create service"
 msgstr "Vytvoriť službu"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Aktuálne nastavenie:"
 
@@ -118,16 +107,16 @@ msgstr "Aktuálne nastavenie:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Vlastný aktualizačný skript použitý na aktualizáciu vášho poskytovateľa DDNS."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -141,8 +130,8 @@ msgstr "Automatické spustenie DDNS zakázané"
 msgid "DDNS Autostart enabled"
 msgstr "Automatické spustenie DDNS povolené"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Poskytovateľ služby DDNS"
 
@@ -150,50 +139,39 @@ msgstr "Poskytovateľ služby DDNS"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Služba DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Server DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Formát dátumu"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Zakázané"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Doména"
 
@@ -207,85 +185,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Upraviť"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Zapnuté"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Chyba"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Súbor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -303,63 +277,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Adresa IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Adresa IPv6"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Informácia"
 
@@ -367,196 +341,201 @@ msgstr "Informácia"
 msgid "Information"
 msgstr "Informácie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Rozhranie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Názov"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Oznámenie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Heslo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -565,40 +544,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -606,7 +590,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -615,36 +599,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Služby"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -652,11 +636,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -670,15 +654,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Zastaviť"
 
@@ -686,7 +670,7 @@ msgstr "Zastaviť"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -694,19 +678,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -714,7 +698,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -725,24 +715,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "Adresa URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Neznáme"
@@ -751,35 +741,35 @@ msgstr "Neznáme"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Používateľské meno"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -787,89 +777,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Upozornenie"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -877,11 +862,14 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
+
+#~ msgid "Checking the service support..."
+#~ msgstr "Kontroluje sa podpora služby..."
index c4b8982545d7330b98d70ae0ba5a66e32c4a5fae..5fa8971be13bc2f3bb6c4e0cea084812869ce3e4 100644 (file)
@@ -10,32 +10,32 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.8.2-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" ej tillåten i sökväg av säkerhetsskäl."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Lägg till nya tjänster..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Avancerade inställningar"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Tillåt icke-publika IP-adresser"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Grundläggande inställningar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Bind samman nätverk"
 
@@ -43,29 +43,23 @@ msgstr "Bind samman nätverk"
 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:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Sökväg till CA-certifikat"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -73,45 +67,40 @@ msgstr ""
 "Sökvägen till CA-certifikaten som används för att ladda ner tjänstdata. Välj "
 "IGNORE för att hoppa över certifikatvalidering."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Avbryt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Kontrollintervall"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Kontrollera enhet"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Kontrollerar service-stödet..."
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Konfigurationsfel"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Mappen innehåller Logg-filer för varje del som körs."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create service"
 msgstr "Skapa tjänst"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Nuvarande inställning:"
 
@@ -120,17 +109,17 @@ msgstr "Nuvarande inställning:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Skräddarsytt uppdateringsskript att använda vid uppdatering av din DDNS-"
 "leverantör."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Anpassad webbadress för uppdatering"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Anpassat uppdateringsskript"
 
@@ -144,8 +133,8 @@ msgstr "DDNS autostart inaktiverad"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS autostart aktiverad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS-tjänstleverantör"
 
@@ -153,50 +142,39 @@ msgstr "DDNS-tjänstleverantör"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDns-tjänst"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "DNS-förfrågningar via TCP stöds inte"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS-server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Datumformat"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Inaktiverad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Domän"
 
@@ -210,85 +188,81 @@ msgstr "Dynamisk DNS"
 msgid "Dynamic DNS Version"
 msgstr "Dynamisk DNS-version"
 
-#: 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:545
 msgid "Edit"
 msgstr "Redigera"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "Aktivera säker kommunikation med DDNS-leverantör"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Aktiverat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Fel"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Fil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Tvinga IP-version"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-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:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Format"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Format: IP eller FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -308,63 +282,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr "HTTPS stöds inte"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr "IP-adressens källa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Version för IP-adress"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4-adress"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 stöds inte"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6-adress"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Info"
 
@@ -372,196 +346,201 @@ msgstr "Info"
 msgid "Information"
 msgstr "Information"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Gränssnitt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Senaste uppdateringen"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Visare av loggfil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Loggens längd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Logga till fil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Logga till syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Namn"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Aldrig"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Inga ceritifikat hittades"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Ingen loggning"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Avisering"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Valfri parameter"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "PROXY-server"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Lösenord"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Genväg till CA-certifikat"
 
@@ -570,40 +549,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Ladda om"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -611,7 +595,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -620,36 +604,36 @@ msgid "Run once"
 msgstr "Kör en gång"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Igång"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Skript"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Tjänster"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -657,11 +641,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -675,15 +659,15 @@ msgstr ""
 msgid "State"
 msgstr "Status"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Stopp"
 
@@ -691,7 +675,7 @@ msgstr "Stopp"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -699,19 +683,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "Stoppad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -719,7 +703,13 @@ 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:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -730,24 +720,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "Webbadress att upptäcka"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Okänd"
@@ -756,35 +746,35 @@ msgstr "Okänd"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Använd Säker HTTP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Använd cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Användarnamn"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -792,89 +782,84 @@ msgstr ""
 msgid "Verify"
 msgstr "Verkställ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Varning"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL utan Proxy-stöd"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "anpassad"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "dagar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "timmar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "eller"
 
@@ -882,15 +867,21 @@ msgstr "eller"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 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 "Checking the service support..."
+#~ msgstr "Kontrollerar service-stödet..."
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Påtvingad IP-version stöds inte"
+
 #~ msgid ""
 #~ "It is NOT recommended for casual users to change settings on this page."
 #~ msgstr ""
index 228b34de04d5da07ee4aa46ee45a9975dff623ea..047489e48a0913def079cc1a1c989fa3c51e912a 100644 (file)
@@ -1,32 +1,32 @@
 msgid ""
 msgstr "Content-Type: text/plain; charset=UTF-8"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr ""
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -34,73 +34,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -109,15 +98,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -131,8 +120,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -140,50 +129,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -197,85 +175,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -293,63 +267,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -357,196 +331,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -555,40 +534,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -596,7 +580,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -605,36 +589,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -642,11 +626,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -660,15 +644,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -676,7 +660,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -684,19 +668,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -704,7 +688,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -715,24 +705,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -741,35 +731,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -777,89 +767,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -867,11 +852,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index b9fae9e606e7406b76f1dac37fed19cf9261f40c..90dd8410be02422bb68847b56e5035076d156f20 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.5-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "Güvenlik nedeniyle yol içerisinde \"../\" öğesine izin verilmez."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Yeni hizmetler ekle..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Gelişmiş Ayarlar"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Genel olmayan IP'lere izin ver"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Temel Ayarlar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Ağı Bağla"
 
@@ -46,23 +46,15 @@ msgstr "Ağı Bağla"
 msgid "Binding to a specific network not supported"
 msgstr "Belirli bir ağa bağlanma desteklenmez"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the 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:381
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Ca Sertifikaları yolu"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,45 +74,40 @@ 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "İptal"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Kontrol etme aralığı"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Kontrol Ünitesi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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 "Yapılandırma"
 
 #: 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:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Yapılandırma hatası"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 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:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:548
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:536
 msgid "Create service"
 msgstr "Hizmet oluştur"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Şimdiki ayar:"
 
@@ -131,17 +118,17 @@ 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script 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:705
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:692
 msgid "Custom update-URL"
 msgstr "Özel güncelleme URL'si"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Özel güncelleme betiği"
 
@@ -155,8 +142,8 @@ msgstr "DDNS Otomatik Başlatma devre dışı"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS Otomatik Başlatma etkin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS Servis sağlayıcısı"
 
@@ -164,53 +151,39 @@ msgstr "DDNS Servis sağlayıcısı"
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDns Hizmeti"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "TCP üzerinden DNS istekleri desteklenmez"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Dns sunucusu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Tarih formatı"
 
-#: 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Sistemin IP Adresini okuyacak arayüzü tanımlar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Sistemin IP Adresini okuyacak ağı tanımlar"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Devre dışı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Alan"
 
@@ -224,85 +197,81 @@ msgstr "Dinamik DNS"
 msgid "Dynamic DNS Version"
 msgstr "Dinamik DNS Sürümü"
 
-#: 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:545
 msgid "Edit"
 msgstr "Düzenle"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 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:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Etkinleştirildi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Hata"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "Hata Azami Yeniden Deneme Sayacı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Yeniden Deneme Hatası Aralığı"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Etkinlik Ağı"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "IPv4 için örnek"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "IPv6 için örnek"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Dosya"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found 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:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Desteklenen kodlar için buraya bakın"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "IP Sürümünü Zorla"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "IP Sürümünü Zorla desteklenmiyor"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Zorlama Aralığı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "DNS üzerinde TCP'yi zorla"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Zorlama Birimi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Biçim"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Biçim: IP veya FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -322,44 +291,44 @@ msgstr "DDNS prosedürlerine erişim izni verin"
 msgid "HTTPS not supported"
 msgstr "HTTPS desteklenmiyor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is 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:800
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:791
 msgid "IP address source"
 msgstr "IP adresi kaynağı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP adresi sürümü"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4 Adresi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "IPv6 adresi köşeli parantez içinde verilmelidir"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "IPv6 şu anda bu sistem tarafından (tam olarak) desteklenmemektedir"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 desteklenmiyor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6 Adresi"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -367,24 +336,24 @@ 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will 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:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 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:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Bilgi"
 
@@ -392,12 +361,15 @@ msgstr "Bilgi"
 msgid "Information"
 msgstr "Bilgi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-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:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP 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:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -405,199 +377,203 @@ 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 msgstr "Hizmeti yükleyin"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Arayüz"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the 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:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "DDNS Sağlayıcısına gönderilen güncellemeleri zorlamak için aralık birimi."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 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:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Son Güncelleme"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Günlük Dosyası Görüntüleyicisi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Günlük dizini"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Günlük uzunluğu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Günlüğü dosyaya yaz"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Günlüğü syslog'a yaz"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Ana Makine Adı Ara"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Ad"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is 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:620
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:608
 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:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "DDns güncelleyici komut dosyalarının başlatılacağı ağ"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Asla"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Yeni DDns Hizmeti…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Sonraki Güncelleme"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Veri Yok"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Sertifika bulunamadı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Günlük kaydı yok"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Herkese açık olmayan ve varsayılan olarak engellenen IP'ler"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Çalışmıyor"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Uyarı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 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:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "İSTEĞE BAĞLI: İletişim için kullanılacak ağ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 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:919
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Hata durumunda, verilen yeniden deneme sayısından sonra betik yürütmeyi "
 "durduracaktır."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "İsteğe Bağlı Kodlanmış Parametre"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Opsiyonel Parametre"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Proxy sunucu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Şifre"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "CA-Sertifikası'nın Yolu"
 
@@ -608,40 +584,45 @@ 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:1082
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071
 msgid "Please press [Read] button"
 msgstr "Lütfen [Oku] düğmesine basın"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+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:1054
 msgid "Read / Reread log file"
 msgstr "Günlük dosyasını oku / yeniden oku"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Gerçekten hizmet değiştirilsin mi?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "Kayıtlı IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Yeniden yükle"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Bu hizmeti yeniden yükleyin"
 
-#: 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:733
 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:754
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Güncelleme URL'sindeki [ŞİFRE] 'yi değiştirir (URL kodlu)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Güncelleme URL'sindeki [KULLANICI ADI] 'nı değiştirir (URL kodlu)"
 
@@ -649,7 +630,7 @@ msgstr "Güncelleme URL'sindeki [KULLANICI ADI] 'nı değiştirir (URL kodlu)"
 msgid "Restart DDns"
 msgstr "DDns'yi yeniden başlatın"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Yeniden Deneme Birimi"
 
@@ -658,36 +639,36 @@ msgid "Run once"
 msgstr "Bir kere çalıştır"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Çalışı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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Betik"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Bir hizmet seçin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 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:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Hizmet yüklü değil"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Hizmetler"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "Hizmetin URL'sini İndirme"
 
@@ -695,13 +676,13 @@ msgstr "Hizmetin URL'sini İndirme"
 msgid "Services list last update"
 msgstr "Servis listesi son güncelleme"
 
-#: 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -717,15 +698,15 @@ msgstr "DDNS'yi başlatın"
 msgid "State"
 msgstr "Durum"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Durum dizini"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Durdur"
 
@@ -733,7 +714,7 @@ msgstr "Durdur"
 msgid "Stop DDNS"
 msgstr "DDNS'yi durdur"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Bu hizmeti durdur"
 
@@ -741,19 +722,19 @@ msgstr "Bu hizmeti durdur"
 msgid "Stopped"
 msgstr "Durduruldu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Hizmeti değiştir"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Varsayılan '0' ayarı sonsuz olarak yeniden deneyecektir."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Her ardışık yeniden denemenin başlayacağı aralık."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Hizmet adı zaten kullanılıyor"
 
@@ -761,7 +742,13 @@ msgstr "Hizmet adı zaten kullanılıyor"
 msgid "There is no service configured."
 msgstr "Yapılandırılmış hizmet yok."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Bu, bu hizmet için günlük dosyasının %h içindeki geçerli içeriğidir."
 
@@ -774,24 +761,24 @@ 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:887
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:878
 msgid "This will be autoset to the selected interface"
 msgstr "Bu, seçilen arayüze otomatik olarak ayarlanacaktır"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Zamanlayıcı Ayarları"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "Algılanacak URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Bilinmiyor"
@@ -800,35 +787,35 @@ msgstr "Bilinmiyor"
 msgid "Update DDns Services List"
 msgstr "DDns Hizmetleri Listesini Güncelle"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL 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:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Güvenli HTTP kullan"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "cURL kullan"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 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:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Kullanıcı adı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Özel DNS Sunucusunun kullanılması desteklenmez"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr "5 dakika == 300 saniyenin altındaki değerler desteklenmez"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "\"0\" dışındaki \"Kontrol Aralığı\" altındaki değerler desteklenmez"
 
@@ -836,28 +823,34 @@ msgstr "\"0\" dışındaki \"Kontrol Aralığı\" altındaki değerler desteklen
 msgid "Verify"
 msgstr "Doğrula"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Uyarı"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+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:1044
 msgid "Which time units to use for retry counters."
 msgstr "Yeniden deneme sayaçları için hangi zaman birimlerinin kullanılacağı."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -866,18 +859,6 @@ msgstr ""
 "'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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr "'Wget' veya 'curl' veya 'uclient-fetch' paketini kurmalısınız."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -886,50 +867,50 @@ 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "'Wget' veya 'curl' paketini kurmalısınız."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr "cURL yüklendi, ancak libcurl proxy desteği olmadan derlendi."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "Proxy Desteği olmadan cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "özel"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "gün"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "dizin veya yol/dosya"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "saat"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "dakika"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "veya"
 
@@ -937,17 +918,40 @@ msgstr "veya"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "veya sisteminizi en son OpenWrt Sürümüne güncelleyin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "saniye"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 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 "Checking the service support..."
+#~ msgstr "Servis desteği kontrol ediliyor..."
+
+#~ 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"
+
+#~ 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!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "IP Sürümünü Zorla desteklenmiyor"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "'Wget' veya 'curl' veya 'uclient-fetch' paketini kurmalısınız."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Yeniden Deneme Hatası Sayacı"
 
index 684254bfe266b2221e15699f35df3bffa7fb885f..8cb4a681f3a115c2036cb9794ccbcfd087fe1f79 100644 (file)
@@ -16,32 +16,32 @@ msgstr ""
 "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: Weblate 5.8-rc\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "Використання «../» на шляху не дозволяється з міркувань безпеки."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Додати новий сервіс..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Розширені налаштування"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Дозволити не публічні IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Базові налаштування"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Привʼязати мережу"
 
@@ -49,75 +49,62 @@ msgstr "Привʼязати мережу"
 msgid "Binding to a specific network not supported"
 msgstr "Прив’язка до певної мережі не підтримується"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Шлях до CA сертифікатів"
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Скасувати"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr "Елемент перевірки"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Помилка конфігурації"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "Поточні налаштування:"
 
@@ -128,17 +115,17 @@ msgstr ""
 "Наразі оновлення DDNS не запускаються при завантаженні або за подіями "
 "інтерфейсу."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Користувацький скрипт оновлення, який буде використовуватися для оновлення "
 "вашого постачальника DDNS."
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "Користувацький URL оновлення"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "Користувацький скрипт оновлення"
 
@@ -152,8 +139,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -161,50 +148,39 @@ msgstr ""
 msgid "DDns"
 msgstr "DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS сервер"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "Вимкнено"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Домен"
 
@@ -218,85 +194,81 @@ msgstr "Динамічний DNS"
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr "Редагувати"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Увімкнено"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Помилка"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Файл"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Формат"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -314,63 +286,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr "HTTPS не підтримується"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr "IP адреса джерела"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Версія IP адреси"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Адреса IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 не підтримується"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Адреса IPv6"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Інформація"
 
@@ -378,196 +350,201 @@ msgstr "Інформація"
 msgid "Information"
 msgstr "Інформація"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Інтерфейс"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Директорія для звіту"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Назва"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Ніколи"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Зауваження"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Пароль"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Шлях до сертифіката CA"
 
@@ -576,40 +553,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Перезавантажити"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -617,7 +599,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -626,36 +608,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Сервіси"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -663,11 +645,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -681,15 +663,15 @@ msgstr ""
 msgid "State"
 msgstr "Штат"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Зупинити"
 
@@ -697,7 +679,7 @@ msgstr "Зупинити"
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -705,19 +687,19 @@ msgstr ""
 msgid "Stopped"
 msgstr "Зупинено"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -725,7 +707,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -736,24 +724,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Невідомо"
@@ -762,35 +750,35 @@ msgstr "Невідомо"
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Ім'я користувача"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -798,89 +786,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Застереження"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "днів"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "годин"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "або"
 
@@ -888,15 +871,25 @@ msgstr "або"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Перевірка підтримки сервісу..."
+
+#~ 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!"
+
 #~ msgid "Global Configuration"
 #~ msgstr "Глобальні налаштування"
 
index 9a257de63b2e909ac21be30ae32868be0aabd9f4..bc685d90137fad7ed9d444193adf22261ee39673 100644 (file)
@@ -13,32 +13,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "\"../\" không được phép trong đường dẫn vì lý do bảo mật."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "Thêm dịch vụ mới..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "Cài đặt Nâng cao"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "Cho phép IP không công khai"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "Cài đặt cơ bản"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "Ràng buộc mạng"
 
@@ -46,23 +46,15 @@ msgstr "Ràng buộc mạng"
 msgid "Binding to a specific network not supported"
 msgstr "Không hỗ trợ ràng buộc vào một mạng cụ thể"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
-msgstr ""
-"nslookup và wget trên BusyBox không hỗ trợ để chỉ định phiên bản IP để sử "
-"dụng cho việc giao tiếp với nhà cung cấp dịch vụ 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:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "nslookup và hostip trên BusyBox không hỗ trợ để chỉ định cho việc sử dụng "
 "TCP thay vì mặc định là UDP khi yêu cầu máy chủ DNS!"
 
-#: 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:372
 msgid ""
 "BusyBox's nslookup in the current compiled version does not handle given DNS "
 "Servers correctly!"
@@ -70,11 +62,11 @@ msgstr ""
 "Phiên bản nslookup hiện tại trên BusyBox không xử lý các máy chủ DNS chính "
 "xác!"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Đường dẫn Ca Certs"
 
-#: 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:444
 msgid ""
 "CA certificates path that will be used to download services data. Set IGNORE "
 "to skip certificate validation."
@@ -82,45 +74,40 @@ msgstr ""
 "Đường dẫn Ca Certs sẽ được sử dụng để tải dữ liệu dịch vụ. Đặt IGNORE để bỏ "
 "qua xác thực chứng chỉ."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "Hủy lệnh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 msgstr "Kiểm tra khoảng thời gian"
 
-#: 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:981
 msgid "Check Unit"
 msgstr "Kiểm tra đơn vị"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-msgid "Checking the service support..."
-msgstr "Đang kiểm tra hỗ trợ dịch vụ..."
-
 #: 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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "Lỗi cấu hình"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "Thư mục chứa các tệp Log cho mỗi phần đang chạy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr "Thư mục chứa PID và thông tin trạng thái khác cho mỗi phần đang chạy."
 
-#: 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:536
 msgid "Create service"
 msgstr "Tạo dịch vụ"
 
-#: 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:405
 msgid "Current setting:"
 msgstr "Cài đặt hiện tại:"
 
@@ -131,17 +118,17 @@ msgstr ""
 "Hiện tại, các cập nhật DDNS không được bắt đầu khi khởi động hoặc sự kiện "
 "giao diện."
 
-#: 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:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr ""
 "Kịch bản cập nhật tùy chỉnh được sử dụng để cập nhật Nhà cung cấp DDNS của "
 "bạn."
 
-#: 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:692
 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:724
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:710
 msgid "Custom update-script"
 msgstr "Kịch bản cập nhật tùy chỉnh"
 
@@ -155,8 +142,8 @@ msgstr "Tắt tự động khởi động DDNS"
 msgid "DDNS Autostart enabled"
 msgstr "Bật tự động khởi động DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "Nhà cung cấp dịch vụ DDNS"
 
@@ -164,52 +151,39 @@ msgstr "Nhà cung cấp dịch vụ DDNS"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "Dịch vụ DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "Không hỗ trợ yêu cầu DNS qua TCP"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "Máy chủ DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 msgstr "Định dạng ngày tháng"
 
-#: 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr "Xác định trang Web để đọc địa chỉ IP của hệ thống từ."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "Xác định giao diện để đọc địa chỉ IP của hệ thống từ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "Xác định mạng để đọc địa chỉ IP của hệ thống từ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-msgid ""
-"Defines the source to read systems IP-Address from, that will be send to the "
-"DDNS provider"
-msgstr ""
-"Xác định nguồn để đọc địa chỉ IP của hệ thống từ, sẽ được gửi đến nhà cung "
-"cấp DDNS"
-
-#: 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:635
-msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
-msgstr "Xác định địa chỉ IP 'IPv4/IPv6' nào được gửi đến nhà cung cấp DDNS"
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17
 msgid "Disabled"
 msgstr "Vô hiệu hoá"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "Tên Miền"
 
@@ -223,85 +197,81 @@ msgstr "Dynamic DNS"
 msgid "Dynamic DNS Version"
 msgstr "Phiên bản Dynamic DNS"
 
-#: 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:545
 msgid "Edit"
 msgstr "Chỉnh Sửa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "Kích hoạt giao tiếp an toàn với nhà cung cấp DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "Kích Hoạt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "Lỗi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "Khoảng thời gian thử lại lỗi"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 msgstr "Mạng sự kiện"
 
-#: 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:840
 msgid "Example for IPv4"
 msgstr "Ví dụ cho IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "Ví dụ cho IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "Tệp"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "Theo hướng dẫn bạn sẽ tìm thấy trên trang WEB của họ."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "Để xem các mã được hỗ trợ, hãy xem ở đây"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "Bắt buộc Phiên bản IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "Bắt buộc Phiên bản IP không được hỗ trợ"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "Khoảng thời gian bắt buộc"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "Bắt buộc sử dụng TCP trên DNS"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "Đơn vị bắt buộc"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "Định dạng"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "Định dạng: IP hoặc FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -320,42 +290,42 @@ msgstr "Cấp quyền tru cập cho phương thức ddns"
 msgid "HTTPS not supported"
 msgstr "Không hỗ trợ HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "Tên máy/FQDN để xác nhận, nếu cập nhật IP xảy ra hoặc cần thiết"
 
-#: 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:791
 msgid "IP address source"
 msgstr "Nguồn địa chỉ IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "Phiên bản địa chỉ IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "Địa chỉ IPv4"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "Địa chỉ IPv6 phải được đặt trong dấu ngoặc vuông"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "Hiện tại hệ thống này không hỗ trợ IPv6 (hoàn toàn)"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "Không hỗ trợ IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "Địa chỉ IPv6"
 
-#: 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:436
 msgid ""
 "If Wget and cURL package are installed, Wget is used for communication by "
 "default."
@@ -363,24 +333,24 @@ msgstr ""
 "Nếu đã cài đặt gói Wget và cURL, Wget sẽ được sử dụng cho giao tiếp theo mặc "
 "định."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "Nếu phần dịch vụ này bị tắt, nó không thể được khởi động."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr "Nếu sử dụng giao tiếp an toàn, bạn nên xác minh chứng chỉ máy chủ!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 msgid ""
 "In some versions cURL/libcurl in OpenWrt is compiled without proxy support."
 msgstr ""
 "Trong một số phiên bản, cURL/libcurl trên OpenWrt được biên dịch mà không có "
 "hỗ trợ proxy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "Thông tin"
 
@@ -388,12 +358,15 @@ msgstr "Thông tin"
 msgid "Information"
 msgstr "Thông Tin"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "Chèn một Kịch bản Cập nhật HOẶC một URL Cập nhật"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"Bạn nên cài đặt gói 'bind-host' hoặc 'knot-host' hoặc 'drill' cho các yêu "
+"cầu DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 msgid ""
 "Install 'ca-certificates' package or needed certificates by hand into /etc/"
 "ssl/certs default directory"
@@ -401,195 +374,199 @@ msgstr ""
 "Cài đặt gói 'ca-certificates' hoặc cần bỏ chứng thư bằng tay vào thư mục mặc "
 "định /etc/ssl/certs"
 
-#: 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:662
 msgid "Install Service"
 msgstr "Cài đặt Dịch vụ"
 
-#: 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "Giao diện"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "Khoảng thời gian để gửi cập nhật bắt buộc đến Nhà cung cấp DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 "Đơn vị khoảng thời gian để gửi cập nhật bắt buộc đến Nhà cung cấp DDNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "Đơn vị khoảng thời gian để kiểm tra IP đã thay đổi"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 msgstr "Cập nhật cuối cùng"
 
-#: 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:602
 msgid "Log File Viewer"
 msgstr "Trình xem Tệp Nhật ký"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "Thư mục nhật ký"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "Độ dài nhật ký"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "Lưu nhật ký vào tệp"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "Log to syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:29
 msgid "Lookup Hostname"
 msgstr "Tra cứu Tên máy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "Tên"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 "Không cài đặt GNU Wget với SSL hoặc cURL để chọn một mạng để sử dụng cho "
 "giao tiếp."
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "Không cài đặt GNU Wget với SSL hoặc cURL để hỗ trợ cập nhật an toàn qua giao "
 "thức HTTPS."
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "Không từ giao diện LuCI cũng không từ bảng điều khiển."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:31
 msgid "Network"
 msgstr "Mạng"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr "Mạng mà các kịch bản ddns-updater sẽ được khởi động"
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "Không bao giờ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "Dịch vụ DDns mới…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:28
 msgid "Next Update"
 msgstr "Cập nhật tiếp theo"
 
 #: 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:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:40
 msgid "No Data"
 msgstr "Không có dữ liệu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "Không tìm thấy chứng chỉ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "Không có nhật ký"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "Địa chỉ IP không công khai và bị chặn theo mặc định"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "Không Chạy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "Lưu ý"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "Số dòng cuối cùng được lưu trữ trong tệp nhật ký"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr "TÙY CHỌN: Bắt buộc sử dụng giao tiếp chỉ với IPv4/IPv6."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests."
 msgstr ""
 "TÙY CHỌN: Bắt buộc sử dụng giao thức TCP thay vì UDP mặc định cho yêu cầu "
 "DNS."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "TÙY CHỌN: Mạng để sử dụng cho giao tiếp"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "TÙY CHỌN: Máy chủ Proxy để phát hiện và cập nhật."
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 "TÙY CHỌN: Sử dụng DNS-Server không mặc định để phát hiện 'IP đã đăng ký'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 "Khi xảy ra Lỗi, tập lệnh sẽ dừng thực thi sau một số lần thử nhất định."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "Tham số Tùy chọn đã Mã hóa"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "Tham số Tùy chọn"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr "Tùy chọn: Thay thế [PARAMENC] trong Địa chỉ URL Cập nhật (Mã hóa URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 "Tùy chọn: Thay thế [PARAMOPT] trong Địa chỉ URL Cập nhật (KHÔNG mã hóa URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "Máy chủ PROXY"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "Mật khẩu"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "Đường dẫn đến Chứng chỉ CA"
 
@@ -600,40 +577,45 @@ msgstr ""
 "Vui lòng làm theo hướng dẫn trên trang chủ của OpenWrt để bật chế độ hỗ trợ "
 "IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1082
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1071
 msgid "Please press [Read] button"
 msgstr "Vui lòng nhấn nút [Đọc]"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "Chèn một Kịch bản Cập nhật HOẶC một URL Cập nhật"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
 msgid "Read / Reread log file"
 msgstr "Đọc / Đọc lại tệp nhật ký"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "Thật sự chuyển dịch vụ?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/status/include/70_ddns.js:30
 msgid "Registered IP"
 msgstr "IP Đã Đăng ký"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "Tải lại"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 msgstr "Tải lại dịch vụ này"
 
-#: 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "Thay thế [DOMAIN] trong Địa chỉ URL Cập nhật (Mã hóa URL)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "Thay thế [PASSWORD] trong Địa chỉ URL Cập nhật (Mã hóa URL)"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "Thay thế [USERNAME] trong Địa chỉ URL Cập nhật (Mã hóa URL)"
 
@@ -641,7 +623,7 @@ msgstr "Thay thế [USERNAME] trong Địa chỉ URL Cập nhật (Mã hóa URL)
 msgid "Restart DDns"
 msgstr "Khởi động lại DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "Đơn vị Thử lại"
 
@@ -650,36 +632,36 @@ msgid "Run once"
 msgstr "Chạy một lần"
 
 #: 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "Running"
 msgstr "Đang chạy"
 
-#: 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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "Kịch bản"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "Chọn một dịch vụ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "Dịch vụ không hỗ trợ loại IP này"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "Dịch vụ chưa được cài đặt"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "Các dịch vụ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "URL Tải về Dịch vụ"
 
@@ -687,11 +669,11 @@ msgstr "URL Tải về Dịch vụ"
 msgid "Services list last update"
 msgstr "Cập nhật cuối cùng danh sách Dịch vụ"
 
-#: 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:993
 msgid "Setting this parameter to 0 will force the script to only run once"
 msgstr "Thiết lập tham số này thành 0 sẽ bắt buộc tập lệnh chỉ chạy một lần"
 
-#: 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:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -707,15 +689,15 @@ msgstr "Khởi động DDNS"
 msgid "State"
 msgstr "Trạng thái"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1103
 msgid "Status"
 msgstr "Trạng thái"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "Thư mục Trạng thái"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "Dừng"
 
@@ -723,7 +705,7 @@ msgstr "Dừng"
 msgid "Stop DDNS"
 msgstr "Dừng DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "Dừng dịch vụ này"
 
@@ -731,19 +713,19 @@ msgstr "Dừng dịch vụ này"
 msgid "Stopped"
 msgstr "Đã dừng"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "Chuyển dịch vụ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "Thiết lập mặc định là '0' sẽ thử lại vô hạn."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "Khoảng thời gian mà mỗi lần thử lại liên tiếp sẽ bắt đầu."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "Tên dịch vụ đã được sử dụng"
 
@@ -751,7 +733,13 @@ msgstr "Tên dịch vụ đã được sử dụng"
 msgid "There is no service configured."
 msgstr "Không có dịch vụ nào được cấu hình."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "Đây là nội dung hiện tại của tệp nhật ký trong %h cho dịch vụ này."
 
@@ -764,24 +752,24 @@ msgstr ""
 "Đây là mặc định nếu bạn chạy các tập lệnh DDNS bằng chính mình (tức là thông "
 "qua cron với force_interval được đặt thành '0')"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "Điều này sẽ được tự động thiết lập cho giao diện đã chọn"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 msgstr "Cài đặt hẹn giờ"
 
-#: 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "URL để phát hiện"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "Không xác định"
@@ -790,35 +778,35 @@ msgstr "Không xác định"
 msgid "Update DDns Services List"
 msgstr "Cập nhật Danh sách Dịch vụ DDns"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "Cập nhật URL được sử dụng để cập nhật Nhà cung cấp DDNS của bạn."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "Sử dụng HTTP Bảo mật"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "Sử dụng cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "Kịch bản xác định người dùng để đọc Địa chỉ IP của hệ thống"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "Tên người dùng"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "Không hỗ trợ sử dụng máy chủ DNS cụ thể"
 
-#: 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr "Không hỗ trợ giá trị dưới 5 phút == 300 giây"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "Không hỗ trợ giá trị thấp hơn 'Check Interval' trừ '"
 
@@ -826,20 +814,25 @@ msgstr "Không hỗ trợ giá trị thấp hơn 'Check Interval' trừ '"
 msgid "Verify"
 msgstr "Xác minh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "Cảnh báo"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "Xác định địa chỉ IP 'IPv4/IPv6' nào được gửi đến nhà cung cấp DDNS"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "Các đơn vị thời gian nào được sử dụng cho bộ đếm thử lại."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 msgid ""
 "Writes detailed messages to log file. File will be truncated automatically."
 msgstr "Ghi thông điệp chi tiết vào tệp nhật ký. Tệp sẽ tự động bị cắt."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
@@ -847,7 +840,7 @@ msgstr ""
 "Ghi thông điệp nhật ký vào syslog. Lỗi nghiêm trọng sẽ luôn được ghi vào "
 "syslog."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -855,18 +848,6 @@ msgstr ""
 "Bạn nên cài đặt gói 'bind-host' hoặc 'knot-host' hoặc 'drill' hoặc 'hostip' "
 "nếu bạn cần chỉ định máy chủ DNS để phát hiện Địa chỉ IP đã đăng ký của bạn."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-msgid ""
-"You should install 'bind-host' or 'knot-host' or 'drill' package for DNS "
-"requests."
-msgstr ""
-"Bạn nên cài đặt gói 'bind-host' hoặc 'knot-host' hoặc 'drill' cho các yêu "
-"cầu DNS."
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr "Bạn nên cài đặt gói 'wget' hoặc 'curl' hoặc 'uclient-fetch'."
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -875,50 +856,50 @@ msgstr ""
 "Bạn nên cài đặt gói 'wget' hoặc 'curl' hoặc 'uclient-fetch' với gói "
 "'libustream-*ssl'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "Bạn nên cài đặt gói 'wget' hoặc 'curl'."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 msgid ""
 "You should install 'wget' or 'uclient-fetch' package or replace libcurl."
 msgstr "Bạn nên cài đặt gói 'wget' hoặc 'uclient-fetch' hoặc thay thế libcurl."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 "cURL đã được cài đặt, nhưng libcurl đã được biên dịch mà không có hỗ trợ "
 "proxy."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL không có Hỗ trợ Proxy"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "tùy chỉnh"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "ngày"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "thư mục hoặc đường dẫn/tệp"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "giờ"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1048
 msgid "minutes"
 msgstr "phút"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "hoặc"
 
@@ -926,15 +907,38 @@ msgstr "hoặc"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "hoặc cập nhật hệ thống của bạn lên phiên bản OpenWrt mới nhất"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1047
 msgid "seconds"
 msgstr "Giây"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "để chạy HTTPS mà không xác minh chứng chỉ máy chủ (không an toàn)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "Đang kiểm tra hỗ trợ dịch vụ..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr ""
+#~ "Xác định nguồn để đọc địa chỉ IP của hệ thống từ, sẽ được gửi đến nhà "
+#~ "cung cấp DDNS"
+
+#~ msgid ""
+#~ "BusyBox's nslookup and Wget do not support to specify the IP version to "
+#~ "use for communication with DDNS Provider!"
+#~ msgstr ""
+#~ "nslookup và wget trên BusyBox không hỗ trợ để chỉ định phiên bản IP để sử "
+#~ "dụng cho việc giao tiếp với nhà cung cấp dịch vụ DDNS!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "Bắt buộc Phiên bản IP không được hỗ trợ"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "Bạn nên cài đặt gói 'wget' hoặc 'curl' hoặc 'uclient-fetch'."
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "Bộ đếm thử lại lỗi"
 
index 7303b64691992b8628c33a51a2d60e64aaa2c4e0..30157af6c415227e6cc364b653417c6def27cf4a 100644 (file)
@@ -4,32 +4,32 @@ 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:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr ""
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr ""
 
@@ -37,73 +37,62 @@ msgstr ""
 msgid "Binding to a specific network not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr ""
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr ""
 
@@ -112,15 +101,15 @@ msgstr ""
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 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:692
 msgid "Custom update-URL"
 msgstr ""
 
-#: 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:710
 msgid "Custom update-script"
 msgstr ""
 
@@ -134,8 +123,8 @@ msgstr ""
 msgid "DDNS Autostart enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr ""
 
@@ -143,50 +132,39 @@ msgstr ""
 msgid "DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr ""
 
-#: 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:909
 msgid "DNS-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 msgid "Defines the Web page to read systems IP-Address from."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr ""
 
@@ -200,85 +178,81 @@ msgstr ""
 msgid "Dynamic DNS Version"
 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:545
 msgid "Edit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr ""
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr ""
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 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:1016
 msgid "Force Unit"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr ""
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -296,63 +270,63 @@ msgstr ""
 msgid "HTTPS not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 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:791
 msgid "IP address source"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr ""
 
@@ -360,196 +334,201 @@ msgstr ""
 msgid "Information"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is installed to select a network to use "
+"for communication."
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 msgid "Network on which the ddns-updater scripts will be started"
 msgstr ""
 
 #: 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:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr ""
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr ""
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 msgid "OPTIONAL: Force the usage of pure IPv4/IPv6 only communication."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr ""
 
-#: 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:910
 msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr ""
 
@@ -558,40 +537,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr ""
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr ""
 
@@ -599,7 +583,7 @@ msgstr ""
 msgid "Restart DDns"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr ""
 
@@ -608,36 +592,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr ""
 
@@ -645,11 +629,11 @@ msgstr ""
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -663,15 +647,15 @@ msgstr ""
 msgid "State"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr ""
 
@@ -679,7 +663,7 @@ msgstr ""
 msgid "Stop DDNS"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr ""
 
@@ -687,19 +671,19 @@ msgstr ""
 msgid "Stopped"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr ""
 
@@ -707,7 +691,13 @@ msgstr ""
 msgid "There is no service configured."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr ""
 
@@ -718,24 +708,24 @@ msgid ""
 "force_interval set to '0')"
 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:878
 msgid "This will be autoset to the selected interface"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr ""
@@ -744,35 +734,35 @@ msgstr ""
 msgid "Update DDns Services List"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 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:975
 msgid "Values below 5 minutes == 300 seconds are not supported"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr ""
 
@@ -780,89 +770,84 @@ msgstr ""
 msgid "Verify"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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:373
-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:361
-msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
-msgstr ""
-
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 msgid "cURL is installed, but libcurl was compiled without proxy support."
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr ""
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr ""
 
@@ -870,11 +855,11 @@ msgstr ""
 msgid "or update your system to the latest OpenWrt Release"
 msgstr ""
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr ""
index d8e91cd0fe0e5a6a470337b9cdd2bf03b96631fa..fd4719ed31ea1018671b84ea45a7e3a020a79ab0 100644 (file)
@@ -16,32 +16,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.8-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "基于安全原因路径中不允许含有 \"../\" 。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "也称为 TOKEN,例如在 afraid.org 上"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "添加新服务..."
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "高级设置"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "允许非公网 IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "基本设置"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "使用的接口"
 
@@ -49,75 +49,64 @@ msgstr "使用的接口"
 msgid "Binding to a specific network not supported"
 msgstr "不支持绑定到一个指定的网络"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
-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:370
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and hostip do not support to specify to use TCP instead "
-"of default UDP when requesting DNS server!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
 "向 DNS 服务器查询时,BusyBox 的 nslookup 和 hostip 不支持使用 TCP ,而是使用"
 "默认的 UDP!"
 
-#: 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "Ca 证书路径"
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "取消"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr "检查时间单位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "配置错误"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "用于存放各个项目运行日志的的目录。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr "用于存放各个项目运行时的PID和其他状态信息的目录。"
 
-#: 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "当前配置:"
 
@@ -126,15 +115,15 @@ msgstr "当前配置:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr "用来更新 DDNS 的自定义脚本。"
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "自定义更新 URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "自定义更新脚本"
 
@@ -148,8 +137,8 @@ msgstr "DDNS 已禁止自动运行"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS 已开启自动运行"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS 服务提供商"
 
@@ -157,50 +146,39 @@ msgstr "DDNS 服务提供商"
 msgid "DDns"
 msgstr "动态DNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "动态DNS 服务项"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "不支持使用 TCP 进行 DNS 解析"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS-服务器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "设定用于读取系统 IP 地址的接口"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "设定用于读取系统 IP 地址的网络"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-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:17
 msgid "Disabled"
 msgstr "已禁用"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "域名"
 
@@ -214,85 +192,81 @@ msgstr "动态 DNS"
 msgid "Dynamic DNS Version"
 msgstr "动态 DNS 版本"
 
-#: 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:545
 msgid "Edit"
 msgstr "编辑"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "与 DDNS 提供商通信时使用安全连接"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "已启用"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "错误"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "出错时最大重试次数"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "错误重试间隔"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr "IPv4 的例子"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "IPv6 的例子"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "文件"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "按照网页上的说明操作。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "查看这里获取支持的编码"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "强制设定 IP 版本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "不支持强制设定 IP 版本"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "强制更新的周期"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "强制使用 TCP 进行 DNS 查询"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "强制更新单位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "格式"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "格式:IP 或者 FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -310,63 +284,63 @@ msgstr "授予访问 DDNS 程序的权限"
 msgid "HTTPS not supported"
 msgstr "不支持 HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "IP发生更新或需要更新时,用于验证的 主机名 / FQDN"
 
-#: 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:791
 msgid "IP address source"
 msgstr "IP 地址来源"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP 地址版本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4 地址"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "IPv6 地址必须填写在中括号(\"[ ]\")内"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "该系统当前不(完全)支持IPv6"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "IPv6 不被支持"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6 地址"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "如果禁用此服务项,则不会启动。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr "如果使用安全通信,您应该验证服务器证书!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "信息"
 
@@ -374,199 +348,204 @@ msgstr "信息"
 msgid "Information"
 msgstr "信息"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "插入更新脚本或更新 URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr "您应该为 DNS 请求安装“bind-host”或“knot-host”或“drill”软件包。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "接口"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "强制向 DDNS 提供商进行更新的间隔"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "强制发送更新到 DDNS 提供商的间隔单位。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "检查 IP 变更间隔的单位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr "日志查看器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "日志目录"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "日志长度"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "把日志记录到文件"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "记录日志到 syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "名称"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
 msgstr ""
 "包含 SSL 支持的 GNU Wget 或者 cURL 均未安装,无法通过 HTTPS 协议进行安全的更"
 "新。"
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "无论是从 LuCI 界面还是从控制台。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "永不"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "新建 DDNS 服务项…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "找不到证书"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "不记录"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "非公网 IP 以及默认被屏蔽的 IP"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "未在运行"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "注意"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "日志文件中的最后几行"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "可选:用于通信的网络"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "可选:用于检测以及更新的代理服务器。"
 
-#: 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:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr "出现错误时,脚本将在重试给定次数后停止执行。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "可选编码参数"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "可选参数"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)"
 msgstr "可选:替换更新 URL(未编码 URL)中的 [PARAMOPT]"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "代理服务器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "密码"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "CA 证书路径"
 
@@ -575,40 +554,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "插入更新脚本或更新 URL"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "确认切换服务?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "重新加载"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "替换更新 URL 中的 [DOMAIN] (已编码 URL)"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "替换更新 URL(已编码 URL)中的 [PASSWORD]"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "替换更新 URL(已编码 URL)中的 [USERNAME]"
 
@@ -616,7 +600,7 @@ msgstr "替换更新 URL(已编码 URL)中的 [USERNAME]"
 msgid "Restart DDns"
 msgstr "重启 DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "重试时间单位"
 
@@ -625,36 +609,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "脚本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "选择服务"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "服务不支持此 ip 类型"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "服务未安装"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "服务"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "服务下载网址"
 
@@ -662,11 +646,11 @@ msgstr "服务下载网址"
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -680,15 +664,15 @@ msgstr "运行 DDNS"
 msgid "State"
 msgstr "状态"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "状态目录"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "停止"
 
@@ -696,7 +680,7 @@ msgstr "停止"
 msgid "Stop DDNS"
 msgstr "停止 DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "停止这个服务"
 
@@ -704,19 +688,19 @@ msgstr "停止这个服务"
 msgid "Stopped"
 msgstr "已停止"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "切换服务"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "默认设置“0”将无限重试。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "发起连续重试之间相隔的时长。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "这个服务项名称已经被使用"
 
@@ -724,7 +708,13 @@ msgstr "这个服务项名称已经被使用"
 msgid "There is no service configured."
 msgstr "没有已经配置好的服务项。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "这是此服务 %h 中日志文件的当前内容。"
 
@@ -737,24 +727,24 @@ msgstr ""
 "如果您自己运行 DDNS 脚本(即使用 cron 并将强制更新周期设置为\"0\"),则这是默"
 "认值"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "这将自动设置为选定的接口"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "用于检测的 URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "未知"
@@ -763,35 +753,35 @@ msgstr "未知"
 msgid "Update DDns Services List"
 msgstr "更新 DDNS 服务列表"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "用于向 DDNS 提供商进行更新的 更新URL。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "使用 HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "使用 cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "使用设定的脚本来读取系统 IP 地址"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "用户名"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "不支持使用特定的 DNS 服务器"
 
-#: 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:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "不支持除低于“检查间隔”的值,除了“ 0”"
 
@@ -799,26 +789,31 @@ msgstr "不支持除低于“检查间隔”的值,除了“ 0”"
 msgid "Verify"
 msgstr "验证"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "警告"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "设定哪一个 IP 地址(IPv4 或 IPv6)会被发送给 DDNS 提供商"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "重试计数器使用的时间单位。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 msgid ""
 "Writes log messages to syslog. Critical Errors will always be written to "
 "syslog."
 msgstr "把日志写入syslog。无论是否启用这项,严重错误始终被写入syslog。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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."
@@ -826,64 +821,54 @@ msgstr ""
 "如果您需要指定 DNS 服务器来检测您注册的 IP,您应该安装“bind-host”或“knot-"
 "host”或“drill”或“hostip”软件包。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-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:361
-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:323
 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:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "您应该安装“wget”或“curl”软件包。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL 没有包含代理支持"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "自定义"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "天"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "目录或者到文件的路径"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "小时"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "或者"
 
@@ -891,15 +876,35 @@ msgstr "或者"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "或将系统更新到最新的 OpenWrt 版本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
 
+#~ msgid "Checking the service support..."
+#~ msgstr "正在检查服务支持..."
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr "设定从哪里读取系统 IP 地址,这个地址会发送到 DDNS 提供商"
+
+#~ 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 供应商通讯!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "不支持强制设定 IP 版本"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "您应该安装“wget”或“curl”或“uclient-fetch”软件包。"
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "错误重试计数"
 
@@ -931,7 +936,7 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
 #~ "终端。"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once"
 #~ msgstr ""
 #~ "向 DDNS 提供商发送记录更新请求的时间间隔<br />将此参数设置为 0 则脚本仅运"
@@ -954,7 +959,7 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
 #~ msgid "BusyBox's nslookup and Wget do not support to specify"
 #~ msgstr "不支持指定 Busybox 的 nslookup 和 wget"
 
-#~ msgid "BusyBox's nslookup and hostip do not support to specify to use TCP"
+#~ msgid "BusyBox's nslookup and hostip do not support TCP"
 #~ msgstr "Busybox 的 nslookup 和 hostip 不支持指定使用 TCP"
 
 #~ msgid "BusyBox's nslookup in the current compiled version"
@@ -1085,9 +1090,9 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
 #~ msgstr "提示"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "当前系统暂时不能(完整地)支持 IPv6<br />请查看 OpenWrt 首页的介绍以启用 "
 #~ "IPv6 支持<br />或者更新您的系统到最新 OpenWrt 版本"
@@ -1108,7 +1113,7 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
 #~ msgstr "检查 IP 是否改变的时间隔<br />不支持小于 5 分钟(300 秒)的数值。"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
@@ -1287,8 +1292,8 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)"
 #~ msgstr "更新错误"
 
 #~ msgid ""
-#~ "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS "
-#~ "protocol."
+#~ "Neither GNU Wget with SSL nor cURL is installed to support updates via "
+#~ "HTTPS protocol."
 #~ msgstr "包含SSL支持的GNU Wget或者cURL均未被安装.无法使用HTTPS更新DDNS"
 
 #~ msgid "You should install BIND host package for DNS requests."
index ba208e591df7017ac10dd5166eceee03cb557d87..c9e7f394d6f41a021f4b8eb00c53ebeb1382a2cf 100644 (file)
@@ -16,32 +16,32 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.9-dev\n"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:432
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:423
 msgid "\"../\" not allowed in path for Security Reason."
 msgstr "基於安全原因,不容許在路徑中含有 \"../\"。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:756
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
 msgid "A.k.a. the TOKEN at e.g. afraid.org"
 msgstr "又名權杖,例如在afraid.org上"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:468
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:538
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:459
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526
 msgid "Add new services..."
 msgstr "加入新服務…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:612
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:600
 msgid "Advanced Settings"
 msgstr "進階設定"
 
-#: 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:392
 msgid "Allow non-public IPs"
 msgstr "容許非公共 IP"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:611
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:599
 msgid "Basic Settings"
 msgstr "基本設定"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:897
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:888
 msgid "Bind Network"
 msgstr "繫結網路"
 
@@ -49,75 +49,64 @@ msgstr "繫結網路"
 msgid "Binding to a specific network not supported"
 msgstr "不支援繫結到特定的網路"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:359
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:361
 msgid ""
-"BusyBox's nslookup and Wget do not support to specify the IP version to use "
-"for communication with DDNS Provider!"
+"BusyBox's nslookup and hostip do not support TCP instead of the default UDP "
+"when sending requests to the DNS server!"
 msgstr ""
-"BusyBox 的 nslookup 和 Wget 不支援使用特定的 IP 版本與 DDNS 提供者通信!"
+"當請求DNS伺服器時,BusyBox的nslookup和hostip只支援預設的UDP,無法指定使用"
+"TCP !"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:370
-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只支援預設的UDP,無法指定使用TCP "
-"!"
-
-#: 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:372
 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:452
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:443
 msgid "CA Certs path"
 msgstr "CA憑證路徑"
 
-#: 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:444
 msgid ""
 "CA certificates 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:544
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:532
 msgid "Cancel"
 msgstr "取消"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:975
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:966
 msgid "Check Interval"
 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:981
 msgid "Check Unit"
 msgstr "檢查時間單位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:529
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
-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:214
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1135
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1120
 msgid "Configuration Error"
 msgstr "設定錯誤"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:417
 msgid "Contains Log files for each running section."
 msgstr "包含每個運行部分的日誌檔目錄。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:411
 msgid "Contains PID and other status information for each running section."
 msgstr "包含每個運行區段的 PID 和其他狀態資訊目錄。"
 
-#: 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:536
 msgid "Create 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:405
 msgid "Current setting:"
 msgstr "現行設定:"
 
@@ -126,15 +115,15 @@ msgstr "現行設定:"
 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:725
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:711
 msgid "Custom update script for updating your DDNS Provider."
 msgstr "使用自訂更新指令來更新您的DDNS提供者。"
 
-#: 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:692
 msgid "Custom update-URL"
 msgstr "自訂更新URL"
 
-#: 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:710
 msgid "Custom update-script"
 msgstr "自訂更新指令"
 
@@ -148,8 +137,8 @@ msgstr "DDNS自動啟動已停用"
 msgid "DDNS Autostart enabled"
 msgstr "DDNS自動啟動已啟用"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:524
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:645
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:513
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:633
 msgid "DDNS Service provider"
 msgstr "DDNS服務提供者"
 
@@ -157,50 +146,39 @@ msgstr "DDNS服務提供者"
 msgid "DDns"
 msgstr "DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:589
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:577
 msgid "DDns Service"
 msgstr "DDNS 服務"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:369
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:360
 msgid "DNS requests via TCP not supported"
 msgstr "不支援透過TCP處理DNS請求"
 
-#: 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:909
 msgid "DNS-Server"
 msgstr "DNS伺服器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:401
 msgid "Date format"
 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:838
 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:857
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:848
 msgid "Defines the interface to read systems IP-Address from"
 msgstr "定義介面來讀取系統IP位址"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:839
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:830
 msgid "Defines the network to read systems IP-Address from"
 msgstr "定義網路來讀取系統IP位址"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:801
-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:516
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
-msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider"
-msgstr "定義要被送至DDNS提供者的「IPv4/IPv6」位址"
-
 #: 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:741
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:732
 msgid "Domain"
 msgstr "網域名稱"
 
@@ -214,85 +192,81 @@ msgstr "動態DNS"
 msgid "Dynamic DNS Version"
 msgstr "動態DNS版本"
 
-#: 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:545
 msgid "Edit"
 msgstr "編輯"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:776
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:767
 msgid "Enable secure communication with DDNS provider"
 msgstr "啟用與 DDNS 提供者的安全通訊"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:617
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1143
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:605
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1128
 msgid "Enabled"
 msgstr "啟用"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
 msgid "Error"
 msgstr "錯誤"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1025
 msgid "Error Max Retry Counter"
 msgstr "錯誤重試次數"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1045
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1035
 msgid "Error Retry Interval"
 msgstr "錯誤重試間隔"
 
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:862
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:871
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:880
 msgid "Event Network"
 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:840
 msgid "Example for IPv4"
 msgstr "IPv4示例"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:851
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:842
 msgid "Example for IPv6"
 msgstr "IPv6示例"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:969
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:960
 msgid "File"
 msgstr "檔案"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:708
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:695
 msgid "Follow instructions found on their WEB page."
 msgstr "請跟隨您在網頁上找到的說明進行操作。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:403
 msgid "For supported codes look here"
 msgstr "要獲取支援的代碼,請檢視這裡"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:909
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:900
 msgid "Force IP Version"
 msgstr "強制設定 IP 版本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:358
-msgid "Force IP Version not supported"
-msgstr "不支援強制設定 IP 版本"
-
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:999
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:990
 msgid "Force Interval"
 msgstr "強制更新間隔"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
 msgid "Force TCP on DNS"
 msgstr "強制使用 TCP 進行 DNS 查詢"
 
-#: 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:1016
 msgid "Force Unit"
 msgstr "強制時間單位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:933
 msgid "Format"
 msgstr "格式"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:921
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:912
 msgid "Format: IP or FQDN"
 msgstr "格式:IP或FQDN"
 
-#: 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:339
 msgid ""
 "GNU Wget will use the IP of given network, cURL will use the physical "
 "interface."
@@ -310,63 +284,63 @@ msgstr "給予存取 DDNS 程序的權限"
 msgid "HTTPS not supported"
 msgstr "不支援 HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:615
 msgid "Hostname/FQDN to validate, whether an IP update is necessary"
 msgstr "使用「主機名稱/FQDN」驗證(如果發生IP更新或有必要時)"
 
-#: 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:791
 msgid "IP address source"
 msgstr "IP 位址來源"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:515
-#: 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:504
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:622
 msgid "IP address version"
 msgstr "IP位址版本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:518
-#: 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:507
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:627
 msgid "IPv4-Address"
 msgstr "IPv4位址"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:944
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:935
 msgid "IPv6 address must be given in square brackets"
 msgstr "IPv6位址必須被中括號包圍起來"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:311
-msgid "IPv6 is currently not (fully) supported by this system"
+msgid "IPv6 is not supported by this system"
 msgstr "該系統目前尚不(完全)支援 IPv6"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:310
 msgid "IPv6 not supported"
 msgstr "不支援 IPv6"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:520
-#: 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:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:629
 msgid "IPv6-Address"
 msgstr "IPv6位址"
 
-#: 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:436
 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:618
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:606
 msgid "If this service section is disabled it will not be started."
 msgstr "如果設定為停用,該服務部分將不會啟動。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:384
 msgid "If using secure communication you should verify server certificates!"
 msgstr "如果使用安全通訊,您應該驗證伺服器憑證!"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:325
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:339
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:341
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:353
 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:957
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:948
 msgid "Info"
 msgstr "資訊"
 
@@ -374,196 +348,203 @@ msgstr "資訊"
 msgid "Information"
 msgstr "資訊"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:717
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:734
-msgid "Insert an Update Script OR an Update URL"
-msgstr "插入更新指令或更新URL"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:364
+msgid ""
+"Install 'bind-host' or 'knot-host' or 'drill' package if you know you need "
+"TCP for DNS requests."
+msgstr ""
+"若要處理DNS請求,您應該安裝「bind-host/knot-host/drill」套件中的任意一個。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:386
 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:675
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:662
 msgid "Install Service"
 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:856
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:797
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:847
 msgid "Interface"
 msgstr "介面"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1000
-msgid "Interval to force updates send to DDNS Provider"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+msgid "Interval to force an update at the DDNS Provider"
 msgstr "強制將更新發送至DDNS提供者的間隔時間"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1017
 msgid "Interval unit for forced updates sent to DDNS Provider."
 msgstr "強制將更新發送至DDNS提供者的間隔時間單位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:991
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:982
 msgid "Interval unit to check for changed IP"
 msgstr "檢查IP變更的間隔時間單位"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 msgid "Last Update"
 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:602
 msgid "Log File Viewer"
 msgstr "日誌檔檢視器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:425
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:416
 msgid "Log directory"
 msgstr "日誌目錄"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:437
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:428
 msgid "Log length"
 msgstr "日誌長度"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:963
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:954
 msgid "Log to file"
 msgstr "將日誌寫入檔案"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:951
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:942
 msgid "Log to syslog"
 msgstr "將日誌寫入syslog"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:626
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: 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:1116
 #: 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:503
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1125
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:792
+msgid "Method used to determine the system IP-Address to send in updates"
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:492
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1110
 msgid "Name"
 msgstr "名稱"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:333
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to select a network to use for "
-"communication."
+"Neither GNU Wget with SSL nor cURL is 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:321
 msgid ""
-"Neither GNU Wget with SSL nor cURL installed to support secure updates via "
-"HTTPS protocol."
-msgstr "包含SSL支援的GNU Wget或者cURL均未安裝,無法通過HTTPS協定進行安全的更新。"
+"Neither GNU Wget with SSL nor cURL is installed to support secure updates "
+"via HTTPS protocol."
+msgstr ""
+"包含SSL支援的GNU Wget或者cURL均未安裝,無法通過HTTPS協定進行安全的更新。"
 
-#: 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:608
 msgid "Neither from LuCI interface nor from console."
 msgstr "無論是從LuCI介面或從主控台。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:804
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:838
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:795
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:829
 #: 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:863
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:872
-#: 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:900
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:891
 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:216
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1152
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1137
 msgid "Never"
 msgstr "永不"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:506
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:495
 msgid "New DDns Service…"
 msgstr "新增 DDNS 服務…"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1148
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1133
 #: 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:215
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1136
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1121
 #: 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:392
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:383
 msgid "No certificates found"
 msgstr "找不到憑證"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:956
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:947
 msgid "No logging"
 msgstr "無日誌"
 
-#: 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:393
 msgid "Non-public and by default blocked IPs"
 msgstr "非公共和預設受阻的 IP"
 
 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1117
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1107
 msgid "Not Running"
 msgstr "未運行"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:958
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:949
 msgid "Notice"
 msgstr "注意"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:438
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:429
 msgid "Number of last lines stored in log files"
 msgstr "日誌檔中儲存的最後行數"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:910
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:901
 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:931
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:922
 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:898
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:889
 msgid "OPTIONAL: Network to use for communication"
 msgstr "可選:用於通訊的網路"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:940
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:931
 msgid "OPTIONAL: Proxy-Server for detection and updates."
 msgstr "可選:用於檢測和更新的代理伺服器。"
 
-#: 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:910
 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:1036
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1026
 msgid ""
 "On Error the script will stop execution after the given number of retries."
 msgstr "出現錯誤時,指令將在重試指定次數後停止執行。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:762
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
 msgid "Optional Encoded Parameter"
 msgstr "可選編碼參數"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:768
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:759
 msgid "Optional Parameter"
 msgstr "可選參數"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:763
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:754
 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:769
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:760
 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:939
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:930
 msgid "PROXY-Server"
 msgstr "代理伺服器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:753
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:744
 msgid "Password"
 msgstr "密碼"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:781
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:772
 msgid "Path to CA-Certificate"
 msgstr "CA憑證路徑"
 
@@ -572,40 +553,45 @@ 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:1082
+#: 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:1065
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:703
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:725
+msgid "Provide either an Update Script OR an Update URL"
+msgstr "插入更新指令碼或更新 URL"
+
+#: 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:690
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:677
 msgid "Really switch service?"
 msgstr "真的要更換服務嗎?"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1131
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1116
 #: 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:579
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
 msgid "Reload"
 msgstr "重新載入"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:562
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:550
 msgid "Reload this service"
 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:733
 msgid "Replaces [DOMAIN] in Update-URL (URL-encoded)"
 msgstr "替換更新URL(已編碼URL)中的[DOMAIN]"
 
-#: 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:745
 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)"
 msgstr "替換更新 URL(已編碼URL)中的[PASSWORD]"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:748
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:739
 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)"
 msgstr "替換更新 URL(已編碼URL)中的[USERNAME]"
 
@@ -613,7 +599,7 @@ msgstr "替換更新 URL(已編碼URL)中的[USERNAME]"
 msgid "Restart DDns"
 msgstr "重新啟動DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1053
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1043
 msgid "Retry Unit"
 msgstr "重試時間單位"
 
@@ -622,36 +608,36 @@ msgid "Run once"
 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:1120
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1106
 msgid "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:864
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:798
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:855
 msgid "Script"
 msgstr "指令"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:528
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
+#: 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:649
 msgid "Select a service"
 msgstr "選擇一項服務"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:530
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:664
-#: 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:518
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:651
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:671
 msgid "Service doesn't support this IP type"
 msgstr "服務不支援此 IP 類型"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:663
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:674
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:650
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:661
 msgid "Service not installed"
 msgstr "未安裝服務"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:465
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:456
 msgid "Services"
 msgstr "服務"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:460
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:451
 msgid "Services URL Download"
 msgstr "服務 URL 下載"
 
@@ -659,11 +645,11 @@ msgstr "服務 URL 下載"
 msgid "Services list last update"
 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:993
 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:461
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452
 msgid ""
 "Source URL for services file. Defaults to the master openwrt ddns package "
 "repo."
@@ -678,15 +664,15 @@ msgstr "啟動 DDNS"
 msgid "State"
 msgstr "狀態"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1114
+#: 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:419
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:410
 msgid "Status directory"
 msgstr "狀態目錄"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:578
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:566
 msgid "Stop"
 msgstr "停止"
 
@@ -694,7 +680,7 @@ msgstr "停止"
 msgid "Stop DDNS"
 msgstr "停止DDNS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:567
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:555
 msgid "Stop this service"
 msgstr "停止此服務"
 
@@ -702,19 +688,19 @@ msgstr "停止此服務"
 msgid "Stopped"
 msgstr "已停止"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:691
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:678
 msgid "Switch service"
 msgstr "切換服務"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1038
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1028
 msgid "The default setting of '0' will retry infinitely."
 msgstr "如果設定為預設值「0」,將無限重試。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1046
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036
 msgid "The interval between which each subsequent retry commences."
 msgstr "當出錯時,指令將在給定的重試次數執行完成後退出"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:509
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:498
 msgid "The service name is already used"
 msgstr "服務名稱已被使用"
 
@@ -722,7 +708,13 @@ msgstr "服務名稱已被使用"
 msgid "There is no service configured."
 msgstr "尚未設定任何服務。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1081
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+msgid ""
+"This is only a problem with multiple WAN interfaces and your DDNS provider "
+"is unreachable via one of them."
+msgstr ""
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1070
 msgid "This is the current content of the log file in %h for this service."
 msgstr "這是此服務%h中日誌檔案的目前內容。"
 
@@ -733,24 +725,24 @@ msgid ""
 "force_interval set to '0')"
 msgstr "如果您要透過Cron執行DDNS指令,請設定force_interval為預設值「0」"
 
-#: 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:878
 msgid "This will be autoset to the selected interface"
 msgstr "這將自動設定到被選介面"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:613
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:601
 msgid "Timer Settings"
 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:796
 msgid "URL"
 msgstr "URL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:846
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:837
 msgid "URL to detect"
 msgstr "用於檢測的 URL"
 
 #: 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:1152
+#: 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:38
 msgid "Unknown"
 msgstr "未知"
@@ -759,35 +751,35 @@ msgstr "未知"
 msgid "Update DDns Services List"
 msgstr "更新DDNS服務列表"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:706
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:693
 msgid "Update URL for updating your DDNS Provider."
 msgstr "使用更新URL來更新您的DDNS提供者。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:766
 msgid "Use HTTP Secure"
 msgstr "使用HTTPS"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:444
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:435
 msgid "Use cURL"
 msgstr "使用 cURL"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:865
-msgid "User defined script to read systems IP-Address"
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:856
+msgid "User defined script to read system IP-Address"
 msgstr "使用自定指令來讀取系統IP位址"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:747
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:738
 msgid "Username"
 msgstr "用戶名稱"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:380
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:371
 msgid "Using specific DNS Server not supported"
 msgstr "不支援使用特定的DNS伺服器"
 
-#: 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:975
 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:1019
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1010
 msgid "Values lower than 'Check Interval' except '0' are invalid"
 msgstr "除「0」之外,不支援比「檢查間隔時間」低的值"
 
@@ -795,42 +787,39 @@ msgstr "除「0」之外,不支援比「檢查間隔時間」低的值"
 msgid "Verify"
 msgstr "驗證"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:950
 msgid "Warning"
 msgstr "警告"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1054
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623
+msgid "Which record type to update at the DDNS provider (A/AAAA)"
+msgstr "定義要被送至DDNS提供者的「IPv4/IPv6」位址"
+
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1044
 msgid "Which time units to use for retry counters."
 msgstr "當出錯時,指令將在給定時間後重試失敗的操作"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:968
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:959
 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:952
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:943
 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:384
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:375
 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/"
+msgstr ""
+"如果要規定DNS伺服器來檢測已註冊的IP,您應該安裝「bind-host/knot-host/drill/"
 "hostip」套件中的任意一個。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:373
-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:361
-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:323
 msgid ""
 "You should install 'wget' or 'curl' or 'uclient-fetch' with 'libustream-"
@@ -839,48 +828,48 @@ msgstr ""
 "您應該安裝 \"Wget/cURL/uclient-fetch\" 套件中的任意一個,以及 \"libustream-"
 "*ssl\" 套件。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:335
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:337
 msgid "You should install 'wget' or 'curl' package."
 msgstr "您應該安裝 \"Wget/cURL\" 套件中的任意一個。"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:351
 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:347
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:349
 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:346
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:348
 msgid "cURL without Proxy Support"
 msgstr "cURL 不支援代理伺服器"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:525
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:647
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:514
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:635
 msgid "custom"
 msgstr "自訂"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1032
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1022
 msgid "days"
 msgstr "天"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:782
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:773
 msgid "directory or path/file"
 msgstr "目錄或檔案路徑"
 
-#: 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:1031
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:987
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1021
 msgid "hours"
 msgstr "小時"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:995
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1030
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1059
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:986
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1020
+#: 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:784
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:775
 msgid "or"
 msgstr "或"
 
@@ -888,15 +877,38 @@ msgstr "或"
 msgid "or update your system to the latest OpenWrt Release"
 msgstr "或將您的系統更新到OpenWrt最新版本"
 
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:994
-#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1058
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:985
+#: 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:786
+#: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:777
 msgid "to run HTTPS without verification of server certificates (insecure)"
 msgstr "使用HTTPS但不檢查伺服器憑證(不安全)"
 
+#~ msgid "Insert an Update Script OR an Update URL"
+#~ msgstr "插入更新指令或更新URL"
+
+#~ msgid "Checking the service support..."
+#~ msgstr "檢查服務支援中…"
+
+#~ msgid ""
+#~ "Defines the source to read systems IP-Address from, that will be send to "
+#~ "the DDNS provider"
+#~ msgstr "定義要從中讀取系統IP位址的源,該源將發送到DDNS提供商"
+
+#~ 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 提供者通信!"
+
+#~ msgid "Force IP Version not supported"
+#~ msgstr "不支援強制設定 IP 版本"
+
+#~ msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package."
+#~ msgstr "您應該安裝 \"Wget/cURL/uclient-fetch\" 套件中的任意一個。"
+
 #~ msgid "Error Retry Counter"
 #~ msgstr "錯誤重試次數"
 
@@ -1052,9 +1064,9 @@ msgstr "使用HTTPS但不檢查伺服器憑證(不安全)"
 #~ msgstr "提示"
 
 #~ msgid ""
-#~ "IPv6 is currently not (fully) supported by this system<br />Please follow "
-#~ "the instructions on OpenWrt's homepage to enable IPv6 support<br />or "
-#~ "update your system to the latest OpenWrt Release"
+#~ "IPv6 is not supported by this system<br />Please follow the instructions "
+#~ "on OpenWrt's homepage to enable IPv6 support<br />or update your system "
+#~ "to the latest OpenWrt Release"
 #~ msgstr ""
 #~ "當前系統暫時不能(完整地)支援 IPv6<br />請檢視 OpenWrt 首頁的介紹以啟用 "
 #~ "IPv6 支援<br />或者更新您的系統到最新 OpenWrt 版本"
@@ -1075,7 +1087,7 @@ msgstr "使用HTTPS但不檢查伺服器憑證(不安全)"
 #~ msgstr "檢查 IP 是否改變的時間隔<br />不支援小於 5 分鐘(300 秒)的數值。"
 
 #~ msgid ""
-#~ "Interval to force updates send to DDNS Provider<br />Setting this "
+#~ "Interval to force an update at the DDNS Provider<br />Setting this "
 #~ "parameter to 0 will force the script to only run once<br />Values lower "
 #~ "'Check Interval' except '0' are not supported"
 #~ msgstr ""
@@ -1254,8 +1266,8 @@ msgstr "使用HTTPS但不檢查伺服器憑證(不安全)"
 #~ msgstr "更新錯誤"
 
 #~ msgid ""
-#~ "Neither GNU Wget with SSL nor cURL installed to support updates via HTTPS "
-#~ "protocol."
+#~ "Neither GNU Wget with SSL nor cURL is installed to support updates via "
+#~ "HTTPS protocol."
 #~ msgstr "包含SSL支援的GNU Wget或者cURL均未被安裝.無法使用HTTPS更新DDNS"
 
 #~ msgid "You should install BIND host package for DNS requests."
index 3a8e5cf50a32aaa83410b88e4776cf13d0684060..b3395280010ec9d801f092f5583e5d9de111aade 100644 (file)
@@ -119,7 +119,7 @@ const methods = {
                                        const dnsServer = s['dns_server'] || '';
                                        const forceIpVersion = int(s['force_ipversion'] || 0);
                                        const forceDnsTcp = int(s['force_dnstcp'] || 0);
-                                       const isGlue = int(s['is_glue'] || 0);
+                                       // const isGlue = int(s['is_glue'] || 0);
                                        const useIpv6 = int(s['use_ipv6'] || 0);
                                        const lookupHost = s['lookup_host'] || '_nolookup_';
                                        let command = [luci_helper];
@@ -127,7 +127,7 @@ const methods = {
                                        if (useIpv6 == 1) push(command, '-6');
                                        if (forceIpVersion == 1) push(command, '-f');
                                        if (forceDnsTcp == 1) push(command, '-t');
-                                       if (isGlue == 1) push(command, '-g');
+                                       // if (isGlue == 1) push(command, '-g');
 
                                        push(command, '-l', lookupHost);
                                        push(command, '-S', section);
@@ -148,12 +148,12 @@ const methods = {
 
                                let _uptime = int(uptime());
 
-                               const forceSeconds = calc_seconds(
+                               const forcedUpdateInterval = calc_seconds(
                                        int(s['force_interval']) || 72,
                                        s['force_unit'] || 'hours'
                                );
 
-                               const checkSeconds = calc_seconds(
+                               const checkInterval = calc_seconds(
                                        int(s['check_interval']) || 10,
                                        s['check_unit'] || 'minutes'
                                );
@@ -163,13 +163,13 @@ const methods = {
                                        const epoch = time() - _uptime + lastUpdate;
                                        convertedLastUpdate = epoch2date(epoch);
                                        // convertedLastUpdate = get_date(epoch, dateFormat);
-                                       nextUpdate = epoch2date(epoch + forceSeconds + checkSeconds);
-                                       // nextUpdate = get_date(epoch + forceSeconds + checkSeconds, dateFormat);
+                                       nextUpdate = epoch2date(epoch + forcedUpdateInterval + checkInterval);
+                                       // nextUpdate = get_date(epoch + forcedUpdateInterval + checkInterval, dateFormat);
                                }
 
-                               if (pid > 0 && (lastUpdate + forceSeconds + checkSeconds - _uptime) <= 0) {
+                               if (pid > 0 && (lastUpdate + forcedUpdateInterval + checkInterval - _uptime) <= 0) {
                                        nextUpdate = 'Verify';
-                               } else if (forceSeconds === 0) {
+                               } else if (forcedUpdateInterval === 0) {
                                        nextUpdate = 'Run once';
                                } else if (pid == 0 && s['enabled'] == '0') {
                                        nextUpdate = 'Disabled';
@@ -243,6 +243,13 @@ const methods = {
                                return result;
                        };
 
+                       const hasGNUWgetSsl = () => {
+                               if (cache['has_gnuwgetssl']) return cache['has_gnuwgetssl'];
+                               const result = hasWget() && system(`wget -V 2>&1 | grep -iqF '+https'`) == 0 ? true: false;
+                               cache['has_gnuwgetssl'] = result;
+                               return result;
+                       };
+
                        const hasCurl = () => {
                                if (cache['has_curl']) return cache['has_curl'];
                                const result = hasCommand('curl');
@@ -277,10 +284,10 @@ const methods = {
                        res['has_wget'] = hasWget();
                        res['has_curl'] = hasCurl();
 
-                       res['has_ssl'] = hasWgetSsl() || hasCurlSsl() || (hasFetch() && hasFetchSsl());
-                       res['has_proxy'] = hasWgetSsl() || hasCurlPxy() || hasFetch() || hasBbwget();
-                       res['has_forceip'] = hasWgetSsl() || hasCurl() || hasFetch();
-                       res['has_bindnet'] = hasCurl() || hasWgetSsl();
+                       res['has_ssl'] = hasGNUWgetSsl()|| hasWgetSsl() || hasCurlSsl() || (hasFetch() && hasFetchSsl());
+                       res['has_proxy'] = hasGNUWgetSsl() || hasWgetSsl() || hasCurlPxy() || hasFetch() || hasBbwget();
+                       res['has_forceip'] = hasGNUWgetSsl() || hasWgetSsl() || hasCurl() || hasFetch();
+                       res['has_bindnet'] = hasCurl() || hasGNUWgetSsl();
 
                        const hasBindHost = () => {
                                if (cache['has_bindhost']) return cache['has_bindhost'];