diff options
38 files changed, 653 insertions, 653 deletions
diff --git a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js index c1bb19f2a3..ea16ee3853 100644 --- a/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js +++ b/applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js @@ -59,12 +59,12 @@ return view.extend({ services: {}, /* - * Services list is gen by 3 different source: + * Services list is generated by 3 different sources: * 1. /usr/share/ddns/default contains the service installed by opkg * 2. /usr/share/ddns/custom contains any service installed by the - * user or the ddns script (for example when service are + * user or the ddns script (for example when services are * downloaded) - * 3. /usr/share/ddns/list contains all the service that can be + * 3. /usr/share/ddns/list contains all the services that can be * downloaded by using the ddns script ('service on demand' feature) * * (Special services that requires a dedicated package ARE NOT @@ -101,10 +101,10 @@ return view.extend({ }, /* - * Check if the service is supported. - * If the script doesn't find any json assume a 'service on demand' install. - * If a json is found check if the ip type is supported. - * Invalidate the service_name if is not supported. + * Check whether or not the service is supported. + * If the script doesn't find any JSON, assume a 'service on demand' install. + * If a JSON is found, check if the IP type is supported. + * Invalidate the service_name if it is not supported. */ handleCheckService : function(s, service_name, ipv6, ev, section_id) { @@ -399,7 +399,7 @@ return view.extend({ // Advanced Configuration Section o = s.taboption('global', form.Flag, 'upd_privateip', _("Allow non-public IP's")); - o.description = _("Non-public and by default blocked IP's") + ':' + o.description = _("Non-public and by default blocked IPs") + ':' + '<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>' @@ -417,13 +417,13 @@ return view.extend({ o.rmempty = true; o = s.taboption('global', form.Value, 'ddns_rundir', _('Status directory')); - o.description = _('Directory contains PID and other status information for each running section.'); + o.description = _('Contains PID and other status information for each running section.'); o.default = "/var/run/ddns"; o.optional = true; o.rmempty = true; o = s.taboption('global', form.Value, 'ddns_logdir', _('Log directory')); - o.description = _('Directory contains Log files for each running section.'); + o.description = _('Contains Log files for each running section.'); o.default = "/var/log/ddns"; o.optional = true; o.rmempty = true; @@ -449,12 +449,12 @@ return view.extend({ } - o = s.taboption('global', form.Value, 'cacert', _('Ca Certs path')); - o.description = _('Ca Certs path that will be used to download services data. Set IGNORE to skip certificate validation.'); + o = s.taboption('global', form.Value, 'cacert', _('CA Certs path')); + o.description = _('CA certificates path that will be used to download services data. Set IGNORE to skip certificate validation.'); o.placeholder = 'IGNORE'; o = s.taboption('global', form.Value, 'services_url', _('Services URL Download')); - o.description = _('Url used to download services file. By default is the master openwrt ddns package repo.'); + o.description = _('Source URL for services file. Defaults to the master openwrt ddns package repo.'); o.placeholder = 'https://raw.githubusercontent.com/openwrt/packages/master/net/ddns-scripts/files'; // DDns services @@ -523,7 +523,7 @@ return view.extend({ 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"); + if (!s2.service_supported) return _("Service doesn't support this IP type"); return true; }; @@ -611,7 +611,7 @@ return view.extend({ o = s.taboption('basic', form.Flag, 'enabled', _('Enabled'), - _("If this service section is disabled it could not be started.") + _("If this service section is disabled it will not be started.") + "<br />" + _("Neither from LuCI interface nor from console.")); o.modalonly = true; @@ -620,7 +620,7 @@ return view.extend({ o = s.taboption('basic', form.Value, 'lookup_host', _("Lookup Hostname"), - _("Hostname/FQDN to validate, if IP update happen or necessary")); + _("Hostname/FQDN to validate, whether an IP update is necessary")); o.rmempty = false; o.placeholder = "myhost.example.com"; o.datatype = 'and(minlength(3),hostname("strict"))'; @@ -657,7 +657,7 @@ return view.extend({ 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"); + if (!s.service_supported) return _("Service doesn't support this IP type"); return true; }; @@ -677,7 +677,7 @@ return view.extend({ if (!s.service_supported) { o = s.taboption('basic', form.DummyValue, '_not_supported', ' '); o.cfgvalue = function () { - return _("Service doesn't support this ip type") + return _("Service doesn't support this IP type") }; } @@ -699,9 +699,9 @@ return view.extend({ o = s.taboption('basic', form.Value, 'update_url', _("Custom update-URL"), - _("Update URL to be used for updating your DDNS Provider.") + _("Update URL for updating your DDNS Provider.") + "<br />" + - _("Follow instructions you will find on their WEB page.")); + _("Follow instructions found on their WEB page.")); o.modalonly = true; o.rmempty = true; o.optional = true; @@ -710,7 +710,7 @@ return view.extend({ var other = this.section.children.filter(function(o) { return o.option == 'update_script' })[0].formvalue(section_id); if ((value == "" && other == "") || (value != "" && other != "")) { - return _("Insert a Update Script OR a Update URL"); + return _("Insert an Update Script OR an Update URL"); } return true; @@ -718,7 +718,7 @@ return view.extend({ o = s.taboption('basic', form.Value, 'update_script', _("Custom update-script"), - _("Custom update script to be used for updating your DDNS Provider.")); + _("Custom update script for updating your DDNS Provider.")); o.modalonly = true; o.rmempty = true; o.optional = true; @@ -727,7 +727,7 @@ return view.extend({ var other = this.section.children.filter(function(o) { return o.option == 'update_url' })[0].formvalue(section_id); if ((value == "" && other == "") || (value != "" && other != "")) { - return _("Insert a Update Script OR a Update URL"); + return _("Insert an Update Script OR an Update URL"); } return true; @@ -1006,14 +1006,14 @@ return view.extend({ force_to_sec = _this.time_res[force_unit || 'minutes'] * formvalue; if (force_to_sec != 0 && force_to_sec < check_to_sec) - return _("Values lower 'Check Interval' except '0' are not supported"); + return _("Values lower than 'Check Interval' except '0' are invalid"); return true; }; o = s.taboption("timer", form.ListValue, "force_unit", _('Force Unit'), - _("Interval unit to force updates sent to DDNS Provider.")); + _("Interval unit for forced updates sent to DDNS Provider.")); o.modalonly = true; o.optional = true; o.default = "minutes" @@ -1033,7 +1033,7 @@ return view.extend({ o = s.taboption("timer", form.Value, "retry_interval", _("Error Retry Interval"), - _("The interval between which each successive retry commences.")); + _("The interval between which each subsequent retry commences.")); o.placeholder = "60"; o.optional = true; o.modalonly = true; diff --git a/applications/luci-app-ddns/po/ar/ddns.po b/applications/luci-app-ddns/po/ar/ddns.po index 50523def26..e1d8faa190 100644 --- a/applications/luci-app-ddns/po/ar/ddns.po +++ b/applications/luci-app-ddns/po/ar/ddns.po @@ -65,12 +65,12 @@ msgstr "" "المحددة بشكل صحيح!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "مسار شهادات Ca" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "مسار شهادات Ca الذي سيتم استخدامه لتنزيل بيانات الخدمات. قم بتعيين IGNORE " @@ -116,7 +116,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "برنامج نصي للتحديث مخصص ليتم استخدامه لتحديث مزود DDNS." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -186,12 +186,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "يحتوي الدليل على ملفات السجل لكل قسم قيد التشغيل." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "يحتوي الدليل على PID ومعلومات الحالة الأخرى لكل قسم قيد التشغيل." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -255,7 +255,7 @@ msgid "File" msgstr "ملف" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "اتبع التعليمات التي ستجدها على صفحة الويب الخاصة بهم." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -309,7 +309,7 @@ msgid "HTTPS not supported" msgstr "HTTPS غير مدعوم" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -351,7 +351,7 @@ msgstr "" "إذا تم تثبيت حزمة Wget و cURL ، فسيتم استخدام Wget بشكل افتراضي للاتصال." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -376,7 +376,7 @@ msgstr "معلومة" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "أدخل برنامج نصي للتحديث أو عنوان URL للتحديث" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -405,7 +405,7 @@ msgid "Interval unit to check for changed IP" msgstr "وحدة الفاصل الزمني للتحقق من تغيير IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "وحدة الفاصل الزمني لفرض التحديثات المرسلة إلى مزود DDNS." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -503,7 +503,7 @@ msgid "No logging" msgstr "لا تسجيل" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "غير عام وبشكل افتراضي عناوين IP المحظورة" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -647,7 +647,7 @@ msgstr "اختر الخدمة" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "الخدمة لا تدعم هذا النوع من بروتوكول الإنترنت" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -714,7 +714,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "الإعداد الافتراضي \"0\" سيعيد المحاولة بلا حدود." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" "عند حدوث خطأ ، سيتوقف البرنامج النصي عن التنفيذ بعد عدد معين من المحاولات." @@ -766,12 +766,12 @@ msgid "Update DDns Services List" msgstr "تحديث قائمة خدمات DDns" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "تحديث URL لاستخدامه لتحديث مزود DDNS الخاص بك." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "يستخدم عنوان Url لتنزيل ملف الخدمات. بشكل افتراضي ، يتم إعادة تعيين حزمة " @@ -802,7 +802,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "القيم الأقل من \"التحقق من الفاصل الزمني\" باستثناء \"0\" غير مدعومة" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/bg/ddns.po b/applications/luci-app-ddns/po/bg/ddns.po index 775b412244..451277b84b 100644 --- a/applications/luci-app-ddns/po/bg/ddns.po +++ b/applications/luci-app-ddns/po/bg/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "Информация" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/bn_BD/ddns.po b/applications/luci-app-ddns/po/bn_BD/ddns.po index 41377b7140..18202a62d8 100644 --- a/applications/luci-app-ddns/po/bn_BD/ddns.po +++ b/applications/luci-app-ddns/po/bn_BD/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/ca/ddns.po b/applications/luci-app-ddns/po/ca/ddns.po index 675da3ab22..d088fc5743 100644 --- a/applications/luci-app-ddns/po/ca/ddns.po +++ b/applications/luci-app-ddns/po/ca/ddns.po @@ -63,12 +63,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -112,7 +112,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -183,12 +183,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -252,7 +252,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -306,7 +306,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -347,7 +347,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -371,7 +371,7 @@ msgstr "Informació" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -398,7 +398,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -493,7 +493,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -634,7 +634,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -699,7 +699,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -748,12 +748,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -782,7 +782,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/cs/ddns.po b/applications/luci-app-ddns/po/cs/ddns.po index aa9ac59d52..806bd0bdb9 100644 --- a/applications/luci-app-ddns/po/cs/ddns.po +++ b/applications/luci-app-ddns/po/cs/ddns.po @@ -70,12 +70,12 @@ msgstr "" "BusyBox, nemůže správně zpracovat uvedené servery DNS!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Adresář certifikátů CA" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Adresář který bude využit pro stažení dat služeb. Nastavte na IGNORE pro " @@ -123,7 +123,7 @@ msgstr "" "při událostech rozhraní." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +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:701 @@ -195,12 +195,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" "Adresář obsahuje PID a další stavové informace pro každou běžící sekci." @@ -265,7 +265,7 @@ msgid "File" msgstr "Soubor" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -319,7 +319,7 @@ msgid "HTTPS not supported" msgstr "Protokol HTTPS není podporován" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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é" @@ -364,7 +364,7 @@ msgstr "" "použije Wget." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -391,7 +391,7 @@ msgstr "Informace" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -421,7 +421,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Jednotka intervalu pro vynucení odeslání aktualizací poskytovateli DDNS." @@ -521,7 +521,7 @@ msgid "No logging" msgstr "Žádné protokolování" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -666,7 +666,7 @@ msgstr "Vybrat službu" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -733,7 +733,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -785,12 +785,12 @@ msgid "Update DDns Services List" msgstr "Aktualizovat seznam služeb DDNS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "URL která je používána pro stažení souboru služeb. Výchozím nastavením je " @@ -821,7 +821,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Hodnoty nižší než 'Interval kontroly' s výjimkou '0' nejsou podporovány" diff --git a/applications/luci-app-ddns/po/da/ddns.po b/applications/luci-app-ddns/po/da/ddns.po index 46b54f0484..a91eddf9a1 100644 --- a/applications/luci-app-ddns/po/da/ddns.po +++ b/applications/luci-app-ddns/po/da/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "Fil" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "Information" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/de/ddns.po b/applications/luci-app-ddns/po/de/ddns.po index 6a62c78114..dfcfdee3d3 100644 --- a/applications/luci-app-ddns/po/de/ddns.po +++ b/applications/luci-app-ddns/po/de/ddns.po @@ -69,12 +69,12 @@ msgstr "" "Server nicht korrekt verarbeiten!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Pfad zu CA-Zertifikaten" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Ca Certs Pfad, der für das Herunterladen von Servicedaten verwendet werden " @@ -122,7 +122,7 @@ msgstr "" "Events gestartet." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +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:701 @@ -198,12 +198,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" "Verzeichnis enthält für jeden aktiven Abschnitt PID und andere " "Statusinformationen." @@ -269,7 +269,7 @@ msgid "File" msgstr "Datei" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -325,7 +325,7 @@ msgid "HTTPS not supported" msgstr "HTTPS nicht unterstützt" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -370,7 +370,7 @@ msgstr "" "die Kommunikation verwendet." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +msgid "If this service section is disabled it will not be started." msgstr "" "Wenn dieser Service-Abschnitt deaktiviert ist, konnte es nicht gestartet " "werden." @@ -400,7 +400,7 @@ msgstr "Informationen" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -429,7 +429,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +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:1138 @@ -528,7 +528,7 @@ msgid "No logging" msgstr "Keine Protokollierung" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -678,7 +678,7 @@ msgstr "Einen Dienst auswählen" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -743,7 +743,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" "Das Intervall, in dem jeder aufeinanderfolgende Wiederholungsversuch " "gestartet wird." @@ -797,14 +797,14 @@ msgid "Update DDns Services List" msgstr "DDns-Diensteliste aktualisieren" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "Url, die zum Herunterladen der Servicedatei verwendet wird. Standardmäßig " @@ -837,7 +837,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Ausgenommen von \"0\" werden keine Werte kleine als der \"Prüfinterval\" " "unterstützt" @@ -994,7 +994,7 @@ msgstr "" #~ msgstr "Globale Einstellung" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Wenn deaktiviert kann die Aktualisierung nicht gestartet werden.<br /" @@ -1014,7 +1014,7 @@ msgstr "" #~ "dieser Seite ändern." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "Update-URL um Aktualisierungen an Ihren DDNS Anbieter zu senden.<br /" @@ -1141,13 +1141,13 @@ msgstr "" #~ msgid "Details for" #~ msgstr "Details für" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "" #~ "Das Verzeichnis enthält die Protokolldateien aller laufenden " #~ "Konfigurationen" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "" #~ "Das Verzeichnis enthält die PID und andere Statusinformationen aller " diff --git a/applications/luci-app-ddns/po/el/ddns.po b/applications/luci-app-ddns/po/el/ddns.po index 8b3f7229db..5ded686bd3 100644 --- a/applications/luci-app-ddns/po/el/ddns.po +++ b/applications/luci-app-ddns/po/el/ddns.po @@ -61,12 +61,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -110,7 +110,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -180,12 +180,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -249,7 +249,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -303,7 +303,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -344,7 +344,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -368,7 +368,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -395,7 +395,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -490,7 +490,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -631,7 +631,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -696,7 +696,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -745,12 +745,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -779,7 +779,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/en/ddns.po b/applications/luci-app-ddns/po/en/ddns.po index b90494c063..adfbad66e2 100644 --- a/applications/luci-app-ddns/po/en/ddns.po +++ b/applications/luci-app-ddns/po/en/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/es/ddns.po b/applications/luci-app-ddns/po/es/ddns.po index 9a184199e2..e69d24c07e 100644 --- a/applications/luci-app-ddns/po/es/ddns.po +++ b/applications/luci-app-ddns/po/es/ddns.po @@ -67,12 +67,12 @@ msgstr "" "los servidores DNS determinados!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Ruta a certificados CA" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Ruta de certificados Ca que se utilizará para descargar datos de servicios. " @@ -120,7 +120,7 @@ msgstr "" "en eventos de interfaz." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Script personalizado que se utilizará para actualizar su proveedor DDNS." @@ -193,13 +193,13 @@ msgid "Defines which IP address 'IPv4/IPv6' is send to the DDNS provider" msgstr "Define cual dirección IP 'IPv4 / IPv6' se envía al proveedor de DDNS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" "El directorio contiene archivos de registro para cada sección en ejecución." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" "El directorio contiene PID y otra información de estado para cada sección en " "ejecución." @@ -265,7 +265,7 @@ msgid "File" msgstr "Archivo" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -320,7 +320,7 @@ msgid "HTTPS not supported" msgstr "HTTPS no admitido" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -365,7 +365,7 @@ msgstr "" "comunicación de forma predeterminada." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +msgid "If this service section is disabled it will not be started." msgstr "Si esta sección de servicio está desactivada, no podrá iniciarse." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 @@ -393,7 +393,7 @@ msgstr "Información" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -424,7 +424,7 @@ msgstr "" "cambio de IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Unidad de intervalo para forzar el envío de actualizaciones al proveedor " "DDNS." @@ -525,7 +525,7 @@ msgid "No logging" msgstr "Sin registro" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -675,7 +675,7 @@ msgstr "Seleccione un servicio" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -741,7 +741,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -793,12 +793,12 @@ msgid "Update DDns Services List" msgstr "Actualizar la lista de servicios DDNS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "URL utilizada para descargar el archivo de servicios. De forma " @@ -829,7 +829,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Valores inferiores a 'Intervalo de verificación' excepto '0' no son admitidos" @@ -981,7 +981,7 @@ msgstr "" #~ msgstr "Configuración global" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Si no se activa esta opción, no se iniciará el servicio.<br />Ni desde la " @@ -1002,7 +1002,7 @@ msgstr "" #~ "esta página." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "Actualizar la URL que se usará para actualizar su proveedor de DDNS.<br /" @@ -1130,12 +1130,12 @@ msgstr "" #~ msgid "Details for" #~ msgstr "Detalles para" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "" #~ "Directorio contiene archivos de registro para cada sección en ejecución" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "" #~ "El directorio contiene PID y otra información de estado para cada sección " diff --git a/applications/luci-app-ddns/po/fa/ddns.po b/applications/luci-app-ddns/po/fa/ddns.po index 8605c627b8..96d379cdfa 100644 --- a/applications/luci-app-ddns/po/fa/ddns.po +++ b/applications/luci-app-ddns/po/fa/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "پرونده" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "اطّلاعات" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/fi/ddns.po b/applications/luci-app-ddns/po/fi/ddns.po index a41e185b7e..a0d578a354 100644 --- a/applications/luci-app-ddns/po/fi/ddns.po +++ b/applications/luci-app-ddns/po/fi/ddns.po @@ -64,12 +64,12 @@ msgstr "" "DNS-palvelimia oikein!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "CaCerts-polku" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Ca Certs -polku, jota käytetään palvelutietojen lataamiseen. Aseta IGNORE " @@ -115,7 +115,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -185,12 +185,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -254,7 +254,7 @@ msgid "File" msgstr "Tiedosto" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -308,7 +308,7 @@ msgid "HTTPS not supported" msgstr "HTTPS ei tuettu" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -349,7 +349,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -373,7 +373,7 @@ msgstr "Tietoja" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -400,7 +400,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -495,7 +495,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -636,7 +636,7 @@ msgstr "Valitse palvelu" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -701,7 +701,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -750,12 +750,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -784,7 +784,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/fr/ddns.po b/applications/luci-app-ddns/po/fr/ddns.po index 87e1ca4f58..b471bd497f 100644 --- a/applications/luci-app-ddns/po/fr/ddns.po +++ b/applications/luci-app-ddns/po/fr/ddns.po @@ -69,12 +69,12 @@ msgstr "" "correctement les serveurs DNS donnés !" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +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 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Chemin d'accès Ca Certs qui sera utilisé afin de télécharger les données de " @@ -122,7 +122,7 @@ msgstr "" "des événements d'interface." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Script de mise à jour personnalisé à utiliser pour mettre à jour votre " "fournisseur DDNS." @@ -197,14 +197,14 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -270,7 +270,7 @@ msgid "File" msgstr "Fichier" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -325,7 +325,7 @@ msgid "HTTPS not supported" msgstr "HTTPS non pris en charge" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -370,7 +370,7 @@ msgstr "" "communication par défaut." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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." @@ -399,7 +399,7 @@ msgstr "Information" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -428,7 +428,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Unité d'intervalle pour forcer l'envoi des mises à jour au fournisseur DDNS." @@ -528,7 +528,7 @@ msgid "No logging" msgstr "Pas de journaux" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -676,7 +676,7 @@ msgstr "Choisis un service" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -743,7 +743,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -794,13 +794,13 @@ 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:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "URL utilisée pour télécharger le fichier des services. Par défaut, il s’agit " @@ -833,7 +833,7 @@ msgstr "" "charge" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Les valeurs inférieures à 'Vérifier l'intervalle' sauf '0' ne sont pas " "prises en charge" @@ -991,7 +991,7 @@ msgstr "" #~ msgstr "Configuration globale" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Si cette section de service est désactivée, elle n'a pas pu être démarrée." @@ -1012,7 +1012,7 @@ msgstr "" #~ "paramètres sur cette page." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "Mettre à jour l'URL à utiliser pour mettre à jour votre fournisseur DDNS." diff --git a/applications/luci-app-ddns/po/he/ddns.po b/applications/luci-app-ddns/po/he/ddns.po index d74f667c89..d038c19224 100644 --- a/applications/luci-app-ddns/po/he/ddns.po +++ b/applications/luci-app-ddns/po/he/ddns.po @@ -61,12 +61,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -110,7 +110,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -181,12 +181,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -250,7 +250,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -304,7 +304,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -345,7 +345,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -369,7 +369,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -396,7 +396,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -491,7 +491,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -632,7 +632,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -697,7 +697,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -746,12 +746,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -780,7 +780,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/hi/ddns.po b/applications/luci-app-ddns/po/hi/ddns.po index 8359aafab0..77fc8dc742 100644 --- a/applications/luci-app-ddns/po/hi/ddns.po +++ b/applications/luci-app-ddns/po/hi/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/hu/ddns.po b/applications/luci-app-ddns/po/hu/ddns.po index 2e8910263b..76b249df46 100644 --- a/applications/luci-app-ddns/po/hu/ddns.po +++ b/applications/luci-app-ddns/po/hu/ddns.po @@ -63,12 +63,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -114,7 +114,7 @@ msgstr "" "csatolóeseményeknél." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +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." @@ -191,12 +191,12 @@ msgstr "" "szolgáltatónak" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -262,7 +262,7 @@ msgid "File" msgstr "Fájl" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -318,7 +318,7 @@ msgid "HTTPS not supported" msgstr "A HTTPS nem támogatott" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -361,7 +361,7 @@ msgstr "" "lesz használva a kommunikációnál." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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." @@ -391,7 +391,7 @@ msgstr "Információ" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -418,7 +418,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +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." @@ -519,7 +519,7 @@ msgid "No logging" msgstr "Nincs naplózás" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -673,7 +673,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -738,7 +738,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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." @@ -791,12 +791,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -827,7 +827,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +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 " "támogatottak" diff --git a/applications/luci-app-ddns/po/it/ddns.po b/applications/luci-app-ddns/po/it/ddns.po index 92f8dc657d..e13dbe5262 100644 --- a/applications/luci-app-ddns/po/it/ddns.po +++ b/applications/luci-app-ddns/po/it/ddns.po @@ -67,12 +67,12 @@ msgstr "" "Server DNS correttamente!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Percorso certificati CA" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Percorso dei certificati CA che verrà utilizzato per scaricare i dati dei " @@ -120,7 +120,7 @@ msgstr "" "interfacce." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Script aggiornamento personalizzato da usare per aggiornare il tuo DDNS " "Provider." @@ -194,12 +194,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -265,7 +265,7 @@ msgid "File" msgstr "File" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -319,7 +319,7 @@ msgid "HTTPS not supported" msgstr "HTTPS non supportato" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" "Indirizzo/FQDN da validare, se l'aggiornamento IP avviene o è necessario" @@ -363,7 +363,7 @@ msgstr "" "comunicazione in modo predefinito." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -389,7 +389,7 @@ msgstr "Informazioni" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -418,7 +418,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Unità dell'intervallo per l'invio forzato di aggiornamento al provider DDNS." @@ -518,7 +518,7 @@ msgid "No logging" msgstr "Nessun registro" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -668,7 +668,7 @@ msgstr "Seleziona un servizio" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -734,7 +734,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -786,12 +786,12 @@ msgid "Update DDns Services List" msgstr "Aggiorna l'elenco dei servizi DDNS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "URL per il download del file dei servizi. Per impostazione predefinita è il " @@ -822,7 +822,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Valori inferiori al 'Check Interval' (Intervallo di Check) eccetto '0' non " "sono supportati" @@ -964,7 +964,7 @@ msgstr "" #~ msgstr "Configurazione Globale" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Se questa sezione del servizio è disabilitata, non può essere avviata<br /" @@ -977,7 +977,7 @@ msgstr "" #~ "pagina." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "L'URL di aggiornamento da usare per aggiornare il tuo Provider DDNS.<br /" @@ -1090,11 +1090,11 @@ msgstr "" #~ msgid "Details for" #~ msgstr "Dettagli per" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "Directory che contiene i file di registro per ogni sezione avviata" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "" #~ "Directory che contiene il PID e altre informazioni di stato per ogni " diff --git a/applications/luci-app-ddns/po/ja/ddns.po b/applications/luci-app-ddns/po/ja/ddns.po index ffd94d9661..7246ce79fe 100644 --- a/applications/luci-app-ddns/po/ja/ddns.po +++ b/applications/luci-app-ddns/po/ja/ddns.po @@ -67,12 +67,12 @@ msgstr "" "バーを正しく処理しません!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "CA 証明書パス" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "サービスデータをダウンロードするために使用される CA 証明書のパスです。証明書" @@ -120,7 +120,7 @@ msgstr "" "れません。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "DDNS プロバイダーの更新に使用されるカスタム更新スクリプトです。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -192,12 +192,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "実行中の各セクションのログファイルを含むディレクトリです。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" "実行中の各セクションの PID とその他のステータス情報を含むディレクトリです。" @@ -262,7 +262,7 @@ msgid "File" msgstr "ファイル" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "プロバイダーの Web ページにある使用方法に従ってください。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -318,7 +318,7 @@ msgid "HTTPS not supported" msgstr "HTTPS はサポートされていません" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -362,7 +362,7 @@ msgstr "" "で wget が使用されます。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +msgid "If this service section is disabled it will not be started." msgstr "" "このサービスセクションが無効化されている場合、セクションは開始されることがで" "きません。" @@ -390,7 +390,7 @@ msgstr "情報" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "更新スクリプトを挿入または URL を更新" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -419,7 +419,7 @@ msgid "Interval unit to check for changed IP" msgstr "変更された IP のチェック間隔の単位" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "DDNS プロバイダーに送信する強制アップデートの間隔の単位です" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -519,7 +519,7 @@ msgid "No logging" msgstr "ログを記録しない" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "非パブリックかつデフォルトでブロックされる IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -668,7 +668,7 @@ msgstr "サービスを選択" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "サービスはこの IP タイプをサポートしていません" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -733,7 +733,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "デフォルトのゼロを設定すると、無限に再試行します。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "指定された再試行回数後のスクリプトのエラーで実行を停止します" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -784,13 +784,13 @@ msgid "Update DDns Services List" msgstr "DDNS サービスリストを更新" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" "DDNS プロバイダーをアップデートするために使用されるアップデート URL です。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "サービスファイルのダウンロードに使用される URL です。デフォルトでは OpenWrt " @@ -821,7 +821,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "チェック間隔より小さい値はサポートされていません(ゼロを除く)" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -970,7 +970,7 @@ msgstr "サーバー証明書の検証なしにHTTPSを実行する(安全では #~ msgstr "グローバル構成" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "このサービス・セクションが無効の場合、<br />LuCI インターフェースおよびコ" diff --git a/applications/luci-app-ddns/po/ko/ddns.po b/applications/luci-app-ddns/po/ko/ddns.po index 2e303315a0..82a0ecb43b 100644 --- a/applications/luci-app-ddns/po/ko/ddns.po +++ b/applications/luci-app-ddns/po/ko/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "CA 인증서 경로" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "서비스 데이터를 다운로드할 때 사용될 CA 인증서의 경로입니다. IGNORE로 설정하" @@ -109,7 +109,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -179,12 +179,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -248,7 +248,7 @@ msgid "File" msgstr "파일" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -302,7 +302,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -343,7 +343,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -367,7 +367,7 @@ msgstr "정보" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -396,7 +396,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -491,7 +491,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -632,7 +632,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -697,7 +697,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -746,12 +746,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -780,7 +780,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/lt/ddns.po b/applications/luci-app-ddns/po/lt/ddns.po index 6401cee2bc..40a53ec77c 100644 --- a/applications/luci-app-ddns/po/lt/ddns.po +++ b/applications/luci-app-ddns/po/lt/ddns.po @@ -68,12 +68,12 @@ msgstr "" "netvarko duotus „DNS“ serverius tinkamai!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "„CA“ sertifikatų kelias" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "„CA“ sertifikatų kelias bus naudojamas atsisiųsti tarnybos duomenis. " @@ -121,7 +121,7 @@ msgstr "" "sietuvo įvykiuose." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Pasirinktinis naujinimo skriptas, naudojamas Jūsų „DDNS“ teikėjui atnaujinti." @@ -196,12 +196,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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ą." @@ -267,7 +267,7 @@ msgid "File" msgstr "Failas" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -323,7 +323,7 @@ msgid "HTTPS not supported" msgstr "„HTTPS“ yra nepalaikomas" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -369,7 +369,7 @@ msgstr "" "komunikacijos ryšiui, pagal numatytuosius nustatymus." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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." @@ -399,7 +399,7 @@ msgstr "Informacija" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -428,7 +428,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Intervalo vienetas, skirtas priverstiniams naujinimams siųsti – „DDNS“ " "teikėjui." @@ -529,7 +529,7 @@ msgid "No logging" msgstr "Jokio žurnalinimo" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -688,7 +688,7 @@ msgstr "Pasirinkti tarnybą" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -757,7 +757,7 @@ msgstr "" "bandyti iš naujo." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" "Intervalas, tarp kurio prasideda kiekvienas nuoseklus pa(si)kartojimas/" "bandymas iš naujo." @@ -812,14 +812,14 @@ msgid "Update DDns Services List" msgstr "Atnaujinti „DDns“ tarnybų sąrašą" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "„URL“– saitas, kuris yra naudojamas atsisiųsti tarnybų failus. Pagal " @@ -852,7 +852,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +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 " "nepalaikomos" diff --git a/applications/luci-app-ddns/po/mr/ddns.po b/applications/luci-app-ddns/po/mr/ddns.po index 9eea518dff..f62a5cf409 100644 --- a/applications/luci-app-ddns/po/mr/ddns.po +++ b/applications/luci-app-ddns/po/mr/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/ms/ddns.po b/applications/luci-app-ddns/po/ms/ddns.po index 283863d2c9..725eec51a7 100644 --- a/applications/luci-app-ddns/po/ms/ddns.po +++ b/applications/luci-app-ddns/po/ms/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -177,12 +177,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -246,7 +246,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -300,7 +300,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -341,7 +341,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -365,7 +365,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -392,7 +392,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -487,7 +487,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -628,7 +628,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -693,7 +693,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -742,12 +742,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -776,7 +776,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/nb_NO/ddns.po b/applications/luci-app-ddns/po/nb_NO/ddns.po index 2e1543742b..23bdb3a873 100644 --- a/applications/luci-app-ddns/po/nb_NO/ddns.po +++ b/applications/luci-app-ddns/po/nb_NO/ddns.po @@ -61,12 +61,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -110,7 +110,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -180,12 +180,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -249,7 +249,7 @@ msgid "File" msgstr "Fil" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -303,7 +303,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -344,7 +344,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -368,7 +368,7 @@ msgstr "Info" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -395,7 +395,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -490,7 +490,7 @@ msgid "No logging" msgstr "Ingen loggføring" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -631,7 +631,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -696,7 +696,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -745,12 +745,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -779,7 +779,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/nl/ddns.po b/applications/luci-app-ddns/po/nl/ddns.po index a209737056..5a55d7a9f7 100644 --- a/applications/luci-app-ddns/po/nl/ddns.po +++ b/applications/luci-app-ddns/po/nl/ddns.po @@ -66,12 +66,12 @@ msgstr "" "servers niet correct verwerken!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Ca Certs pad" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Ca Certs-pad dat wordt gebruikt om servicegegevens te downloaden. Stel " @@ -119,7 +119,7 @@ msgstr "" "interfacegebeurtenissen." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Aangepast updatescript om te gebruiken voor het updaten van uw DDNS-provider." @@ -199,12 +199,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" "Directory bevat PID en andere statusinformatie voor elke actieve sectie." @@ -269,7 +269,7 @@ msgid "File" msgstr "Bestand" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -325,7 +325,7 @@ msgid "HTTPS not supported" msgstr "HTTPS wordt niet ondersteund" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -368,7 +368,7 @@ msgstr "" "voor communicatie." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -396,7 +396,7 @@ msgstr "Informatie" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -425,7 +425,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +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:1138 @@ -524,7 +524,7 @@ msgid "No logging" msgstr "Geen logboekregistratie" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -672,7 +672,7 @@ msgstr "Selecteer een service" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -739,7 +739,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -790,13 +790,13 @@ msgid "Update DDns Services List" msgstr "Update de lijst met DDns-services" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "URL gebruikt om servicesbestand te downloaden. Standaard is de master " @@ -829,7 +829,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Lagere waarden dan 'Check Interval' behalve '0' worden niet ondersteund" diff --git a/applications/luci-app-ddns/po/pl/ddns.po b/applications/luci-app-ddns/po/pl/ddns.po index 8ab3b01c4d..8f290846a8 100644 --- a/applications/luci-app-ddns/po/pl/ddns.po +++ b/applications/luci-app-ddns/po/pl/ddns.po @@ -68,12 +68,12 @@ msgstr "" "podanych serwerów DNS!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Ścieżka certyfikatów CA" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Ścieżka certyfikatów CA, która będzie używana do pobierania danych usług. " @@ -121,7 +121,7 @@ msgstr "" "zdarzeniach w interfejsie." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Własny skrypt aktualizacji, który ma być używany do aktualizacji dostawcy " "DDNS." @@ -196,12 +196,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -266,7 +266,7 @@ msgid "File" msgstr "Plik" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "Postępuj zgodnie z instrukcjami, które znajdziesz na stronie WEB." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -321,7 +321,7 @@ msgid "HTTPS not supported" msgstr "Protokół HTTPS nie jest obsługiwany" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" "Nazwa hosta/FQDN do sprawdzenia, czy aktualizacja IP ma miejsce lub jest " "konieczna" @@ -366,7 +366,7 @@ msgstr "" "komunikacji." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +msgid "If this service section is disabled it will not be started." msgstr "Jeśli ta sekcja usługi jest wyłączona, nie można jej uruchomić." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:393 @@ -394,7 +394,7 @@ msgstr "Informacje" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "Wstaw skrypt aktualizacji OR lub URL aktualizacji" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -423,7 +423,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Jednostka interwału wymuszająca przesyłanie aktualizacji do dostawcy DDNS." @@ -523,7 +523,7 @@ msgid "No logging" msgstr "Brak rejestrowania" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -670,7 +670,7 @@ msgstr "Wybierz usługę" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "Usługa nie obsługuje tego typu adresu IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -735,7 +735,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" "W przypadku błędu skrypt przestanie działać po określonej liczbie prób." @@ -787,12 +787,12 @@ msgid "Update DDns Services List" msgstr "Zaktualizuj listę usług DDNS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "Adres URL użyty do aktualizacji u dostawcy DDNS." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "Adres URL używany do pobierania pliku usług. Domyślnie jest to główne " @@ -823,7 +823,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "Niższe wartości „Interwał sprawdzania” oprócz „0” nie są obsługiwane" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -975,7 +975,7 @@ msgstr "" #~ msgstr "Konfiguracja globalna" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Jeśli ta sekcja usługi jest wyłączona, nie można jej uruchomić. <br /> " @@ -995,7 +995,7 @@ msgstr "" #~ "stronie." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "Zaktualizuj adres URL, który będzie używany do aktualizacji dostawcy " diff --git a/applications/luci-app-ddns/po/pt/ddns.po b/applications/luci-app-ddns/po/pt/ddns.po index 66c94173f7..5fbc36be36 100644 --- a/applications/luci-app-ddns/po/pt/ddns.po +++ b/applications/luci-app-ddns/po/pt/ddns.po @@ -67,12 +67,12 @@ msgstr "" "corretamente com os servidores de DNS dados!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Caminho de Certs de Ac" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Caminho de Certs Ac que será usado para descarregar os dados dos serviços. " @@ -120,7 +120,7 @@ msgstr "" "eventos de interface." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +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." @@ -194,12 +194,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -265,7 +265,7 @@ msgid "File" msgstr "Ficheiro" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -320,7 +320,7 @@ msgid "HTTPS not supported" msgstr "HTTPS não suportado" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -365,7 +365,7 @@ msgstr "" "comunicação por padrão." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -392,7 +392,7 @@ msgstr "Informação" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -421,7 +421,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Unidade de intervalo para forçar atualizações enviadas ao provedor de DDNS." @@ -521,7 +521,7 @@ msgid "No logging" msgstr "Sem registros" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -666,7 +666,7 @@ msgstr "Selecione um serviço" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -732,7 +732,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -783,12 +783,12 @@ 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:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "Url usado para descarregar o ficheiro de serviços. Por predefinição é o " @@ -819,7 +819,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "Valores mais baixos que 'Check Interval' exceto '0' não são suportados" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -968,7 +968,7 @@ msgstr "" #~ msgstr "Configuração Global" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Se esta secção de serviço estiver desativada, não poderá ser iniciada." @@ -989,7 +989,7 @@ msgstr "" #~ "página." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "URL a ser usada para atualizar seu provedor de DDNS.<br />Siga as " diff --git a/applications/luci-app-ddns/po/pt_BR/ddns.po b/applications/luci-app-ddns/po/pt_BR/ddns.po index 9a0bdb1824..77f728dd0b 100644 --- a/applications/luci-app-ddns/po/pt_BR/ddns.po +++ b/applications/luci-app-ddns/po/pt_BR/ddns.po @@ -67,12 +67,12 @@ msgstr "" "com servidores DNS dados!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Caminho dos certificados Ca" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "O caminho dos certificados Ca que serão utilizados para fazer o download dos " @@ -120,7 +120,7 @@ msgstr "" "eventos de interface." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Scripts de atualização personalizados para serem usados para atualizar seu " "Provedor DDNS." @@ -194,12 +194,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -265,7 +265,7 @@ msgid "File" msgstr "Arquivo" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -319,7 +319,7 @@ msgid "HTTPS not supported" msgstr "HTTPS não suportado" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -364,7 +364,7 @@ msgstr "" "padrão." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -391,7 +391,7 @@ msgstr "Informações" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -420,7 +420,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" "Unidade de intervalo para impor as atualizações enviados ao provedor DDNS." @@ -520,7 +520,7 @@ msgid "No logging" msgstr "Sem registros" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -665,7 +665,7 @@ msgstr "Selecione um serviço" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -731,7 +731,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" "O intervalo entre o qual cada nova tentativa com sucesso será iniciada." @@ -784,12 +784,12 @@ 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:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "A Url usada para baixar o arquivo de serviços. Por padrão é o pacote master " @@ -820,7 +820,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "Valores mais baixos 'Check Interval', exceto '0' não são suportados" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -971,7 +971,7 @@ msgstr "" #~ msgstr "Configuração Global" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Se esta sessão do serviço está desabilidade, ele não pôde ser iniciado." @@ -992,7 +992,7 @@ msgstr "" #~ "página." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "URL a ser usada para atualizar seu provedor DDNS.<br />Siga as instruções " @@ -1117,11 +1117,11 @@ msgstr "" #~ msgid "Details for" #~ msgstr "Detalhes para" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "Diretório contendo arquivos de Log para cada sessão em execução" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "" #~ "Diretório contendo PID e outras informações de status para cada sessão em " diff --git a/applications/luci-app-ddns/po/ro/ddns.po b/applications/luci-app-ddns/po/ro/ddns.po index 711ea6ae0d..c9da371124 100644 --- a/applications/luci-app-ddns/po/ro/ddns.po +++ b/applications/luci-app-ddns/po/ro/ddns.po @@ -68,12 +68,12 @@ msgstr "" "serverele DNS date!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Ca Certs cale de acces" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Ca Certs calea de acces care va fi utilizată pentru a descărca datele " @@ -121,7 +121,7 @@ msgstr "" "de interfață." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Script de actualizare personalizat care va fi utilizat pentru actualizarea " "furnizorului DDNS." @@ -195,14 +195,14 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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." @@ -268,7 +268,7 @@ msgid "File" msgstr "Fișier" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -323,7 +323,7 @@ msgid "HTTPS not supported" msgstr "HTTPS nu este acceptat" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -368,7 +368,7 @@ msgstr "" "în mod implicit pentru comunicare." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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ă." @@ -397,7 +397,7 @@ msgstr "Informație" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -427,7 +427,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +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." @@ -528,7 +528,7 @@ msgid "No logging" msgstr "Fără logare" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -676,7 +676,7 @@ msgstr "Selectați un serviciu" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -743,7 +743,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -796,14 +796,14 @@ msgid "Update DDns Services List" msgstr "Actualizarea listei de servicii DDns" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "Url utilizat pentru a descărca fișierul de servicii. În mod implicit, este " @@ -834,7 +834,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" "Valorile mai mici ale 'Intervalului de verificare', cu excepția lui '0', nu " "sunt acceptate" diff --git a/applications/luci-app-ddns/po/ru/ddns.po b/applications/luci-app-ddns/po/ru/ddns.po index ce5d498a88..d0d4c6c744 100644 --- a/applications/luci-app-ddns/po/ru/ddns.po +++ b/applications/luci-app-ddns/po/ru/ddns.po @@ -71,12 +71,12 @@ msgstr "" "данными серверами DNS!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Путь к сертификатам CA" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Путь к сертификатам CA, которые будут использоваться для загрузки данных " @@ -124,7 +124,7 @@ msgstr "" "событиях интерфейса." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Пользовательский скрипт обновления, который будет использоваться для вашего " "провайдера DDNS." @@ -198,12 +198,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "Каталог, содержащий файлы журналов для каждой запущенной службы." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" "Каталог, содержащий PID-файлы и другую информацию о состоянии каждой " "запущенной службы." @@ -269,7 +269,7 @@ msgid "File" msgstr "Файл" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" "Следуйте инструкциям, которые вы найдете в документации провайдера DDNS." @@ -326,7 +326,7 @@ msgid "HTTPS not supported" msgstr "HTTPS не поддерживается" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" "Имя хоста/полное доменное имя для проверки, если IP-адрес изменяется или " "есть необходимость" @@ -372,7 +372,7 @@ msgstr "" "wget." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -400,7 +400,7 @@ msgstr "Информация" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "Укажите скрипт обновления или URL обновления" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -429,7 +429,7 @@ msgid "Interval unit to check for changed IP" msgstr "Размерность интервала проверки изменений IP-адреса" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "Размерность интервала отправки обновлений провайдеру DDNS." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -528,7 +528,7 @@ msgid "No logging" msgstr "Отключить журналирование" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "Непубличные и заблокированные по умолчанию IP-адреса" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -677,7 +677,7 @@ msgstr "Выберите службу" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "Служба не поддерживает выбранный тип IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -742,7 +742,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "Значение по умолчанию '0' используется для бесконечного повтора." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "Интервал между последовательными попытками." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -793,12 +793,12 @@ msgid "Update DDns Services List" msgstr "Обновить список служб DDNS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "URL для обновления данных провайдера DDNS." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "URL для загрузки файла служб. По умолчанию используется файл из ветки master " @@ -829,7 +829,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "Значения меньше интервала проверки (кроме 0) не поддерживаются" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -976,7 +976,7 @@ msgstr "использовать HTTPS без проверки сертифик #~ msgstr "Глобальные настройки" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "Если этот режим службы отключен, её нельзя будет запустить ни с веб-" @@ -996,7 +996,7 @@ msgstr "использовать HTTPS без проверки сертифик #~ "пользователям." #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "URL обновления используется для обновления вашего DDNS-провайдера.<br /" @@ -1096,11 +1096,11 @@ msgstr "использовать HTTPS без проверки сертифик #~ msgid "Details for" #~ msgstr "Подробности для" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "Папка содержит файлы системного журнала для каждого запуска" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "Папка содержит PID и прочую информацию о состояниии каждого запуска" diff --git a/applications/luci-app-ddns/po/sk/ddns.po b/applications/luci-app-ddns/po/sk/ddns.po index c5de8150fa..95ee82a7d9 100644 --- a/applications/luci-app-ddns/po/sk/ddns.po +++ b/applications/luci-app-ddns/po/sk/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -107,7 +107,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Vlastný aktualizačný skript použitý na aktualizáciu vášho poskytovateľa DDNS." @@ -178,12 +178,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -247,7 +247,7 @@ msgid "File" msgstr "Súbor" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -301,7 +301,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -342,7 +342,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -366,7 +366,7 @@ msgstr "Informácie" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -393,7 +393,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -488,7 +488,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -629,7 +629,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -694,7 +694,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -743,12 +743,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -777,7 +777,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/sv/ddns.po b/applications/luci-app-ddns/po/sv/ddns.po index 77f70e1e9d..4e455c1afe 100644 --- a/applications/luci-app-ddns/po/sv/ddns.po +++ b/applications/luci-app-ddns/po/sv/ddns.po @@ -58,12 +58,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Sökväg till CA-certifikat" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Sökvägen till CA-certifikaten som används för att ladda ner tjänstdata. Välj " @@ -109,7 +109,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Skräddarsytt uppdateringsskript att använda vid uppdatering av din DDNS-" "leverantör." @@ -181,12 +181,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -250,7 +250,7 @@ msgid "File" msgstr "Fil" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -306,7 +306,7 @@ msgid "HTTPS not supported" msgstr "HTTPS stöds inte" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -347,7 +347,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -371,7 +371,7 @@ msgstr "Information" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -398,7 +398,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -493,7 +493,7 @@ msgid "No logging" msgstr "Ingen loggning" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -634,7 +634,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -699,7 +699,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -748,12 +748,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -782,7 +782,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/templates/ddns.pot b/applications/luci-app-ddns/po/templates/ddns.pot index 682a33dee2..d3b91c0e83 100644 --- a/applications/luci-app-ddns/po/templates/ddns.pot +++ b/applications/luci-app-ddns/po/templates/ddns.pot @@ -49,12 +49,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -98,7 +98,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -168,12 +168,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -237,7 +237,7 @@ msgid "File" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -291,7 +291,7 @@ msgid "HTTPS not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -332,7 +332,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -356,7 +356,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -383,7 +383,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -478,7 +478,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -619,7 +619,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -684,7 +684,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -733,12 +733,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -767,7 +767,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/tr/ddns.po b/applications/luci-app-ddns/po/tr/ddns.po index 36a4305407..cd4701f2f9 100644 --- a/applications/luci-app-ddns/po/tr/ddns.po +++ b/applications/luci-app-ddns/po/tr/ddns.po @@ -67,12 +67,12 @@ msgstr "" "doğru şekilde işlemez!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Ca Sertifikaları yolu" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Servis verilerini indirmek için kullanılacak Ca Sertifikaları yolu. " @@ -120,7 +120,7 @@ msgstr "" "başlatılmamaktadır." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +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ı." @@ -195,12 +195,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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:17 @@ -264,7 +264,7 @@ msgid "File" msgstr "Dosya" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -320,7 +320,7 @@ msgid "HTTPS not supported" msgstr "HTTPS desteklenmiyor" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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" @@ -365,7 +365,7 @@ msgstr "" "kullanılır." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -391,7 +391,7 @@ msgstr "Bilgi" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -420,7 +420,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +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." @@ -520,7 +520,7 @@ msgid "No logging" msgstr "Günlük kaydı yok" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -672,7 +672,7 @@ msgstr "Bir hizmet seçin" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -739,7 +739,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -790,12 +790,12 @@ msgid "Update DDns Services List" msgstr "DDns Hizmetleri Listesini Güncelle" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "Hizmet dosyasını indirmek için kullanılan URL. Varsayılan olarak ana openwrt " @@ -826,7 +826,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "\"0\" dışındaki \"Kontrol Aralığı\" altındaki değerler desteklenmez" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/uk/ddns.po b/applications/luci-app-ddns/po/uk/ddns.po index 00aaade561..e34969028f 100644 --- a/applications/luci-app-ddns/po/uk/ddns.po +++ b/applications/luci-app-ddns/po/uk/ddns.po @@ -66,12 +66,12 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Шлях до CA сертифікатів" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" @@ -117,7 +117,7 @@ msgstr "" "інтерфейсу." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "" "Користувацький скрипт оновлення, який буде використовуватися для оновлення " "вашого постачальника DDNS." @@ -189,12 +189,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -258,7 +258,7 @@ msgid "File" msgstr "Файл" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -312,7 +312,7 @@ msgid "HTTPS not supported" msgstr "HTTPS не підтримується" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +msgid "Hostname/FQDN to validate, whether an IP update is necessary" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:790 @@ -353,7 +353,7 @@ msgid "" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -377,7 +377,7 @@ msgstr "Інформація" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -404,7 +404,7 @@ msgid "Interval unit to check for changed IP" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -499,7 +499,7 @@ msgid "No logging" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -640,7 +640,7 @@ msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -705,7 +705,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -754,12 +754,12 @@ msgid "Update DDns Services List" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" @@ -788,7 +788,7 @@ msgid "Values below 5 minutes == 300 seconds are not supported" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/vi/ddns.po b/applications/luci-app-ddns/po/vi/ddns.po index 0dbf7a3667..d91ab73469 100644 --- a/applications/luci-app-ddns/po/vi/ddns.po +++ b/applications/luci-app-ddns/po/vi/ddns.po @@ -67,12 +67,12 @@ msgstr "" "xác!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Đường dẫn Ca Certs" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "" "Đường dẫn Ca Certs sẽ được sử dụng để tải dữ liệu dịch vụ. Đặt IGNORE để bỏ " @@ -120,7 +120,7 @@ msgstr "" "giao diện." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:721 -msgid "Custom update script to be used for updating your DDNS Provider." +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." @@ -194,12 +194,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +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 msgid "" -"Directory contains PID and other status information for each running section." +"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:17 @@ -263,7 +263,7 @@ msgid "File" msgstr "Tệp" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +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 @@ -318,7 +318,7 @@ msgid "HTTPS not supported" msgstr "Không hỗ trợ HTTPS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -361,7 +361,7 @@ msgstr "" "định." #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -387,7 +387,7 @@ msgstr "Thông Tin" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +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:395 @@ -416,7 +416,7 @@ 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:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +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." @@ -516,7 +516,7 @@ msgid "No logging" msgstr "Không có nhật ký" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +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 @@ -664,7 +664,7 @@ msgstr "Chọn một dịch vụ" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +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:659 @@ -729,7 +729,7 @@ 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:1036 -msgid "The interval between which each successive retry commences." +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:505 @@ -780,12 +780,12 @@ 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:702 -msgid "Update URL to be used for updating your DDNS Provider." +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:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "Url được sử dụng để tải xuống tệp dịch vụ. Mặc định là kho dữ liệu gói " @@ -816,7 +816,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "Không hỗ trợ giá trị thấp hơn 'Check Interval' trừ '" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 diff --git a/applications/luci-app-ddns/po/zh_Hans/ddns.po b/applications/luci-app-ddns/po/zh_Hans/ddns.po index 9634d35c5c..1f8b37ff7f 100644 --- a/applications/luci-app-ddns/po/zh_Hans/ddns.po +++ b/applications/luci-app-ddns/po/zh_Hans/ddns.po @@ -66,12 +66,12 @@ msgid "" msgstr "当前编译版本中的 BusyBox 的 nslookup 不能正确处理给定的 DNS 服务器!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "Ca 证书路径" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "用于下载服务数据的 Ca 证书路径。设置 IGNORE 将跳过证书验证。" @@ -115,7 +115,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "用来更新 DDNS 的自定义脚本。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -185,12 +185,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "用于存放各个项目运行日志的的目录。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "用于存放各个项目运行时的PID和其他状态信息的目录。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -254,7 +254,7 @@ msgid "File" msgstr "文件" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "按照网页上的说明操作。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -308,7 +308,7 @@ msgid "HTTPS not supported" msgstr "不支持 HTTPS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -349,7 +349,7 @@ msgid "" msgstr "如果 Wget 和 cURL 包都安装了,默认会用 Wget 来通信。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -373,7 +373,7 @@ msgstr "信息" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "插入更新脚本或更新 URL" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -401,7 +401,7 @@ msgid "Interval unit to check for changed IP" msgstr "检查 IP 变更间隔的单位" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "强制发送更新到 DDNS 提供商的间隔单位。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -498,7 +498,7 @@ msgid "No logging" msgstr "不记录" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "非公网 IP 以及默认被屏蔽的 IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -639,7 +639,7 @@ msgstr "选择服务" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "服务不支持此 ip 类型" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -704,7 +704,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "默认设置“0”将无限重试。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "发起连续重试之间相隔的时长。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -755,12 +755,12 @@ msgid "Update DDns Services List" msgstr "更新 DDNS 服务列表" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "用于向 DDNS 提供商进行更新的 更新URL。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "用于下载服务文件的 Url 。默认情况下是主 openwrt ddns 包仓库。" @@ -789,7 +789,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "不支持除低于“检查间隔”的值,除了“ 0”" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -921,7 +921,7 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)" #~ msgstr "全局配置" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "如果服务配置被禁用,那么它将不能被启动。<br />无论是通过 LuCI 页面还是通过" @@ -939,7 +939,7 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)" #~ msgstr "强烈不建议初次使用的用户修改本页设定。" #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "DDNS 提供商用于更新 DDNS 的 URL。<br />跟随教程,您可以在它们的网站上找到" @@ -1051,11 +1051,11 @@ msgstr "使用 HTTPS 但不检查服务器证书(不安全)" #~ msgid "Details for" #~ msgstr "详情" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "保存每一个运行中的设置的运行日志的目录" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "保存每个运行中的设置的PID以及其它状态信息的目录" diff --git a/applications/luci-app-ddns/po/zh_Hant/ddns.po b/applications/luci-app-ddns/po/zh_Hant/ddns.po index 7ba201b774..59ce7c02a8 100644 --- a/applications/luci-app-ddns/po/zh_Hant/ddns.po +++ b/applications/luci-app-ddns/po/zh_Hant/ddns.po @@ -67,12 +67,12 @@ msgid "" msgstr "現行編譯版本中 BusyBox 的 nslookup 無法正確處理給定的 DNS 伺服器!" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:452 -msgid "Ca Certs path" +msgid "CA Certs path" msgstr "CA 憑證路徑" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:453 msgid "" -"Ca Certs path that will be used to download services data. Set IGNORE to " +"CA certificates path that will be used to download services data. Set IGNORE to " "skip certificate validation." msgstr "下載服務資料使用的 CA 憑證路徑;設定 IGNORE 來略過憑證驗證。" @@ -116,7 +116,7 @@ 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:721 -msgid "Custom update script to be used for updating your DDNS Provider." +msgid "Custom update script for updating your DDNS Provider." msgstr "使用自訂更新指令碼來更新您的 DDNS 提供者。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:701 @@ -186,12 +186,12 @@ 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:426 -msgid "Directory contains Log files for each running section." +msgid "Contains Log files for each running section." msgstr "包含每個運行部分的日誌檔目錄。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:420 msgid "" -"Directory contains PID and other status information for each running section." +"Contains PID and other status information for each running section." msgstr "包含每個運行區段的 PID 和其他狀態資訊目錄。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:17 @@ -255,7 +255,7 @@ msgid "File" msgstr "檔案" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:704 -msgid "Follow instructions you will find on their WEB page." +msgid "Follow instructions found on their WEB page." msgstr "請跟隨您在網頁上找到的說明進行操作。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:412 @@ -309,7 +309,7 @@ msgid "HTTPS not supported" msgstr "不支援 HTTPS" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:623 -msgid "Hostname/FQDN to validate, if IP update happen or necessary" +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:790 @@ -350,7 +350,7 @@ msgid "" msgstr "如果同時安裝了 Wget 和 cURL 套件,則預設使用 Wget 來通信。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:614 -msgid "If this service section is disabled it could not be started." +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 @@ -374,7 +374,7 @@ msgstr "資訊" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:713 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:730 -msgid "Insert a Update Script OR a Update URL" +msgid "Insert an Update Script OR an Update URL" msgstr "插入更新指令碼或更新 URL" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:395 @@ -402,7 +402,7 @@ msgid "Interval unit to check for changed IP" msgstr "檢查 IP 變更的間隔時間單位" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1016 -msgid "Interval unit to force updates sent to DDNS Provider." +msgid "Interval unit for forced updates sent to DDNS Provider." msgstr "強制將更新發送至 DDNS 提供者的間隔時間單位" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1138 @@ -499,7 +499,7 @@ msgid "No logging" msgstr "無日誌" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:402 -msgid "Non-public and by default blocked IP's" +msgid "Non-public and by default blocked IPs" msgstr "非公共和預設受阻的 IP" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:218 @@ -640,7 +640,7 @@ msgstr "選擇一項服務" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:526 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:660 #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:680 -msgid "Service doesn't support this ip type" +msgid "Service doesn't support this IP type" msgstr "服務不支援此 IP 類型" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:659 @@ -705,7 +705,7 @@ msgid "The default setting of '0' will retry infinitely." msgstr "如果設定為預設值「0」,將無限重試。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:1036 -msgid "The interval between which each successive retry commences." +msgid "The interval between which each subsequent retry commences." msgstr "當出錯時,指令碼將在給定的重試次數執行完成後退出" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:505 @@ -755,12 +755,12 @@ msgid "Update DDns Services List" msgstr "更新 DDNS 服務列表" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:702 -msgid "Update URL to be used for updating your DDNS Provider." +msgid "Update URL for updating your DDNS Provider." msgstr "使用更新 URL 來更新您的 DDNS 提供者。" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:457 msgid "" -"Url used to download services file. By default is the master openwrt ddns " +"Source URL for services file. Defaults to the master openwrt ddns " "package repo." msgstr "" "下載服務檔使用的 URL,預設為 OpenWrt 儲存庫中 master 分支下的 DDNS 套件。" @@ -790,7 +790,7 @@ 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:1009 -msgid "Values lower 'Check Interval' except '0' are not supported" +msgid "Values lower than 'Check Interval' except '0' are invalid" msgstr "除「0」之外,不支援比「檢查間隔時間」低的值" #: applications/luci-app-ddns/htdocs/luci-static/resources/view/ddns/overview.js:15 @@ -927,7 +927,7 @@ msgstr "使用 HTTPS 但不檢查伺服器憑證 (不安全)" #~ msgstr "全域設定" #~ msgid "" -#~ "If this service section is disabled it could not be started.<br />Neither " +#~ "If this service section is disabled it will not be started.<br />Neither " #~ "from LuCI interface nor from console" #~ msgstr "" #~ "如果服務配置被禁用,那麼它將不能被啟動。<br />無論是通過 LuCI 頁面或者是通" @@ -938,7 +938,7 @@ msgstr "使用 HTTPS 但不檢查伺服器憑證 (不安全)" #~ msgstr "強烈不建議初次使用的使用者修改本頁設定。" #~ msgid "" -#~ "Update URL to be used for updating your DDNS Provider.<br />Follow " +#~ "Update URL for updating your DDNS Provider.<br />Follow " #~ "instructions you will find on their WEB page." #~ msgstr "" #~ "DDNS 提供商用於更新 DDNS 的 URL。<br />跟隨教程,您可以在它們的網站上找到" @@ -1027,11 +1027,11 @@ msgstr "使用 HTTPS 但不檢查伺服器憑證 (不安全)" #~ msgid "Details for" #~ msgstr "詳情" -#~ msgid "Directory contains Log files for each running section" +#~ msgid "Contains Log files for each running section" #~ msgstr "儲存每一個執行中的設定的執行日誌的目錄" #~ msgid "" -#~ "Directory contains PID and other status information for each running " +#~ "Contains PID and other status information for each running " #~ "section" #~ msgstr "儲存每個執行中的設定的PID以及其它狀態資訊的目錄" |