diff options
Diffstat (limited to 'applications/luci-app-acme')
34 files changed, 2967 insertions, 1031 deletions
diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 9f9ff079e..0899b768f 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -24,7 +24,7 @@ return view.extend({ "Check the logs for progress and any errors.")); s = m.section(form.TypedSection, "acme", _("ACME global config")); - s.anonymous = true + s.anonymous = true; o = s.option(form.Value, "state_dir", _("State directory"), _("Where certs and other state files are kept.")); @@ -43,15 +43,19 @@ return view.extend({ s.anonymous = false; s.addremove = true; - o = s.option(form.Flag, "enabled", _("Enabled")); + o = s.tab("general", _("General Settings")); + o = s.tab("challenge", _("Challenge Validation")); + o = s.tab("advanced", _('Advanced Settings')); + + o = s.taboption('general', form.Flag, "enabled", _("Enabled")); o.rmempty = false; - o = s.option(form.Flag, "use_staging", _("Use staging server"), + o = s.taboption('general', form.Flag, "use_staging", _("Use staging server"), _("Get certificate from the Letsencrypt staging server " + "(use for testing; the certificate won't be valid).")); o.rmempty = false; - o = s.option(form.ListValue, "keylength", _("Key size"), + o = s.taboption('general', form.ListValue, "keylength", _("Key size"), _("Key size (and type) for the generated certificate.")); o.value("2048", _("RSA 2048 bits")); o.value("3072", _("RSA 3072 bits")); @@ -61,8 +65,14 @@ return view.extend({ o.default = "2048"; o.rmempty = false; + o = s.taboption('general', form.DynamicList, "domains", _("Domain names"), + _("Domain names to include in the certificate. " + + "The first name will be the subject name, subsequent names will be alt names. " + + "Note that all domain names must point at the router in the global DNS.")); + o.datatype = "list(string)"; + if (stats[1].type === 'file') { - o = s.option(form.Flag, "update_uhttpd", _("Use for uhttpd"), + o = s.taboption('general', form.Flag, "update_uhttpd", _("Use for uhttpd"), _("Update the uhttpd config with this certificate once issued " + "(only select this for one certificate). " + "Is also available luci-app-uhttpd to configure uhttpd form the LuCI interface.")); @@ -70,7 +80,7 @@ return view.extend({ } if (stats[0].type === 'file') { - o = s.option(form.Flag, "update_nginx", _("Use for nginx"), + o = s.taboption('general', form.Flag, "update_nginx", _("Use for nginx"), _("Update the nginx config with this certificate once issued " + "(only select this for one certificate). " + "Nginx must support ssl, if not it won't start as it needs to be " + @@ -78,41 +88,66 @@ return view.extend({ o.rmempty = false; } - o = s.option(form.Value, "webroot", _("Webroot directory"), + o = s.taboption('challenge', form.ListValue, "validation_method", _("Validation method"), + _("Standalone mode will use the built-in webserver of acme.sh to issue a certificate. " + + "Webroot mode will use an existing webserver to issue a certificate. " + + "DNS mode will allow you to use the DNS API of your DNS provider to issue a certificate.")); + o.value("standalone", _("Standalone")); + o.value("webroot", _("Webroot")); + o.value("dns", _("DNS")); + o.default = "standalone"; + + o = s.taboption('challenge', form.Value, "webroot", _("Webroot directory"), _("Webserver root directory. Set this to the webserver " + "document root to run Acme in webroot mode. The web " + "server must be accessible from the internet on port 80.")); o.optional = true; + o.depends("validation_method", "webroot"); - o = s.option(form.DynamicList, "domains", _("Domain names"), - _("Domain names to include in the certificate. " + - "The first name will be the subject name, subsequent names will be alt names. " + - "Note that all domain names must point at the router in the global DNS.")); - o.datatype = "list(string)"; - - s.option(form.Value, "dns", _("DNS API"), + o = s.taboption('challenge', form.Value, "dns", _("DNS API"), _("To use DNS mode to issue certificates, set this to the name of a DNS API supported by acme.sh. " + "See https://github.com/acmesh-official/acme.sh/wiki/dnsapi for the list of available APIs. " + "In DNS mode, the domain name does not have to resolve to the router IP. " + "DNS mode is also the only mode that supports wildcard certificates. " + "Using this mode requires the acme-dnsapi package to be installed.")); + o.depends("validation_method", "dns"); - o = s.option(form.DynamicList, "credentials", _("DNS API credentials"), + o = s.taboption('challenge', form.DynamicList, "credentials", _("DNS API credentials"), _("The credentials for the DNS API mode selected above. " + "See https://github.com/acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required by each API. " + "Add multiple entries here in KEY=VAL shell variable format to supply multiple credential variables.")) o.datatype = "list(string)"; + o.depends("validation_method", "dns"); - s.option(form.Value, "calias", _("Challenge Alias"), + o = s.taboption('challenge', form.Value, "calias", _("Challenge Alias"), _("The challenge alias to use for ALL domains. " + "See https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode for the details of this process. " + "LUCI only supports one challenge alias per certificate.")); + o.depends("validation_method", "dns"); - s.option(form.Value, "dalias", _("Domain Alias"), + o = s.taboption('challenge', form.Value, "dalias", _("Domain Alias"), _("The domain alias to use for ALL domains. " + "See https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode for the details of this process. " + "LUCI only supports one challenge domain per certificate.")); + o.depends("validation_method", "dns"); + + o = s.taboption('advanced', form.Flag, "use_acme_server", + _("Custom ACME CA"), _("Use a custom CA instead of Let's Encrypt.")); + o.depends("use_staging", "0"); + o.default = false; + + o = s.taboption('advanced', form.Value, "acme_server", _("ACME server URL"), + _("Custom ACME server directory URL.")); + o.depends("use_acme_server", "1"); + o.placeholder = "https://api.buypass.com/acme/directory"; + o.optional = true; + + o = s.taboption('advanced', form.Value, 'days', _('Days until renewal')); + o.optional = true; + o.placeholder = 90; + o.datatype = 'uinteger'; return m.render() } }) + diff --git a/applications/luci-app-acme/po/ar/acme.po b/applications/luci-app-acme/po/ar/acme.po index b65d9d26b..87f031283 100644 --- a/applications/luci-app-acme/po/ar/acme.po +++ b/applications/luci-app-acme/po/ar/acme.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-04 18:32+0000\n" -"Last-Translator: DJEBRI Ahmed El Amine <djebri.emp@gmail.com>\n" +"PO-Revision-Date: 2020-10-21 08:14+0000\n" +"Last-Translator: malrubaei <mhmd.alrubaei@gmail.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/ar/>\n" "Language: ar\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.1\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" @@ -23,35 +23,63 @@ msgstr "شهادات بيئة إدارة الشهادات التلقائية" msgid "ACME global config" msgstr "التكوين العالمي لبيئة إدارة الشهادات التلقائية" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "حساب البريد الإلكتروني" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "تكوين الشهادة" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "الاسم المستعار لاعتراض" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "واجهة برمجة تطبيقات لنظام أسماء النطاقات" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "مؤهلات واجهة برمجة تطبيقات لنظام أسماء النطاقات" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "الاسم المستعار للنطاق" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "أسماء النطاقات" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -61,11 +89,11 @@ msgstr "" "وستكون الأسماء اللاحقة أسماء بديلة. لاحظ أن جميع أسماء النطاقات يجب أن تشير " "إلى جهاز التوجيه في نظام أسماء النطاقات العام." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -77,11 +105,15 @@ msgstr "عنوان البريد الإلكتروني لربطه بمفتاح ا msgid "Enable debug logging" msgstr "مكن السجل للتصحيح البرمجي" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" -msgstr "ممكّن" +msgstr "مفعل" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -93,41 +125,53 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "منح الوصول فريد معرف العميل ل luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "حجم المفتاح" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "حجم المفتاح (والنوع) للشهادة التي تم إنشاؤها." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "دليل الدولة" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -"الاسم المستعار الاعتراضي لاستخدامه لكل أسماء النقابات. انظرإلى https://github" -".com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل هذه " -"العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة." +"الاسم المستعار الاعتراضي لاستخدامه لكل أسماء النقابات. انظرإلى https://" +"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل " +"هذه العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -139,7 +183,7 @@ msgstr "" "الاعتماد التي تتطلبها كل واجهة برمجة تطبيقات. أضف إدخالات متعددة هنا في " "تنسيق متغير shell \"KEY = VAL\" لتوفير متغيرات اعتماد متعددة." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -164,7 +208,7 @@ msgstr "" "بروتوكول الإنترنت العام لجهاز التوجيه. بمجرد التكوين ، يمكن أن يستغرق إصدار " "الشهادات بعض الوقت. يمكنك التحقق من سجلات التقدم وأية أخطاء." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -179,42 +223,54 @@ msgstr "" "إلى IP الخاص بالموجه. وضع DNS هو أيضًا الوضع الوحيد الذي يدعم شهادات أحرف " "البدل. يتطلب استخدام هذا الوضع تثبيت حزمة acme-dnsapi." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -"قم بتحديث nginx config بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة واحدة)" -". يجب أن يدعم nginx SSL ، إذا لم يكن كذلك ، فلن يبدأ لأنه يحتاج إلى تجميع مع " -"دعم SSL لاستخدام خيارات الشهادة" +"قم بتحديث nginx config بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة " +"واحدة). يجب أن يدعم nginx SSL ، إذا لم يكن كذلك ، فلن يبدأ لأنه يحتاج إلى " +"تجميع مع دعم SSL لاستخدام خيارات الشهادة" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -"قم بتحديث تكوين uhttpd بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة واحدة)" -". كما يتوفر luci-app-uhttpd لتكوين uhttpd من واجهة LuCI." +"قم بتحديث تكوين uhttpd بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة " +"واحدة). كما يتوفر luci-app-uhttpd لتكوين uhttpd من واجهة LuCI." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "استخدم ل nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "استخدم ل uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "استخدم خادم الترحيل" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "دليل Webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/bg/acme.po b/applications/luci-app-acme/po/bg/acme.po index 11c74a2d1..f27682a46 100644 --- a/applications/luci-app-acme/po/bg/acme.po +++ b/applications/luci-app-acme/po/bg/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/bn_BD/acme.po b/applications/luci-app-acme/po/bn_BD/acme.po index b2cbf1523..81ddd2a45 100644 --- a/applications/luci-app-acme/po/bn_BD/acme.po +++ b/applications/luci-app-acme/po/bn_BD/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/ca/acme.po b/applications/luci-app-acme/po/ca/acme.po index 3b75ed71f..cc28f7a18 100644 --- a/applications/luci-app-acme/po/ca/acme.po +++ b/applications/luci-app-acme/po/ca/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/cs/acme.po b/applications/luci-app-acme/po/cs/acme.po index a41fe9ac3..3cd338b50 100644 --- a/applications/luci-app-acme/po/cs/acme.po +++ b/applications/luci-app-acme/po/cs/acme.po @@ -1,12 +1,18 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-10-27 21:26+0000\n" +"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsacme/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 4.3.2-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" -msgstr "" +msgstr "Certifikáty ACME" #: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 msgid "ACME certs" @@ -14,105 +20,157 @@ msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26 msgid "ACME global config" -msgstr "" +msgstr "Globální konfigurace ACME" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "URL serveru ACME" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" -msgstr "" +msgstr "E-mail k účtu" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "Pokročilá nastavení" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" -msgstr "" +msgstr "Konfigurace certifikátu" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 -msgid "DNS API" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "Vlastní ACME CA" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "Adresář URL vlastního serveru ACME." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "DNS" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +msgid "DNS API" +msgstr "DNS API" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "Dny do obnovení" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" -msgstr "" +msgstr "Alias domény" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" -msgstr "" +msgstr "Doménové názvy" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" +"Doménové názvy, které se mají zahrnout do certifikátu. První název je název/" +"jméno subjektu, další jsou alternativní názvy. Mějte na paměti, že všechny " +"doménové názvy musejí v globálním DNS ukazovat na router." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" -msgstr "" +msgstr "ECC 256 bitů" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" -msgstr "" +msgstr "ECC 384 bitů" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:35 msgid "Email address to associate with account key." -msgstr "" +msgstr "E-mailová adresa pro přiřazení ke klíči účtu." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39 msgid "Enable debug logging" -msgstr "" +msgstr "Povolit ladicí protokolování" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" -msgstr "" +msgstr "Zapnuto" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "Obecná nastavení" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." msgstr "" +"Získat certifikát z pracovního serveru Letsencrypt (používá se k testování, " +"certifikát nebude platný)." #: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3 msgid "Grant UCI access for luci-app-acme" -msgstr "" +msgstr "Udělit přístup UCI pro luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" -msgstr "" +msgstr "Velikost klíče" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." -msgstr "" +msgstr "Velikost (a typ) klíče pro generovaný certifikát." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" -msgstr "" +msgstr "RSA 2048 bitů" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" -msgstr "" +msgstr "RSA 3072 bitů" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" +msgstr "RSA 4096 bitů" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "Samostatný" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." msgstr "" +"Samostatný režim bude vydávání certifikátů používat vestavěný webový server " +"acme.sh. Režim webroot bude používat existující webový server. DNS režim " +"bude umožňovat použití DNS API vašeho poskytovatele DNS." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" -msgstr "" +msgstr "Stavový adresář" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,12 +178,15 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge domain per certificate." msgstr "" +"Doménový alias k použití pro VŠECHNY domény. Viz https://github.com/" +"acmesh-official/acme.sh/wiki/DNS-alias-mode pro více informací o tomto " +"procesu. LUCI podporuje jen jednu challenge doménu pro každý certifikát." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 msgid "" @@ -136,8 +197,15 @@ msgid "" "address. Once configured, issuing certificates can take a while. Check the " "logs for progress and any errors." msgstr "" +"Konfiguruje ACME (Letsencrypt) pro automatickou instalaci certifikátu. " +"Jednoduše toto vyplňte, abyste měli router nakonfigurován pro certifikáty od " +"Letsencrypt pro webové rozhraní. Nezapomeňte, že doménové názvy v " +"certifikátu už musejí být nakonfigurovány tak, aby ukazovaly na veřejnou IP " +"adresu routeru. Jakmile bude konfigurace dokončena, vydávání certifikátů " +"bude chvíli trvat. Kontrolujte protokoly, kde uvidíte průběh a jakékoli " +"chyby." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,43 +215,58 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "Namísto Let's Encrypt použít vlastní CA." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" -msgstr "" +msgstr "Použít pro nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" -msgstr "" +msgstr "Použít pro uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" -msgstr "" +msgstr "Použijte pracovní server" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "Metoda ověření" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "Webroot" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" -msgstr "" +msgstr "Adresář Webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " "port 80." msgstr "" +"Kořenový adresář webového serveru. Pro spuštění ACME v režimu webroot " +"nastavte tento adresář jako kořen webu ve webovém serveru. Server musí být " +"přístupný z Internetu na portu 80." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 msgid "Where certs and other state files are kept." -msgstr "" +msgstr "Kde jsou uchovávány certifikáty a další stavové soubory." diff --git a/applications/luci-app-acme/po/de/acme.po b/applications/luci-app-acme/po/de/acme.po index e4786b325..ff52f4da0 100644 --- a/applications/luci-app-acme/po/de/acme.po +++ b/applications/luci-app-acme/po/de/acme.po @@ -22,35 +22,63 @@ msgstr "ACME Zertifikate" msgid "ACME global config" msgstr "Globale ACME Einstellungen" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Account E-Mail" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Zertifikateinstellungen" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Challenge Alias" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API Zugangsdaten" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Domänen Alias" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Domainnamen" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -61,11 +89,11 @@ msgstr "" "Beachten Sie, dass alle Domänennamen im globalen DNS auf den Router zeigen " "müssen." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 bits" @@ -77,11 +105,15 @@ msgstr "E-Mail Adresse, welche mit dem Account Key verknüpft wird." msgid "Enable debug logging" msgstr "Aktiviere Debug-Protokollierung" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Aktiviert" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -93,31 +125,43 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Gewähre UCI Zugriff auf luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Schlüssellänge" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Schlüsselgröße (und -typ) für das generierte Zertifikat." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA 2048 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA 3072 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA 4096 bits" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Statusverzeichnis" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -127,7 +171,7 @@ msgstr "" "Vorgang finden Sie unter https://github.com/acmesh-official/acme.sh/wiki/DNS-" "alias-mode. LUCI unterstützt nur einen Challenge-Alias pro Zertifikat." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -140,16 +184,16 @@ msgstr "" "Einträge im Shell-Variablenformat KEY = VAL hinzu, um mehrere " "Anmeldeinformationsvariablen bereitzustellen." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge domain per certificate." msgstr "" "Der Domänenalias, der für ALLE Domänen verwendet werden soll. Weitere " -"Informationen zu diesem Vorgang finden Sie unter https://github.com/" -"acmesh-official/acme.sh/wiki/DNS-alias-mode. LUCI unterstützt nur eine " -"Challenge-Domain pro Zertifikat." +"Informationen zu diesem Vorgang finden Sie unter https://github.com/acmesh-" +"official/acme.sh/wiki/DNS-alias-mode. LUCI unterstützt nur eine Challenge-" +"Domain pro Zertifikat." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 msgid "" @@ -169,7 +213,7 @@ msgstr "" "Zertifikaten eine Weile dauern. Überprüfen Sie die Protokolle auf " "Fortschritt und Fehler." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -186,7 +230,7 @@ msgstr "" "Platzhalterzertifikate unterstützt. Für die Verwendung dieses Modus muss das " "acme-dnsapi-Paket installiert sein." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " @@ -198,7 +242,7 @@ msgstr "" "Unterstützung kompiliert werden muss, um Zertifizierungsoptionen verwenden " "zu können" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " @@ -208,23 +252,35 @@ msgstr "" "Zertifikat (wählen Sie dies nur für ein Zertifikat aus). Es ist auch luci-" "app-uhttpd verfügbar, um uhttpd über die LuCI-Schnittstelle zu konfigurieren." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "Verwenden Sie für Nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "Für uhttpd verwenden" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "Staging-Server verwenden" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Webroot-Verzeichnis" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/el/acme.po b/applications/luci-app-acme/po/el/acme.po index a04248ff3..ba5ccafee 100644 --- a/applications/luci-app-acme/po/el/acme.po +++ b/applications/luci-app-acme/po/el/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/en/acme.po b/applications/luci-app-acme/po/en/acme.po index 23de92f40..ff61a4fb3 100644 --- a/applications/luci-app-acme/po/en/acme.po +++ b/applications/luci-app-acme/po/en/acme.po @@ -22,35 +22,63 @@ msgstr "ACME certs" msgid "ACME global config" msgstr "ACME global config" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Account email" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Certificate config" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Challenge Alias" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API credentials" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Domain Alias" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Domain names" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -60,11 +88,11 @@ msgstr "" "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -76,11 +104,15 @@ msgstr "Email address to associate with account key." msgid "Enable debug logging" msgstr "Enable debug logging" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Enabled" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -92,38 +124,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -131,7 +175,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -148,7 +192,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -158,37 +202,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/es/acme.po b/applications/luci-app-acme/po/es/acme.po index 0cfbfc151..28f5f65fc 100644 --- a/applications/luci-app-acme/po/es/acme.po +++ b/applications/luci-app-acme/po/es/acme.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-08-07 03:34+0000\n" -"Last-Translator: Álvaro Fernández Rojas <noltari@gmail.com>\n" +"PO-Revision-Date: 2020-10-31 10:05+0000\n" +"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/es/>\n" "Language: es\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" @@ -22,35 +22,63 @@ msgstr "Certificados ACME" msgid "ACME global config" msgstr "Configuración global de ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "URL del servidor ACME" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Cuenta de email" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "Configuración avanzada" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Configuración de certificado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Alias de desafío" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "Validación de desafío" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "CA ACME personalizado" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "URL del directorio del servidor ACME personalizado." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "DNS" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "API de DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Credenciales de API de DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "Días hasta la renovación" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Alias de dominio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Nombres de dominio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -61,11 +89,11 @@ msgstr "" "en cuenta que todos los nombres de dominio deben apuntar al enrutador en el " "DNS global." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC de 256 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC de 384 bits" @@ -78,11 +106,15 @@ msgstr "" msgid "Enable debug logging" msgstr "Activar registro de depuración" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Activado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "Configuración general" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -94,31 +126,47 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Conceder acceso UCI para luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Tamaño de clave" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Tamaño de clave (y tipo) para el certificado generado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA de 2048 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA de 3072 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA de 4096 bits" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "Ser único" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" +"El modo autónomo utilizará el servidor web integrado de acme.sh para emitir " +"un certificado. El modo Webroot utilizará un servidor web existente para " +"emitir un certificado. El modo DNS le permitirá utilizar la API de DNS de su " +"proveedor de DNS para emitir un certificado." + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Directorio del estado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -128,7 +176,7 @@ msgstr "" "com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles sobre " "este proceso. LUCI solo admite un alias de desafío por certificado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -141,16 +189,15 @@ msgstr "" "en formato de variable de shell KEY=VAL para proporcionar múltiples " "variables de credenciales." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge domain per certificate." msgstr "" -"El alias de dominio que se usará para TODOS los dominios. Consulte " -"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener " -"detalles sobre este proceso. LUCI solo admite un dominio de desafío por " -"certificado." +"El alias de dominio que se usará para TODOS los dominios. Consulte https://" +"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles " +"sobre este proceso. LUCI solo admite un dominio de desafío por certificado." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 msgid "" @@ -169,7 +216,7 @@ msgstr "" "emisión de certificados puede demorar un tiempo. Verifique los registros de " "progreso y cualquier error." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -179,13 +226,13 @@ msgid "" "package to be installed." msgstr "" "Para usar el modo DNS para emitir certificados, configúralo con el nombre de " -"una API DNS compatible con acme.sh. Consulte https://github.com/" -"acmesh-official/acme.sh/wiki/dnsapi para ver la lista de API disponibles. En " -"modo DNS, el nombre de dominio no tiene que resolverse en la dirección IP " -"del enrutador. El modo DNS también es el único modo que admite certificados " +"una API DNS compatible con acme.sh. Consulte https://github.com/acmesh-" +"official/acme.sh/wiki/dnsapi para ver la lista de API disponibles. En modo " +"DNS, el nombre de dominio no tiene que resolverse en la dirección IP del " +"enrutador. El modo DNS también es el único modo que admite certificados " "comodín. El uso de este modo requiere que se instale el paquete acme-dnsapi." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " @@ -196,7 +243,7 @@ msgstr "" "SSL, de lo contrario no se iniciará, ya que debe compilarse con soporte SSL " "para usar opciones de certificado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " @@ -206,23 +253,35 @@ msgstr "" "(solo seleccione esto para un certificado). También está disponible luci-app-" "uhttpd para configurar uhttpd desde la interfaz LuCI." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "Utilice una CA personalizada en lugar de Let's Encrypt." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "Usar para nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "Usar para uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "Usar servidor de ensayo" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "Método de validación" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "Webroot" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Directorio Webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/fi/acme.po b/applications/luci-app-acme/po/fi/acme.po index d46f0504a..bc49886fb 100644 --- a/applications/luci-app-acme/po/fi/acme.po +++ b/applications/luci-app-acme/po/fi/acme.po @@ -22,35 +22,63 @@ msgstr "ACME sertifikaatit" msgid "ACME global config" msgstr "ACME-yleisasetukset" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Sähköpostitili" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Sertifikaatin asetukset" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Haaste - alias" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API kirjautumistiedot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Verkkonimen alias" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Verkkonimet" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -61,11 +89,11 @@ msgstr "" "kaikkien verkkotunnusten pitää osoittaa reitittimeen globaalissa DNS-" "järjestelmässä." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -77,11 +105,15 @@ msgstr "Avaimeen liitettävä sähköpostiosoite." msgid "Enable debug logging" msgstr "Ota vieanetsintälokkaus käyttöön" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Käytössä" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -91,38 +123,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Salli pääsy acme-asetuksiin" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Avaimen koko" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Avaimen koko (ja tyyppi) luotavassa sertifikaatissa." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Tilahakemisto" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -130,7 +174,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -147,7 +191,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -157,37 +201,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/fr/acme.po b/applications/luci-app-acme/po/fr/acme.po index 7f90d5032..508c3cf24 100644 --- a/applications/luci-app-acme/po/fr/acme.po +++ b/applications/luci-app-acme/po/fr/acme.po @@ -22,46 +22,74 @@ msgstr "Certificats ACME" msgid "ACME global config" msgstr "Configuration globale d’ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Compte e-mail" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Configuration du certificat" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "API DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Alias de domaine" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Noms de domaine" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 bits" @@ -73,11 +101,15 @@ msgstr "Adresse de courriel à associer à la clé de compte." msgid "Enable debug logging" msgstr "Activer la journalisation détaillée" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Activé" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -87,38 +119,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -126,7 +170,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -143,7 +187,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -153,37 +197,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/he/acme.po b/applications/luci-app-acme/po/he/acme.po index 749508183..a32b390d2 100644 --- a/applications/luci-app-acme/po/he/acme.po +++ b/applications/luci-app-acme/po/he/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/hi/acme.po b/applications/luci-app-acme/po/hi/acme.po index 5b27cdc46..228f986f6 100644 --- a/applications/luci-app-acme/po/hi/acme.po +++ b/applications/luci-app-acme/po/hi/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/hu/acme.po b/applications/luci-app-acme/po/hu/acme.po index 0173a8beb..f20c742f1 100644 --- a/applications/luci-app-acme/po/hu/acme.po +++ b/applications/luci-app-acme/po/hu/acme.po @@ -22,35 +22,63 @@ msgstr "ACME tanúsítványok" msgid "ACME global config" msgstr "ACME globális beállítás" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Fiók e-mail" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Tanúsítvány beállítása" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Kihívás álneve" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API hitelesítési adatok" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Tartományálnév" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Tartománynevek" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -60,11 +88,11 @@ msgstr "" "neve, az azt követő nevek lesznek az alternatív nevek. Ne feledje, hogy az " "összes tartománynévnek az útválasztóra kell mutatnia a globális DNS-ben." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "256 bites ECC" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "384 bites ECC" @@ -76,77 +104,93 @@ msgstr "A fiók kulcsához rendelendő e-mail cím." msgid "Enable debug logging" msgstr "Hibakeresési naplózás engedélyezése" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Engedélyezve" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." msgstr "" -"Tanúsítvány beszerzése a Let’s Encrypt előkészítő kiszolgálójától (" -"teszteléshez használja, a tanúsítvány nem lesz érvényes)." +"Tanúsítvány beszerzése a Let’s Encrypt előkészítő kiszolgálójától " +"(teszteléshez használja, a tanúsítvány nem lesz érvényes)." #: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3 msgid "Grant UCI access for luci-app-acme" msgstr "UCI hozzáférés megadása a luci-app-acme alkalmazásnak" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Kulcsméret" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Kulcsméret (és típus) az előállított tanúsítványhoz." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "2048 bites RSA" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "3072 bites RSA" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "4096 bites RSA" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Állapotkönyvtár" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -"Az ÖSSZES tartománynál használandó kihívási álnév. Nézze meg a https://github" -".com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat " +"Az ÖSSZES tartománynál használandó kihívási álnév. Nézze meg a https://" +"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat " "részleteiért. A LuCI csak egy kihívási álnevet támogat tanúsítványonként." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " "by each API. Add multiple entries here in KEY=VAL shell variable format to " "supply multiple credential variables." msgstr "" -"A fent kiválasztott DNS API mód hitelesítési adatai. Nézze meg a " -"https://github.com/acmesh-official/acme.sh/wiki/dnsapi oldalt az egyes API-k " -"által igényel hitelesítési adatok formátumához. Adjon hozzá több bejegyzést " -"itt KULCS=ÉRTÉK parancsértelmező változóformátumban a több hitelesítési adat " +"A fent kiválasztott DNS API mód hitelesítési adatai. Nézze meg a https://" +"github.com/acmesh-official/acme.sh/wiki/dnsapi oldalt az egyes API-k által " +"igényel hitelesítési adatok formátumához. Adjon hozzá több bejegyzést itt " +"KULCS=ÉRTÉK parancsértelmező változóformátumban a több hitelesítési adat " "változójának támogatásához." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge domain per certificate." msgstr "" -"Az ÖSSZES tartománynál használandó tartományálnév. Nézze meg a https://github" -".com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat " +"Az ÖSSZES tartománynál használandó tartományálnév. Nézze meg a https://" +"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat " "részleteiért. A LuCI csak egy tartományálnevet támogat tanúsítványonként." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 @@ -166,7 +210,7 @@ msgstr "" "a tanúsítványok kibocsátása eltarthat egy ideig. Nézze meg a naplókat a " "folyamat előrehaladásához és a hibákhoz." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -183,44 +227,56 @@ msgstr "" "tanúsítványokat. Ezen mód használatához az szükséges, hogy az acme-dnsapi " "csomag telepítve legyen." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -"Az nginx beállítás frissítése ezzel a tanúsítvánnyal, miután kibocsátották (" -"csak egy tanúsítványnál válassza ki ezt). Az nginx programnak támogatnia " +"Az nginx beállítás frissítése ezzel a tanúsítvánnyal, miután kibocsátották " +"(csak egy tanúsítványnál válassza ki ezt). Az nginx programnak támogatnia " "kell az SSL-t. Ha nem támogatja, akkor nem fog elindulni, mivel SSL " "támogatással kell lefordítani a tanúsítvány lehetőségeinek használatához" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -"Az uhttpd beállítás frissítése ezzel a tanúsítvánnyal, miután kibocsátották (" -"csak egyetlen tanúsítványnál válassza ki). Elérhető a luci-app-uhttpd is a " +"Az uhttpd beállítás frissítése ezzel a tanúsítvánnyal, miután kibocsátották " +"(csak egyetlen tanúsítványnál válassza ki). Elérhető a luci-app-uhttpd is a " "LuCI felületéről történő uhttpd beállításhoz." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "Nginx-hez történő használat" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "Uhttpd-hez történő használat" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "Előkészítő kiszolgáló használata" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Webgyökér könyvtár" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/it/acme.po b/applications/luci-app-acme/po/it/acme.po index b24df858d..7f3d87cc4 100644 --- a/applications/luci-app-acme/po/it/acme.po +++ b/applications/luci-app-acme/po/it/acme.po @@ -22,35 +22,63 @@ msgstr "Certificati ACME" msgid "ACME global config" msgstr "Configurazione globale ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "E-mail dell'account" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Configurazione certificato" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "API DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Credenziali API DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Alias di dominio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Nomi di dominio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -60,11 +88,11 @@ msgstr "" "soggetto, i successivi saranno nomi alternativi. Nota che tutti i nomi di " "dominio devono puntare al router nel DNS globale." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -76,11 +104,15 @@ msgstr "Indirizzo e-mail da associare alla chiave dell'account." msgid "Enable debug logging" msgstr "Abilita il logging esteso" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Abilitato" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -92,38 +124,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Concedi l'accesso UCI a luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -131,7 +175,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -148,7 +192,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -158,37 +202,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/ja/acme.po b/applications/luci-app-acme/po/ja/acme.po index 692560f7e..ba51e4925 100644 --- a/applications/luci-app-acme/po/ja/acme.po +++ b/applications/luci-app-acme/po/ja/acme.po @@ -1,18 +1,18 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-22 02:42+0000\n" -"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" +"PO-Revision-Date: 2020-10-11 22:18+0000\n" +"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/ja/>\n" "Language: ja\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" -msgstr "" +msgstr "ACME証明書" #: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 msgid "ACME certs" @@ -20,105 +20,153 @@ msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26 msgid "ACME global config" +msgstr "ACMEグローバル設定" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" +msgstr "アカウントのメールアドレス" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" -msgstr "" +msgstr "証明書設定" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 -msgid "DNS API" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +msgid "DNS API" +msgstr "DNS API" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" +msgstr "DNS API資格情報" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" -msgstr "" +msgstr "ドメインエイリアス" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "ドメイン名" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" +"証明書に含めるドメイン名です。最初の名前はサブジェクト名、その次は代替名で" +"す。すべてのドメイン名はグローバルDNSのルーターを指す必要があります。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" -msgstr "" +msgstr "ECC256ビット" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" -msgstr "" +msgstr "ECC384ビット" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:35 msgid "Email address to associate with account key." -msgstr "" +msgstr "アカウントに関連付けるメールアドレスです。" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39 msgid "Enable debug logging" -msgstr "" +msgstr "デバッグロギングを有効化" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "有効" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." msgstr "" +"Letsencryptのステージングサーバーから証明書を取得します(テスト用、証明書は有" +"効になりません)。" #: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3 msgid "Grant UCI access for luci-app-acme" msgstr "luci-app-acme に UCI アクセスを許可" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" -msgstr "" +msgstr "鍵の大きさ" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." -msgstr "" +msgstr "生成された証明書の鍵の大きさ(およびタイプ)。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" -msgstr "" +msgstr "RSA2048ビット" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" -msgstr "" +msgstr "RSA3072ビット" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" +msgstr "RSA4096ビット" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -126,7 +174,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -143,7 +191,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -153,37 +201,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 -msgid "Use for nginx" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 +msgid "Use for nginx" +msgstr "nginxを使用" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" -msgstr "" +msgstr "uhttpdを使用" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" +msgstr "ステージングサーバーを使用" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 -msgid "Webroot directory" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +msgid "Webroot directory" +msgstr "Webrootディレクトリ" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/ko/acme.po b/applications/luci-app-acme/po/ko/acme.po index b6a80cefc..770ee4445 100644 --- a/applications/luci-app-acme/po/ko/acme.po +++ b/applications/luci-app-acme/po/ko/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/mr/acme.po b/applications/luci-app-acme/po/mr/acme.po index 7972f8ca6..242bbeb08 100644 --- a/applications/luci-app-acme/po/mr/acme.po +++ b/applications/luci-app-acme/po/mr/acme.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-27 21:41+0000\n" +"PO-Revision-Date: 2020-10-15 00:31+0000\n" "Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" "Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/mr/>\n" @@ -8,76 +8,108 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.3-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" -msgstr "" +msgstr "ACME प्रमाणपत्रे" #: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 msgid "ACME certs" -msgstr "" +msgstr "ACME प्रमाणपत्र" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26 msgid "ACME global config" +msgstr "ACME ग्लोबल कॉन्फिगरेशन" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" +msgstr "खाते ईमेल" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" -msgstr "" +msgstr "प्रमाणपत्र कॉन्फिगरेशन" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" +msgstr "आव्हान उपनाम" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 -msgid "DNS API" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +msgid "DNS API" +msgstr "डीएनएस एपीआय" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:35 msgid "Email address to associate with account key." -msgstr "" +msgstr "खाते किल्लीशी संलग्न करण्यासाठी ईमेल पत्ता." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39 msgid "Enable debug logging" -msgstr "" +msgstr "डीबग लॉगिंग सक्षम करा" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "सक्षम केले" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -87,38 +119,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -126,7 +170,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -143,7 +187,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -153,37 +197,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/ms/acme.po b/applications/luci-app-acme/po/ms/acme.po index cf5e8d095..3a19503b7 100644 --- a/applications/luci-app-acme/po/ms/acme.po +++ b/applications/luci-app-acme/po/ms/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/nb_NO/acme.po b/applications/luci-app-acme/po/nb_NO/acme.po index 286dbd14f..1277bbada 100644 --- a/applications/luci-app-acme/po/nb_NO/acme.po +++ b/applications/luci-app-acme/po/nb_NO/acme.po @@ -22,46 +22,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Domenenavn" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -73,11 +101,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -87,38 +119,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Nøkkelstørrelse" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -126,7 +170,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -143,7 +187,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -153,37 +197,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/pl/acme.po b/applications/luci-app-acme/po/pl/acme.po index e35fd7f98..055cbcb3f 100644 --- a/applications/luci-app-acme/po/pl/acme.po +++ b/applications/luci-app-acme/po/pl/acme.po @@ -23,35 +23,63 @@ msgstr "Certyfikaty ACME" msgid "ACME global config" msgstr "Konfiguracja globalna ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Konto email" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Konfiguracja certyfikatu" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Alias wyzwania" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Poświadczenia interfejsu API DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Alias Domeny" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Nazwy domen" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -61,11 +89,11 @@ msgstr "" "podmiotu, kolejne imiona będą imionami alternatywnymi. Pamiętaj, że " "wszystkie nazwy domen muszą wskazywać na router w globalnym DNS." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 bitów" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 bity" @@ -77,11 +105,15 @@ msgstr "Adres email do powiązania z kluczem konta." msgid "Enable debug logging" msgstr "Włącz rejestrowanie debugowania" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Włączone" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -93,31 +125,43 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Udziel dostępu UCI dla luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Rozmiar klucza" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Rozmiar klucza (i typ) dla wygenerowanego certyfikatu." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA 2048 bitów" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA 3072 bity" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA 4096 bitów" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Katalog stanu" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -128,7 +172,7 @@ msgstr "" "informacje na temat tego procesu. LUCI obsługuje tylko jeden alias wyzwania " "na certyfikat." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -140,16 +184,15 @@ msgstr "" "poświadczeń wymaganych przez każdy interfejs API. Dodaj tutaj wiele wpisów w " "formacie zmiennej powłoki KEY=VAL, aby podać wiele zmiennych referencji." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge domain per certificate." msgstr "" -"Alias domeny używany dla WSZYSTKICH domen. Zobacz https://github.com/" -"acmesh-official/acme.sh/wiki/DNS-alias-mode, aby uzyskać szczegółowe " -"informacje na temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania " -"na certyfikat." +"Alias domeny używany dla WSZYSTKICH domen. Zobacz https://github.com/acmesh-" +"official/acme.sh/wiki/DNS-alias-mode, aby uzyskać szczegółowe informacje na " +"temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania na certyfikat." #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 msgid "" @@ -167,7 +210,7 @@ msgstr "" "adres IP routera. Po skonfigurowaniu wydawanie certyfikatów może chwilę " "potrwać. Sprawdź dzienniki pod kątem postępu i ewentualnych błędów." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -177,14 +220,13 @@ msgid "" "package to be installed." msgstr "" "Aby używać trybu DNS do wydawania certyfikatów, ustaw na nazwę interfejsu " -"API DNS obsługiwanego przez acme.sh. Zobacz https://github.com/" -"acmesh-official/acme.sh/wiki/dnsapi, aby uzyskać listę dostępnych " -"interfejsów API. W trybie DNS nazwa domeny nie musi być tłumaczona na adres " -"IP routera. Tryb DNS jest także jedynym trybem obsługującym certyfikaty " -"wieloznaczne. Korzystanie z tego trybu wymaga zainstalowania pakietu acme-" -"dnsapi." - -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +"API DNS obsługiwanego przez acme.sh. Zobacz https://github.com/acmesh-" +"official/acme.sh/wiki/dnsapi, aby uzyskać listę dostępnych interfejsów API. " +"W trybie DNS nazwa domeny nie musi być tłumaczona na adres IP routera. Tryb " +"DNS jest także jedynym trybem obsługującym certyfikaty wieloznaczne. " +"Korzystanie z tego trybu wymaga zainstalowania pakietu acme-dnsapi." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " @@ -195,7 +237,7 @@ msgstr "" "uruchomi się, ponieważ należy go skompilować z obsługą ssl, aby użyć opcji " "certyfikatu" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " @@ -205,23 +247,35 @@ msgstr "" "to tylko dla jednego certyfikatu). Jest również dostępna luci-app-uhttpd do " "konfiguracji uhttpd z interfejsu LuCI." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "Użyj dla nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "Użyj dla uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "Użyj serwera pomostowego" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Katalog Webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/pt/acme.po b/applications/luci-app-acme/po/pt/acme.po index 3a98ff744..c7dbc206f 100644 --- a/applications/luci-app-acme/po/pt/acme.po +++ b/applications/luci-app-acme/po/pt/acme.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-24 09:24+0000\n" +"PO-Revision-Date: 2020-11-01 08:19+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/pt/>\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" @@ -22,35 +22,63 @@ msgstr "Certificados ACME" msgid "ACME global config" msgstr "Configuração global de ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "URL do servidor ACME" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Conta de e-mail" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "Definições Avançadas" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Configuração do certificado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Aliás do Desafio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "Validação do desafio" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "AC de ACME personalizada" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "URL personalizada do diretório do servidor ACME." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "DNS" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "API do DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Credenciais do API do DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "Dias até à renovação" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Aliás do Domínio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Nomes de domínio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -60,11 +88,11 @@ msgstr "" "assunto, os nomes subsequentes serão nomes alternativos. Note que todos os " "nomes de domínio devem apontar para o roteador no DNS global." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 bits" @@ -76,11 +104,15 @@ msgstr "O endereço de email para associar à chave da conta." msgid "Enable debug logging" msgstr "Ativar o registo de depuração" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "Configurações gerais" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -92,31 +124,47 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Conceder acesso UCI ao luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Tamanho da chave" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Tamanho (e tipo) da chave para o certificado gerado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA 2048 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA 3072 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA 4096 bits" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "Autónomo" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" +"O modo autónomo usará o servidor web integrado de acme.sh para emitir um " +"certificado. O modo Webroot usará um servidor web existente para emitir um " +"certificado. O modo DNS permitirá que use a API DNS do seu provedor de DNS " +"para emitir um certificado." + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Diretório do estado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -127,20 +175,20 @@ msgstr "" "este processo. O LUCI é compatível apenas com um desafio aliás por " "certificado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " "by each API. Add multiple entries here in KEY=VAL shell variable format to " "supply multiple credential variables." msgstr "" -"As credenciais para o modo da API de DNS selecionado acima. Consulte " -"https://github.com/acmesh-official/acme.sh/wiki/dnsapi para obter o formato " -"das credenciais exigidas por cada API. Adicione várias entradas aqui no " -"formato como variável da shell KEY=VAL suprindo múltiplas variáveis para as " +"As credenciais para o modo da API de DNS selecionado acima. Consulte https://" +"github.com/acmesh-official/acme.sh/wiki/dnsapi para obter o formato das " +"credenciais exigidas por cada API. Adicione várias entradas aqui no formato " +"como variável da shell KEY=VAL suprindo múltiplas variáveis para as " "credenciais." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -168,7 +216,7 @@ msgstr "" "demorar um pouco. Verifique os registos log para ver o progresso e quaisquer " "erros." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -178,50 +226,62 @@ msgid "" "package to be installed." msgstr "" "Para usar o modo DNS para emitir certificados, defina isto oo nome de uma " -"API de DNS suportada pelo acme.sh. Veja em https://github.com/" -"acmesh-official/acme.sh/wiki/dnsapi para obter a lista de APIs disponíveis. " -"No modo DNS, o nome do domínio não tem de ser resolvido para o IP do router. " -"O modo DNS é também o único modo que suporta certificados curinga. A " -"utilização deste modo requer a instalação do pacote acme-dnsapi." +"API de DNS suportada pelo acme.sh. Veja em https://github.com/acmesh-" +"official/acme.sh/wiki/dnsapi para obter a lista de APIs disponíveis. No modo " +"DNS, o nome do domínio não tem de ser resolvido para o IP do router. O modo " +"DNS é também o único modo que suporta certificados curinga. A utilização " +"deste modo requer a instalação do pacote acme-dnsapi." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -"Atualize a configuração nginx com este certificado depois de ser emitido (" -"selecione isto apenas para um certificado). Nginx deve suportar ssl, caso " +"Atualize a configuração nginx com este certificado depois de ser emitido " +"(selecione isto apenas para um certificado). Nginx deve suportar ssl, caso " "contrário não será iniciado precisa ser compilado com o suporte ssl para " "usar as opções do cert" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -"Atualize a configuração uhttpd com este certificado depouis de ser emitido (" -"selecione isto apenas para um certificado). Também está disponível o luci-" +"Atualize a configuração uhttpd com este certificado depouis de ser emitido " +"(selecione isto apenas para um certificado). Também está disponível o luci-" "app-uhttpd para configurar uhttpd a partir da interface LuCI." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "Use uma AC personalizada em vez de Let's Encrypt." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "Uso para nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "Use para uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "Use o servidor de estágio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "Método de validação" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "Webroot" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Diretório webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/pt_BR/acme.po b/applications/luci-app-acme/po/pt_BR/acme.po index e596171bc..5c96ec771 100644 --- a/applications/luci-app-acme/po/pt_BR/acme.po +++ b/applications/luci-app-acme/po/pt_BR/acme.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-24 09:24+0000\n" +"PO-Revision-Date: 2020-10-29 08:32+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsacme/pt_BR/>\n" @@ -8,7 +8,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 4.3.2-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" @@ -22,35 +22,63 @@ msgstr "certificados ACME" msgid "ACME global config" msgstr "Configuração global ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "URL do Servidor ACME" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "E-mail da conta" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "Configurações Avançadas" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Configuração do certificado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Aliás do Desafio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "Validação do Desafio" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "CA ACME Customizado" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "URL do Servidor ACME Customizado." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "DNS" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "API do DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Credenciais do API DNS" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "Dias até a renovação" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Aliás do Domínio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Nomes de domínio" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -60,11 +88,11 @@ msgstr "" "do assunto, os nomes subsequentes serão nomes alternativos. Observe que " "todos os nomes de domínio devem apontar para o roteador no DNS global." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 bits" @@ -76,11 +104,15 @@ msgstr "O endereço de email para associar à chave da conta." msgid "Enable debug logging" msgstr "Habilitar o registro de depuração" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Ativado" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "Configurações Gerais" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -92,31 +124,47 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Conceda acesso UCI para o luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Tamanho da chave" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Tamanho (e tipo) da chave para o certificado gerado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA 2048 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA 3072 bits" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA 4096 bits" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "Independente" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" +"O modo Independente usará o servidor web integrado do acme.sh para solicitar " +"um certificado. O modo Webroot usará um servidor web existente para " +"solicitar um certificado. O modo DNS permitirá vocÊ a usar a API de DNS do " +"seu provedor DNS para solicitar um certificado." + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Condição do diretório" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -127,20 +175,20 @@ msgstr "" "este processo. O LUCI é compatível apenas com um desafio aliás por " "certificado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " "by each API. Add multiple entries here in KEY=VAL shell variable format to " "supply multiple credential variables." msgstr "" -"As credenciais para o modo da API DNS selecionado acima. Consulte " -"https://github.com/acmesh-official/acme.sh/wiki/dnsapi para obter o formato " -"das credenciais exigidas por cada API. Adicione várias entradas aqui no " -"formato como variável da shell KEY=VAL suprindo múltiplas variáveis para as " +"As credenciais para o modo da API DNS selecionado acima. Consulte https://" +"github.com/acmesh-official/acme.sh/wiki/dnsapi para obter o formato das " +"credenciais exigidas por cada API. Adicione várias entradas aqui no formato " +"como variável da shell KEY=VAL suprindo múltiplas variáveis para as " "credenciais." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -168,7 +216,7 @@ msgstr "" "demorar um pouco. Verifique os registros log para ver os progressos e " "quaisquer outros erros." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -184,7 +232,7 @@ msgstr "" "O modo DNS também é o único modo que é compatível com certificados curinga. " "O uso desse modo requer que o pacote acme-dnsapi esteja instalado." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " @@ -195,7 +243,7 @@ msgstr "" "ssl, caso contrário ele não vai iniciar pois para usar as opções cert ele " "precisa ser compilado com ssl" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " @@ -205,23 +253,35 @@ msgstr "" "(selecione-o apenas para um certificado). Também está disponível o luci-app-" "uhttpd para configurar o uhttpd através da interface LuCI." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "Use uma CA customizada em vez do Let's Encrypt." + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "Uso para o nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "Use para o uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "Use o servidor de encenação" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "Método de Validação" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "Webroot" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Diretório Webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/ro/acme.po b/applications/luci-app-acme/po/ro/acme.po index 4a11d0a57..d80f13115 100644 --- a/applications/luci-app-acme/po/ro/acme.po +++ b/applications/luci-app-acme/po/ro/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/ru/acme.po b/applications/luci-app-acme/po/ru/acme.po index 7a7455bcc..adbd7228f 100644 --- a/applications/luci-app-acme/po/ru/acme.po +++ b/applications/luci-app-acme/po/ru/acme.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-19 10:06+0000\n" +"PO-Revision-Date: 2020-10-27 10:09+0000\n" "Last-Translator: sergio <sergio+it@outerface.net>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/ru/>\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.3.2-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" @@ -23,48 +23,76 @@ msgstr "Сертификаты ACME" msgid "ACME global config" msgstr "Глобальная конфигурация ACME" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "URL сервера ACME" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Адрес электронной почты" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Конфигурация сертификата" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Данные для доступа к DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Доменный алиас" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Доменные имена" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" -msgstr "" +msgstr "ECC 256 бит" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" -msgstr "" +msgstr "ECC 384 бит" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:35 msgid "Email address to associate with account key." @@ -72,13 +100,17 @@ msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39 msgid "Enable debug logging" -msgstr "" +msgstr "Включить логирование отладочной информации" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Включено" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -88,38 +120,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Предоставить UCI доступ для luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Размер ключа" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" -msgstr "" +msgstr "RSA 2048 бит" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" -msgstr "" +msgstr "RSA 3072 бит" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" +msgstr "RSA 4096 бит" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -127,7 +171,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -144,7 +188,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -154,37 +198,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Каталог Webroot" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/sk/acme.po b/applications/luci-app-acme/po/sk/acme.po index 4731963a5..c029763f9 100644 --- a/applications/luci-app-acme/po/sk/acme.po +++ b/applications/luci-app-acme/po/sk/acme.po @@ -22,35 +22,63 @@ msgstr "ACME certifikáty" msgid "ACME global config" msgstr "ACME globálna konfigurácia" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "E-mail účtu" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Konfigurácia certifikátov" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "Prihlasovacie údaje DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Alias domény" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Domény" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -59,11 +87,11 @@ msgstr "" "Domény v certifikáte. Prvá bude názov subjektu, ďalšie budú alternatívne " "názvy. Všetky domény musia smerovať na router v globálnom DNS." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -75,11 +103,15 @@ msgstr "E-mailová adresa k účtu." msgid "Enable debug logging" msgstr "Povoliť detailné záznamy" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Povolené" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 #, fuzzy msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " @@ -92,38 +124,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "Povoliť luci-app-acme prístup k UCI" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Dĺžka kľúča" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Dĺžka (a typ) kľúča pre generovaný certifikát." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #, fuzzy msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" @@ -135,7 +179,7 @@ msgstr "" "acmesh-official/acme.sh/wiki/dnsapi pre formát údajov požadovaný každým API. " "Pre zadanie viacerých údajov tu pridaj hodnoty v tvare KĽÚČ=HODNOTA." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -152,7 +196,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -162,37 +206,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/sv/acme.po b/applications/luci-app-acme/po/sv/acme.po index fc138bbc3..570f1ac00 100644 --- a/applications/luci-app-acme/po/sv/acme.po +++ b/applications/luci-app-acme/po/sv/acme.po @@ -22,46 +22,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -73,11 +101,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -87,38 +119,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -126,7 +170,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -143,7 +187,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -153,37 +197,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/templates/acme.pot b/applications/luci-app-acme/po/templates/acme.pot index b9beb9855..8f9eda8f2 100644 --- a/applications/luci-app-acme/po/templates/acme.pot +++ b/applications/luci-app-acme/po/templates/acme.pot @@ -13,46 +13,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -64,11 +92,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -78,38 +110,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -117,7 +161,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -134,7 +178,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -144,37 +188,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/tr/acme.po b/applications/luci-app-acme/po/tr/acme.po index 0c91d4e97..2ec26a97e 100644 --- a/applications/luci-app-acme/po/tr/acme.po +++ b/applications/luci-app-acme/po/tr/acme.po @@ -22,35 +22,63 @@ msgstr "ACME sertifikaları" msgid "ACME global config" msgstr "ACME evrensel yapılandırma" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "Hesap e-postası" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "Sertifika yapılandırması" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "Challenge Takma Adı" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API bilgileri" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "Alan Takma Adı" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "Alan adları" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " @@ -60,11 +88,11 @@ msgstr "" "alternatif adlar olacak. Domain adlarının evrensel DNS'de router'ı " "göstermesi gerektiğini unutmayın." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 bit" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 bit" @@ -76,11 +104,15 @@ msgstr "Hesap anahtarına bağlanacak e-posta adresi." msgid "Enable debug logging" msgstr "Hata ayıklama günlüğünü etkinleştir" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Etkin" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -92,31 +124,43 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "luci-app-acme için UCI erişimi verin" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "Anahtar boyutu" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "Oluşturulmuş sertifika için anahtar boyutu (ve türü)." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA 2048 bit" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA 3072 bit" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA 4096 bit" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "Dizin belirt" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -126,7 +170,7 @@ msgstr "" "https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine göz " "atın. LUCI sertifika başına sadece bir tane challenge takma adını destekler." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -138,7 +182,7 @@ msgstr "" "dnsapi adresine bakın. Birden çok kimlik bilgisi değişkeni sağlamak için " "buraya birden çok KEY = VAL olarak shell değişkeni ekleyin." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -164,7 +208,7 @@ msgstr "" "duruma gelmesi zaman alabilir. İlerleme durumuna ve hatalara bakmak için " "günlüğü kontrol edin." -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -174,37 +218,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/uk/acme.po b/applications/luci-app-acme/po/uk/acme.po index 3b535eee5..3b7a6a525 100644 --- a/applications/luci-app-acme/po/uk/acme.po +++ b/applications/luci-app-acme/po/uk/acme.po @@ -1,19 +1,19 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-05 22:27+0000\n" -"Last-Translator: Yurii Petrashko <yuripet@gmail.com>\n" +"PO-Revision-Date: 2020-10-27 21:26+0000\n" +"Last-Translator: Yevhen Chebotarev <gekinadres@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsacme/uk/>\n" "Language: uk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.3.2-dev\n" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 msgid "ACME certificates" -msgstr "" +msgstr "ACME сертифікати" #: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 msgid "ACME certs" @@ -23,46 +23,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "Розширені налаштування" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" -msgstr "" +msgstr "Параметри сертифіката" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" -msgstr "" +msgstr "Імена домену" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -72,54 +100,72 @@ msgstr "" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39 msgid "Enable debug logging" -msgstr "" +msgstr "Ввімкнути журнал відлагоджування" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "Увімкнено" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "Головні налаштування" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." msgstr "" +"Взяти сертифікат з проміжного сервера Letsencrypt (використовується для " +"тестування; сертифікат не буде валідним)." #: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3 msgid "Grant UCI access for luci-app-acme" -msgstr "" +msgstr "Надати UCI доступ для luci-app-acme" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -127,7 +173,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -144,7 +190,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -154,37 +200,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/vi/acme.po b/applications/luci-app-acme/po/vi/acme.po index 11bf344b6..f0e9b406b 100644 --- a/applications/luci-app-acme/po/vi/acme.po +++ b/applications/luci-app-acme/po/vi/acme.po @@ -16,46 +16,74 @@ msgstr "" msgid "ACME global config" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "" @@ -67,11 +95,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -81,38 +113,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -120,7 +164,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -137,7 +181,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -147,37 +191,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " diff --git a/applications/luci-app-acme/po/zh_Hans/acme.po b/applications/luci-app-acme/po/zh_Hans/acme.po index 72a0d3281..3fcecabff 100644 --- a/applications/luci-app-acme/po/zh_Hans/acme.po +++ b/applications/luci-app-acme/po/zh_Hans/acme.po @@ -22,46 +22,76 @@ msgstr "ACME 证书" msgid "ACME global config" msgstr "ACME 全局配置" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "电子邮件帐户" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "证书配置" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "质询别名" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API 凭证" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "域名别名" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "域名" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." -msgstr "证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注意,所有域名都必须在路由中指向全局 DNS。" +msgstr "" +"证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注" +"意,所有域名都必须在路由中指向全局 DNS。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 位" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 位" @@ -73,11 +103,15 @@ msgstr "与帐户密钥关联的电子邮件地址。" msgid "Enable debug logging" msgstr "启用调试日志记录" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "已启用" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -87,57 +121,72 @@ msgstr "从 Letsencrypt 临时服务器获取证书(用于测试;证书无效) msgid "Grant UCI access for luci-app-acme" msgstr "授予 UCI 访问 luci-app-acme 的权限" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "密钥长度" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "生成的证书的密钥长度(和类型)。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "RSA 2048 位" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "RSA 3072 位" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "RSA 4096 位" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "状态文件夹" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -"用于所有域名的质询别名(challenge alias)。有关此过程的详细信息,请参阅 https://github.com/" -"acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一个质询别名。" +"用于所有域名的质询别名(challenge alias)。有关此过程的详细信息,请参阅 " +"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书" +"只支持一个质询别名。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " "by each API. Add multiple entries here in KEY=VAL shell variable format to " "supply multiple credential variables." msgstr "" -"上面选择的 DNS API 模式的凭据。请参阅 https://github.com/acmesh-official/acme.sh/wiki/" -"dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变量格式添加多个条目,以提供多个凭据变量。" +"上面选择的 DNS API 模式的凭据。请参阅 https://github.com/acmesh-official/" +"acme.sh/wiki/dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变" +"量格式添加多个条目,以提供多个凭据变量。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge domain per certificate." msgstr "" -"用于所有域名的别名(domain alias)。有关此过程的详细信息,请参阅 https://github.com/acmesh-official/" -"acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一个质询别名。" +"用于所有域名的别名(domain alias)。有关此过程的详细信息,请参阅 https://" +"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一" +"个质询别名。" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 msgid "" @@ -148,10 +197,12 @@ msgid "" "address. Once configured, issuing certificates can take a while. Check the " "logs for progress and any errors." msgstr "" -"这将配置 ACME (Letsencrypt) 自动证书安装。只需填写此内容即可为路由器配置由 Letsencrypt 颁发的 Web 界面证书。请注意," -"证书中的域名必须已经配置为指向路由器的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和错误。" +"这将配置 ACME (Letsencrypt) 自动证书安装。只需填写此内容即可为路由器配置由 " +"Letsencrypt 颁发的 Web 界面证书。请注意,证书中的域名必须已经配置为指向路由器" +"的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和" +"错误。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -160,51 +211,65 @@ msgid "" "supports wildcard certificates. Using this mode requires the acme-dnsapi " "package to be installed." msgstr "" -"若要使用 DNS 模式颁发证书,请将其设置为 acme.sh 支持的 DNS API 的名称。有关可用 API 的列表,请参阅 " -"https://github.com/acmesh-official/acme.sh/wiki/dnsapi。在 DNS " -"模式下,域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书的模式。使用此模式需要安装 acme-dnsapi 包。" +"若要使用 DNS 模式颁发证书,请将其设置为 acme.sh 支持的 DNS API 的名称。有关可" +"用 API 的列表,请参阅 https://github.com/acmesh-official/acme.sh/wiki/" +"dnsapi。在 DNS 模式下,域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书" +"的模式。使用此模式需要安装 acme-dnsapi 包。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -"颁发此证书后,用该证书更新 nginx 配置(只能有一个证书配置选中该选项)。Nginx 必须支持 " -"ssl,如果无法启动,则必须使用ssl支持进行编译才能使用证书选项" +"颁发此证书后,用该证书更新 nginx 配置(只能有一个证书配置选中该选项)。Nginx " +"必须支持 ssl,如果无法启动,则必须使用ssl支持进行编译才能使用证书选项" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -"签发此证书后,使用此证书更新 uhttpd 配置(只能有一个证书配置选中该选项)。也可通过 LuCI 界面的 luci-app-uhttpd 来配置 " -"uhttpd。" +"签发此证书后,使用此证书更新 uhttpd 配置(只能有一个证书配置选中该选项)。也" +"可通过 LuCI 界面的 luci-app-uhttpd 来配置 uhttpd。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "用于 Nginx" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "用于 uhttpd" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "使用临时服务器" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "Webroot 文件夹" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " "port 80." msgstr "" -"Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。Web 服务器必须允许从互联网上使用80端口访问。" +"Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。" +"Web 服务器必须允许从互联网上使用80端口访问。" #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 msgid "Where certs and other state files are kept." diff --git a/applications/luci-app-acme/po/zh_Hant/acme.po b/applications/luci-app-acme/po/zh_Hant/acme.po index eac6ae9e4..fd96d709d 100644 --- a/applications/luci-app-acme/po/zh_Hant/acme.po +++ b/applications/luci-app-acme/po/zh_Hant/acme.po @@ -22,46 +22,76 @@ msgstr "ACME 認證" msgid "ACME global config" msgstr "ACME 全域設置" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139 +msgid "ACME server URL" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 msgid "Account email" msgstr "email 帳號" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:48 +msgid "Advanced Settings" +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 msgid "Certificate config" msgstr "證書設定配置" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:122 msgid "Challenge Alias" msgstr "匿名Challenge" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:47 +msgid "Challenge Validation" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Custom ACME CA" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:140 +msgid "Custom ACME server directory URL." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:97 +msgid "DNS" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 msgid "DNS API" msgstr "DNS API" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:115 msgid "DNS API credentials" msgstr "DNS API 證書" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 +msgid "Days until renewal" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:128 msgid "Domain Alias" msgstr "匿名網域" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68 msgid "Domain names" msgstr "網域名稱" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69 msgid "" "Domain names to include in the certificate. The first name will be the " "subject name, subsequent names will be alt names. Note that all domain names " "must point at the router in the global DNS." -msgstr "網域名稱要包含在證書內。第一個名稱將會是標題名稱,隨後的名稱將會是簡稱或代替名稱。請注意,所有網域名稱都必須指向全域DNS中的路由器。" +msgstr "" +"網域名稱要包含在證書內。第一個名稱將會是標題名稱,隨後的名稱將會是簡稱或代替" +"名稱。請注意,所有網域名稱都必須指向全域DNS中的路由器。" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63 msgid "ECC 256 bits" msgstr "ECC 256 位元" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:64 msgid "ECC 384 bits" msgstr "ECC 384 位元" @@ -73,11 +103,15 @@ msgstr "" msgid "Enable debug logging" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 msgid "Enabled" msgstr "啟用" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 msgid "" "Get certificate from the Letsencrypt staging server (use for testing; the " "certificate won't be valid)." @@ -87,38 +121,50 @@ msgstr "" msgid "Grant UCI access for luci-app-acme" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 msgid "Key size" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 msgid "Key size (and type) for the generated certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 msgid "RSA 2048 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 msgid "RSA 3072 bits" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62 msgid "RSA 4096 bits" msgstr "" +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 +msgid "Standalone" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:92 +msgid "" +"Standalone mode will use the built-in webserver of acme.sh to issue a " +"certificate. Webroot mode will use an existing webserver to issue a " +"certificate. DNS mode will allow you to use the DNS API of your DNS provider " +"to issue a certificate." +msgstr "" + #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 msgid "State directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:123 msgid "" "The challenge alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " "only supports one challenge alias per certificate." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 msgid "" "The credentials for the DNS API mode selected above. See https://github.com/" "acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required " @@ -126,7 +172,7 @@ msgid "" "supply multiple credential variables." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:129 msgid "" "The domain alias to use for ALL domains. See https://github.com/acmesh-" "official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI " @@ -143,7 +189,7 @@ msgid "" "logs for progress and any errors." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 msgid "" "To use DNS mode to issue certificates, set this to the name of a DNS API " "supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/" @@ -153,37 +199,49 @@ msgid "" "package to be installed." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:84 msgid "" "Update the nginx config with this certificate once issued (only select this " "for one certificate). Nginx must support ssl, if not it won't start as it " "needs to be compiled with ssl support to use cert options" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:76 msgid "" "Update the uhttpd config with this certificate once issued (only select this " "for one certificate). Is also available luci-app-uhttpd to configure uhttpd " "form the LuCI interface." msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:135 +msgid "Use a custom CA instead of Let's Encrypt." +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:83 msgid "Use for nginx" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:75 msgid "Use for uhttpd" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:53 msgid "Use staging server" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 +msgid "Validation method" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 +msgid "Webroot" +msgstr "" + +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 msgid "Webroot directory" msgstr "" -#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 +#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101 msgid "" "Webserver root directory. Set this to the webserver document root to run " "Acme in webroot mode. The web server must be accessible from the internet on " |