Merge pull request #4200 from zhanhb/luci-app-acme
luci-app-acme: convert to client side rendering
This commit is contained in:
commit
e8cba39201
38 changed files with 1842 additions and 1178 deletions
|
@ -8,7 +8,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
LUCI_TITLE:=ACME package - LuCI interface
|
LUCI_TITLE:=ACME package - LuCI interface
|
||||||
LUCI_DEPENDS:=+luci-compat +luci-mod-admin-full +acme
|
LUCI_DEPENDS:=+luci-mod-admin-full +acme
|
||||||
|
|
||||||
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
|
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
|
||||||
PKG_LICENSE:=GPL-3.0-or-later
|
PKG_LICENSE:=GPL-3.0-or-later
|
||||||
|
|
|
@ -0,0 +1,118 @@
|
||||||
|
'use strict';
|
||||||
|
'require form';
|
||||||
|
'require fs';
|
||||||
|
'require view';
|
||||||
|
|
||||||
|
return view.extend({
|
||||||
|
load: function () {
|
||||||
|
return Promise.all([
|
||||||
|
L.resolveDefault(fs.stat('/usr/sbin/nginx'), {}),
|
||||||
|
L.resolveDefault(fs.stat('/usr/sbin/uhttpd'), {})
|
||||||
|
]);
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function (stats) {
|
||||||
|
var m, s, o;
|
||||||
|
|
||||||
|
m = new form.Map("acme", _("ACME certificates"),
|
||||||
|
_("This configures ACME (Letsencrypt) automatic certificate installation. " +
|
||||||
|
"Simply fill out this to have the router configured with Letsencrypt-issued " +
|
||||||
|
"certificates for the web interface. " +
|
||||||
|
"Note that the domain names in the certificate must already be configured to " +
|
||||||
|
"point at the router's public IP address. " +
|
||||||
|
"Once configured, issuing certificates can take a while. " +
|
||||||
|
"Check the logs for progress and any errors."));
|
||||||
|
|
||||||
|
s = m.section(form.TypedSection, "acme", _("ACME global config"));
|
||||||
|
s.anonymous = true
|
||||||
|
|
||||||
|
o = s.option(form.Value, "state_dir", _("State directory"),
|
||||||
|
_("Where certs and other state files are kept."));
|
||||||
|
o.rmempty = false;
|
||||||
|
o.datatype = "directory";
|
||||||
|
|
||||||
|
o = s.option(form.Value, "account_email", _("Account email"),
|
||||||
|
_("Email address to associate with account key."))
|
||||||
|
o.rmempty = false;
|
||||||
|
o.datatype = "minlength(1)";
|
||||||
|
|
||||||
|
o = s.option(form.Flag, "debug", _("Enable debug logging"));
|
||||||
|
o.rmempty = false;
|
||||||
|
|
||||||
|
s = m.section(form.TypedSection, "cert", _("Certificate config"))
|
||||||
|
s.anonymous = false;
|
||||||
|
s.addremove = true;
|
||||||
|
|
||||||
|
o = s.option(form.Flag, "enabled", _("Enabled"));
|
||||||
|
o.rmempty = false;
|
||||||
|
|
||||||
|
o = s.option(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"),
|
||||||
|
_("Key size (and type) for the generated certificate."));
|
||||||
|
o.value("2048", _("RSA 2048 bits"));
|
||||||
|
o.value("3072", _("RSA 3072 bits"));
|
||||||
|
o.value("4096", _("RSA 4096 bits"));
|
||||||
|
o.value("ec-256", _("ECC 256 bits"));
|
||||||
|
o.value("ec-384", _("ECC 384 bits"));
|
||||||
|
o.default = "2048";
|
||||||
|
o.rmempty = false;
|
||||||
|
|
||||||
|
if (stats[1].type === 'file') {
|
||||||
|
o = s.option(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."));
|
||||||
|
o.rmempty = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (stats[0].type === 'file') {
|
||||||
|
o = s.option(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 " +
|
||||||
|
"compiled with ssl support to use cert options"));
|
||||||
|
o.rmempty = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
o = s.option(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 = 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"),
|
||||||
|
_("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 = s.option(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)";
|
||||||
|
|
||||||
|
s.option(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."));
|
||||||
|
|
||||||
|
s.option(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."));
|
||||||
|
|
||||||
|
return m.render()
|
||||||
|
}
|
||||||
|
})
|
|
@ -1,117 +0,0 @@
|
||||||
--[[
|
|
||||||
LuCI - Lua Configuration Interface
|
|
||||||
|
|
||||||
Copyright 2016 Toke Høiland-Jørgensen <toke@toke.dk>
|
|
||||||
|
|
||||||
# This program is free software; you can redistribute it and/or modify it under
|
|
||||||
# the terms of the GNU General Public License as published by the Free Software
|
|
||||||
# Foundation; either version 3 of the License, or (at your option) any later
|
|
||||||
# version.
|
|
||||||
|
|
||||||
]]--
|
|
||||||
|
|
||||||
local fs = require "nixio.fs"
|
|
||||||
|
|
||||||
local nginx_presence = fs.access("/usr/sbin/nginx") or false
|
|
||||||
local uhttpd_presence = fs.access("/usr/sbin/uhttpd") or false
|
|
||||||
|
|
||||||
m = Map("acme", translate("ACME certificates"),
|
|
||||||
translate("This configures ACME (Letsencrypt) automatic certificate installation. " ..
|
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued " ..
|
|
||||||
"certificates for the web interface. " ..
|
|
||||||
"Note that the domain names in the certificate must already be configured to " ..
|
|
||||||
"point at the router's public IP address. " ..
|
|
||||||
"Once configured, issuing certificates can take a while. " ..
|
|
||||||
"Check the logs for progress and any errors."))
|
|
||||||
|
|
||||||
s = m:section(TypedSection, "acme", translate("ACME global config"))
|
|
||||||
s.anonymous = true
|
|
||||||
|
|
||||||
st = s:option(Value, "state_dir", translate("State directory"),
|
|
||||||
translate("Where certs and other state files are kept."))
|
|
||||||
st.rmempty = false
|
|
||||||
st.datatype = "directory"
|
|
||||||
|
|
||||||
ae = s:option(Value, "account_email", translate("Account email"),
|
|
||||||
translate("Email address to associate with account key."))
|
|
||||||
ae.rmempty = false
|
|
||||||
ae.datatype = "minlength(1)"
|
|
||||||
|
|
||||||
d = s:option(Flag, "debug", translate("Enable debug logging"))
|
|
||||||
d.rmempty = false
|
|
||||||
|
|
||||||
cs = m:section(TypedSection, "cert", translate("Certificate config"))
|
|
||||||
cs.anonymous = false
|
|
||||||
cs.addremove = true
|
|
||||||
|
|
||||||
e = cs:option(Flag, "enabled", translate("Enabled"))
|
|
||||||
e.rmempty = false
|
|
||||||
|
|
||||||
us = cs:option(Flag, "use_staging", translate("Use staging server"),
|
|
||||||
translate("Get certificate from the Letsencrypt staging server " ..
|
|
||||||
"(use for testing; the certificate won't be valid)."))
|
|
||||||
us.rmempty = false
|
|
||||||
|
|
||||||
kl = cs:option(ListValue, "keylength", translate("Key size"),
|
|
||||||
translate("Key size (and type) for the generated certificate."))
|
|
||||||
kl:value("2048", "RSA 2048 bits")
|
|
||||||
kl:value("3072", "RSA 3072 bits")
|
|
||||||
kl:value("4096", "RSA 4096 bits")
|
|
||||||
kl:value("ec-256", "ECC 256 bits")
|
|
||||||
kl:value("ec-384", "ECC 384 bits")
|
|
||||||
kl.default = "2048"
|
|
||||||
kl.rmempty = false
|
|
||||||
|
|
||||||
if uhttpd_presence then
|
|
||||||
u = cs:option(Flag, "update_uhttpd", translate("Use for uhttpd"),
|
|
||||||
translate("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."))
|
|
||||||
u.rmempty = false
|
|
||||||
end
|
|
||||||
|
|
||||||
if nginx_presence then
|
|
||||||
u = cs:option(Flag, "update_nginx", translate("Use for nginx"),
|
|
||||||
translate("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"))
|
|
||||||
u.rmempty = false
|
|
||||||
end
|
|
||||||
|
|
||||||
wr = cs:option(Value, "webroot", translate("Webroot directory"),
|
|
||||||
translate("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."))
|
|
||||||
wr.optional = true
|
|
||||||
|
|
||||||
dom = cs:option(DynamicList, "domains", translate("Domain names"),
|
|
||||||
translate("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."))
|
|
||||||
dom.datatype = "list(string)"
|
|
||||||
|
|
||||||
dns = cs:option(Value, "dns", translate("DNS API"),
|
|
||||||
translate("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."))
|
|
||||||
|
|
||||||
cred = cs:option(DynamicList, "credentials", translate("DNS API credentials"),
|
|
||||||
translate("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."))
|
|
||||||
cred.datatype = "list(string)"
|
|
||||||
|
|
||||||
calias = cs:option(Value, "calias", translate("Challenge Alias"),
|
|
||||||
translate("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."))
|
|
||||||
|
|
||||||
dalias = cs:option(Value, "dalias", translate("Domain Alias"),
|
|
||||||
translate("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."))
|
|
||||||
|
|
||||||
return m
|
|
|
@ -11,7 +11,7 @@ msgstr ""
|
||||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
"X-Generator: Weblate 4.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr " شهادات بيئة إدارة الشهادات التلقائية"
|
msgstr " شهادات بيئة إدارة الشهادات التلقائية"
|
||||||
|
|
||||||
|
@ -19,39 +19,39 @@ msgstr " شهادات بيئة إدارة الشهادات التلقائية
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "شهادات بيئة إدارة الشهادات التلقائية"
|
msgstr "شهادات بيئة إدارة الشهادات التلقائية"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "التكوين العالمي لبيئة إدارة الشهادات التلقائية"
|
msgstr "التكوين العالمي لبيئة إدارة الشهادات التلقائية"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "حساب البريد الإلكتروني"
|
msgstr "حساب البريد الإلكتروني"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "تكوين الشهادة"
|
msgstr "تكوين الشهادة"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "الاسم المستعار لاعتراض"
|
msgstr "الاسم المستعار لاعتراض"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "واجهة برمجة تطبيقات لنظام أسماء النطاقات"
|
msgstr "واجهة برمجة تطبيقات لنظام أسماء النطاقات"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "مؤهلات واجهة برمجة تطبيقات لنظام أسماء النطاقات"
|
msgstr "مؤهلات واجهة برمجة تطبيقات لنظام أسماء النطاقات"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "اسم المستعار لنطاق إنترنت\n"
|
msgstr "اسم المستعار لنطاق إنترنت\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "أسماء النطاقات"
|
msgstr "أسماء النطاقات"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -61,19 +61,27 @@ msgstr ""
|
||||||
"وستكون الأسماء اللاحقة أسماء بديلة. لاحظ أن جميع أسماء النطاقات يجب أن تشير "
|
"وستكون الأسماء اللاحقة أسماء بديلة. لاحظ أن جميع أسماء النطاقات يجب أن تشير "
|
||||||
"إلى جهاز التوجيه في نظام أسماء النطاقات العام."
|
"إلى جهاز التوجيه في نظام أسماء النطاقات العام."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "عنوان البريد الإلكتروني لربطه بمفتاح الحساب."
|
msgstr "عنوان البريد الإلكتروني لربطه بمفتاح الحساب."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "مكن السجل للتصحيح البرمجي"
|
msgstr "مكن السجل للتصحيح البرمجي"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "ممكّن"
|
msgstr "ممكّن"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -85,19 +93,31 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "منح الوصول فريد معرف العميل ل luci-app-acme"
|
msgstr "منح الوصول فريد معرف العميل ل luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "حجم المفتاح"
|
msgstr "حجم المفتاح"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "حجم المفتاح (والنوع) للشهادة التي تم إنشاؤها."
|
msgstr "حجم المفتاح (والنوع) للشهادة التي تم إنشاؤها."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "دليل الدولة"
|
msgstr "دليل الدولة"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -107,7 +127,7 @@ msgstr ""
|
||||||
".com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل هذه "
|
".com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل هذه "
|
||||||
"العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة."
|
"العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -119,7 +139,7 @@ msgstr ""
|
||||||
"الاعتماد التي تتطلبها كل واجهة برمجة تطبيقات. أضف إدخالات متعددة هنا في "
|
"الاعتماد التي تتطلبها كل واجهة برمجة تطبيقات. أضف إدخالات متعددة هنا في "
|
||||||
"تنسيق متغير shell \"KEY = VAL\" لتوفير متغيرات اعتماد متعددة."
|
"تنسيق متغير shell \"KEY = VAL\" لتوفير متغيرات اعتماد متعددة."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -129,7 +149,7 @@ msgstr ""
|
||||||
"acmesh-official/acme.sh/wiki/DNS-alias-mode عن تفاصيل هذه العملية. لوسي يدعم "
|
"acmesh-official/acme.sh/wiki/DNS-alias-mode عن تفاصيل هذه العملية. لوسي يدعم "
|
||||||
"فقط واحد التحدي المجال لكل شهادة."
|
"فقط واحد التحدي المجال لكل شهادة."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -144,7 +164,7 @@ msgstr ""
|
||||||
"بروتوكول الإنترنت العام لجهاز التوجيه. بمجرد التكوين ، يمكن أن يستغرق إصدار "
|
"بروتوكول الإنترنت العام لجهاز التوجيه. بمجرد التكوين ، يمكن أن يستغرق إصدار "
|
||||||
"الشهادات بعض الوقت. يمكنك التحقق من سجلات التقدم وأية أخطاء."
|
"الشهادات بعض الوقت. يمكنك التحقق من سجلات التقدم وأية أخطاء."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -159,7 +179,7 @@ msgstr ""
|
||||||
"إلى IP الخاص بالموجه. وضع DNS هو أيضًا الوضع الوحيد الذي يدعم شهادات أحرف "
|
"إلى IP الخاص بالموجه. وضع DNS هو أيضًا الوضع الوحيد الذي يدعم شهادات أحرف "
|
||||||
"البدل. يتطلب استخدام هذا الوضع تثبيت حزمة acme-dnsapi."
|
"البدل. يتطلب استخدام هذا الوضع تثبيت حزمة acme-dnsapi."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"for one certificate). Nginx must support ssl, if not it won't start as it "
|
||||||
|
@ -169,7 +189,7 @@ msgstr ""
|
||||||
". يجب أن يدعم nginx SSL ، إذا لم يكن كذلك ، فلن يبدأ لأنه يحتاج إلى تجميع مع "
|
". يجب أن يدعم nginx SSL ، إذا لم يكن كذلك ، فلن يبدأ لأنه يحتاج إلى تجميع مع "
|
||||||
"دعم SSL لاستخدام خيارات الشهادة"
|
"دعم SSL لاستخدام خيارات الشهادة"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
|
@ -178,23 +198,23 @@ msgstr ""
|
||||||
"قم بتحديث تكوين uhttpd بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة واحدة)"
|
"قم بتحديث تكوين uhttpd بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة واحدة)"
|
||||||
". كما يتوفر luci-app-uhttpd لتكوين uhttpd من واجهة LuCI."
|
". كما يتوفر luci-app-uhttpd لتكوين uhttpd من واجهة LuCI."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr "استخدم ل nginx"
|
msgstr "استخدم ل nginx"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr "استخدم ل uhttpd"
|
msgstr "استخدم ل uhttpd"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr "استخدم خادم الترحيل"
|
msgstr "استخدم خادم الترحيل"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "دليل Webroot"
|
msgstr "دليل Webroot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
|
@ -203,6 +223,6 @@ msgstr ""
|
||||||
"الدليل الجذر لخادم الويب. اضبط هذا على جذر وثيقة خادم الويب لتشغيل Acme في "
|
"الدليل الجذر لخادم الويب. اضبط هذا على جذر وثيقة خادم الويب لتشغيل Acme في "
|
||||||
"وضع webroot. يجب الوصول إلى خادم الويب من الإنترنت على المنفذ 80."
|
"وضع webroot. يجب الوصول إلى خادم الويب من الإنترنت على المنفذ 80."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr "حيث يتم حفظ شهادات وملفات الدولة الأخرى."
|
msgstr "حيث يتم حفظ شهادات وملفات الدولة الأخرى."
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
"X-Generator: Weblate 4.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "ACME Zertifikate"
|
msgstr "ACME Zertifikate"
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr "ACME Zertifikate"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "ACME Zertifikate"
|
msgstr "ACME Zertifikate"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Globale ACME Einstellungen"
|
msgstr "Globale ACME Einstellungen"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Account E-Mail"
|
msgstr "Account E-Mail"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Zertifikateinstellungen"
|
msgstr "Zertifikateinstellungen"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "DNS API Zugangsdaten"
|
msgstr "DNS API Zugangsdaten"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Aktiviert"
|
msgstr "Aktiviert"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,26 +87,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Gewähre UCI Zugriff auf luci-app-acme"
|
msgstr "Gewähre UCI Zugriff auf luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Schlüssellänge"
|
msgstr "Schlüssellänge"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -106,14 +126,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -123,7 +143,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -133,43 +153,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "ACME certificates"
|
msgstr "ACME certificates"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "ACME certificates"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "ACME certs"
|
msgstr "ACME certs"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "ACME global config"
|
msgstr "ACME global config"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Account email"
|
msgstr "Account email"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Certificate config"
|
msgstr "Certificate config"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "Challenge Alias"
|
msgstr "Challenge Alias"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "DNS API credentials"
|
msgstr "DNS API credentials"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Domain Alias"
|
msgstr "Domain Alias"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Domain names"
|
msgstr "Domain names"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -60,19 +60,27 @@ msgstr ""
|
||||||
"subject name, subsequent names will be alt names. Note that all domain names "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "Email address to associate with account key."
|
msgstr "Email address to associate with account key."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Enable debug logging"
|
msgstr "Enable debug logging"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Enabled"
|
msgstr "Enabled"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -84,26 +92,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -111,14 +131,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -128,7 +148,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -138,43 +158,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "Certificados ACME"
|
msgstr "Certificados ACME"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "Certificados ACME"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "Certificados ACME"
|
msgstr "Certificados ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Configuración global de ACME"
|
msgstr "Configuración global de ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Cuenta de email"
|
msgstr "Cuenta de email"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Configuración de certificado"
|
msgstr "Configuración de certificado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "Alias de desafío"
|
msgstr "Alias de desafío"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "API de DNS"
|
msgstr "API de DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Credenciales de API de DNS"
|
msgstr "Credenciales de API de DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Alias de dominio"
|
msgstr "Alias de dominio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Nombres de dominio"
|
msgstr "Nombres de dominio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -61,20 +61,28 @@ msgstr ""
|
||||||
"en cuenta que todos los nombres de dominio deben apuntar al enrutador en el "
|
"en cuenta que todos los nombres de dominio deben apuntar al enrutador en el "
|
||||||
"DNS global."
|
"DNS global."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dirección de correo electrónico para asociar con la clave de la cuenta."
|
"Dirección de correo electrónico para asociar con la clave de la cuenta."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Activar registro de depuración"
|
msgstr "Activar registro de depuración"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Activado"
|
msgstr "Activado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -86,19 +94,31 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Conceder acceso UCI para luci-app-acme"
|
msgstr "Conceder acceso UCI para luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Tamaño de clave"
|
msgstr "Tamaño de clave"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "Tamaño de clave (y tipo) para el certificado generado."
|
msgstr "Tamaño de clave (y tipo) para el certificado generado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "Directorio del estado"
|
msgstr "Directorio del estado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -108,7 +128,7 @@ msgstr ""
|
||||||
"com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles sobre "
|
"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."
|
"este proceso. LUCI solo admite un alias de desafío por certificado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -121,7 +141,7 @@ msgstr ""
|
||||||
"en formato de variable de shell KEY=VAL para proporcionar múltiples "
|
"en formato de variable de shell KEY=VAL para proporcionar múltiples "
|
||||||
"variables de credenciales."
|
"variables de credenciales."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -132,7 +152,7 @@ msgstr ""
|
||||||
"detalles sobre este proceso. LUCI solo admite un dominio de desafío por "
|
"detalles sobre este proceso. LUCI solo admite un dominio de desafío por "
|
||||||
"certificado."
|
"certificado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -149,7 +169,7 @@ msgstr ""
|
||||||
"emisión de certificados puede demorar un tiempo. Verifique los registros de "
|
"emisión de certificados puede demorar un tiempo. Verifique los registros de "
|
||||||
"progreso y cualquier error."
|
"progreso y cualquier error."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -165,7 +185,7 @@ msgstr ""
|
||||||
"del enrutador. El modo DNS también es el único modo que admite certificados "
|
"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."
|
"comodín. El uso de este modo requiere que se instale el paquete acme-dnsapi."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"for one certificate). Nginx must support ssl, if not it won't start as it "
|
||||||
|
@ -176,7 +196,7 @@ msgstr ""
|
||||||
"SSL, de lo contrario no se iniciará, ya que debe compilarse con soporte SSL "
|
"SSL, de lo contrario no se iniciará, ya que debe compilarse con soporte SSL "
|
||||||
"para usar opciones de certificado"
|
"para usar opciones de certificado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
|
@ -186,23 +206,23 @@ msgstr ""
|
||||||
"(solo seleccione esto para un certificado). También está disponible luci-app-"
|
"(solo seleccione esto para un certificado). También está disponible luci-app-"
|
||||||
"uhttpd para configurar uhttpd desde la interfaz LuCI."
|
"uhttpd para configurar uhttpd desde la interfaz LuCI."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr "Usar para nginx"
|
msgstr "Usar para nginx"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr "Usar para uhttpd"
|
msgstr "Usar para uhttpd"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr "Usar servidor de ensayo"
|
msgstr "Usar servidor de ensayo"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "Directorio Webroot"
|
msgstr "Directorio Webroot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
|
@ -212,7 +232,7 @@ msgstr ""
|
||||||
"del servidor web para ejecutar Acme en modo webroot. El servidor web debe "
|
"del servidor web para ejecutar Acme en modo webroot. El servidor web debe "
|
||||||
"ser accesible desde internet en el puerto 80."
|
"ser accesible desde internet en el puerto 80."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr "Donde se mantienen los certificados y otros archivos de estado."
|
msgstr "Donde se mantienen los certificados y otros archivos de estado."
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "ACME sertifikaatit"
|
msgstr "ACME sertifikaatit"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "ACME sertifikaatit"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "ACME sertifikaatit"
|
msgstr "ACME sertifikaatit"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "ACME-yleisasetukset"
|
msgstr "ACME-yleisasetukset"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Sähköpostitili"
|
msgstr "Sähköpostitili"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Sertifikaatin asetukset"
|
msgstr "Sertifikaatin asetukset"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "Haaste - alias"
|
msgstr "Haaste - alias"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "DNS API kirjautumistiedot"
|
msgstr "DNS API kirjautumistiedot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Verkkonimen alias"
|
msgstr "Verkkonimen alias"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Verkkonimet"
|
msgstr "Verkkonimet"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -61,19 +61,27 @@ msgstr ""
|
||||||
"kaikkien verkkotunnusten pitää osoittaa reitittimeen globaalissa DNS-"
|
"kaikkien verkkotunnusten pitää osoittaa reitittimeen globaalissa DNS-"
|
||||||
"järjestelmässä."
|
"järjestelmässä."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "Avaimeen liitettävä sähköpostiosoite."
|
msgstr "Avaimeen liitettävä sähköpostiosoite."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Ota vieanetsintälokkaus käyttöön"
|
msgstr "Ota vieanetsintälokkaus käyttöön"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Käytössä"
|
msgstr "Käytössä"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -83,26 +91,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Salli pääsy acme-asetuksiin"
|
msgstr "Salli pääsy acme-asetuksiin"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Avaimen koko"
|
msgstr "Avaimen koko"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "Avaimen koko (ja tyyppi) luotavassa sertifikaatissa."
|
msgstr "Avaimen koko (ja tyyppi) luotavassa sertifikaatissa."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "Tilahakemisto"
|
msgstr "Tilahakemisto"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -110,14 +130,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -127,7 +147,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -137,43 +157,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
"X-Generator: Weblate 4.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Activé"
|
msgstr "Activé"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,26 +87,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -106,14 +126,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -123,7 +143,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -133,43 +153,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "Certificati ACME"
|
msgstr "Certificati ACME"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "Certificati ACME"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "Certificati ACME"
|
msgstr "Certificati ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Configurazione globale ACME"
|
msgstr "Configurazione globale ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "E-mail dell'account"
|
msgstr "E-mail dell'account"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Configurazione certificato"
|
msgstr "Configurazione certificato"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "API DNS"
|
msgstr "API DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Credenziali API DNS"
|
msgstr "Credenziali API DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Alias di dominio"
|
msgstr "Alias di dominio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Nomi di dominio"
|
msgstr "Nomi di dominio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -60,19 +60,27 @@ msgstr ""
|
||||||
"soggetto, i successivi saranno nomi alternativi. Nota che tutti i nomi di "
|
"soggetto, i successivi saranno nomi alternativi. Nota che tutti i nomi di "
|
||||||
"dominio devono puntare al router nel DNS globale."
|
"dominio devono puntare al router nel DNS globale."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "Indirizzo e-mail da associare alla chiave dell'account."
|
msgstr "Indirizzo e-mail da associare alla chiave dell'account."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Abilita il logging esteso"
|
msgstr "Abilita il logging esteso"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Abilitato"
|
msgstr "Abilitato"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -84,26 +92,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Concedi l'accesso UCI a luci-app-acme"
|
msgstr "Concedi l'accesso UCI a luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -111,14 +131,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -128,7 +148,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -138,43 +158,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
"X-Generator: Weblate 4.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "ドメイン名"
|
msgstr "ドメイン名"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "有効"
|
msgstr "有効"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,26 +87,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "luci-app-acme に UCI アクセスを許可"
|
msgstr "luci-app-acme に UCI アクセスを許可"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -106,14 +126,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -123,7 +143,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -133,43 +153,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "सक्षम केले"
|
msgstr "सक्षम केले"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,26 +87,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -106,14 +126,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -123,7 +143,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -133,43 +153,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Domenenavn"
|
msgstr "Domenenavn"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,26 +87,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Nøkkelstørrelse"
|
msgstr "Nøkkelstørrelse"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -106,14 +126,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -123,7 +143,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -133,43 +153,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -11,7 +11,7 @@ msgstr ""
|
||||||
"|| n%100>=20) ? 1 : 2;\n"
|
"|| n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.1.1-dev\n"
|
"X-Generator: Weblate 4.1.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "Certyfikaty ACME"
|
msgstr "Certyfikaty ACME"
|
||||||
|
|
||||||
|
@ -19,39 +19,39 @@ msgstr "Certyfikaty ACME"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "Certyfikaty ACME"
|
msgstr "Certyfikaty ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Konfiguracja globalna ACME"
|
msgstr "Konfiguracja globalna ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Konto email"
|
msgstr "Konto email"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Konfiguracja certyfikatu"
|
msgstr "Konfiguracja certyfikatu"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "Alias wyzwania"
|
msgstr "Alias wyzwania"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Poświadczenia interfejsu API DNS"
|
msgstr "Poświadczenia interfejsu API DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Alias Domeny"
|
msgstr "Alias Domeny"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Nazwy domen"
|
msgstr "Nazwy domen"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -61,19 +61,27 @@ msgstr ""
|
||||||
"podmiotu, kolejne imiona będą imionami alternatywnymi. Pamiętaj, że "
|
"podmiotu, kolejne imiona będą imionami alternatywnymi. Pamiętaj, że "
|
||||||
"wszystkie nazwy domen muszą wskazywać na router w globalnym DNS."
|
"wszystkie nazwy domen muszą wskazywać na router w globalnym DNS."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "Adres email do powiązania z kluczem konta."
|
msgstr "Adres email do powiązania z kluczem konta."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Włącz rejestrowanie debugowania"
|
msgstr "Włącz rejestrowanie debugowania"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Włączone"
|
msgstr "Włączone"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -85,19 +93,31 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Udziel dostępu UCI dla luci-app-acme"
|
msgstr "Udziel dostępu UCI dla luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Rozmiar klucza"
|
msgstr "Rozmiar klucza"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "Rozmiar klucza (i typ) dla wygenerowanego certyfikatu."
|
msgstr "Rozmiar klucza (i typ) dla wygenerowanego certyfikatu."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "Katalog stanu"
|
msgstr "Katalog stanu"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -108,7 +128,7 @@ msgstr ""
|
||||||
"informacje na temat tego procesu. LUCI obsługuje tylko jeden alias wyzwania "
|
"informacje na temat tego procesu. LUCI obsługuje tylko jeden alias wyzwania "
|
||||||
"na certyfikat."
|
"na certyfikat."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -120,7 +140,7 @@ msgstr ""
|
||||||
"poświadczeń wymaganych przez każdy interfejs API. Dodaj tutaj wiele wpisów w "
|
"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."
|
"formacie zmiennej powłoki KEY=VAL, aby podać wiele zmiennych referencji."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -131,7 +151,7 @@ msgstr ""
|
||||||
"informacje na temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania "
|
"informacje na temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania "
|
||||||
"na certyfikat."
|
"na certyfikat."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -147,7 +167,7 @@ msgstr ""
|
||||||
"adres IP routera. Po skonfigurowaniu wydawanie certyfikatów może chwilę "
|
"adres IP routera. Po skonfigurowaniu wydawanie certyfikatów może chwilę "
|
||||||
"potrwać. Sprawdź dzienniki pod kątem postępu i ewentualnych błędów."
|
"potrwać. Sprawdź dzienniki pod kątem postępu i ewentualnych błędów."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -164,7 +184,7 @@ msgstr ""
|
||||||
"wieloznaczne. Korzystanie z tego trybu wymaga zainstalowania pakietu acme-"
|
"wieloznaczne. Korzystanie z tego trybu wymaga zainstalowania pakietu acme-"
|
||||||
"dnsapi."
|
"dnsapi."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"for one certificate). Nginx must support ssl, if not it won't start as it "
|
||||||
|
@ -175,7 +195,7 @@ msgstr ""
|
||||||
"uruchomi się, ponieważ należy go skompilować z obsługą ssl, aby użyć opcji "
|
"uruchomi się, ponieważ należy go skompilować z obsługą ssl, aby użyć opcji "
|
||||||
"certyfikatu"
|
"certyfikatu"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
|
@ -185,23 +205,23 @@ msgstr ""
|
||||||
"to tylko dla jednego certyfikatu). Jest również dostępna luci-app-uhttpd do "
|
"to tylko dla jednego certyfikatu). Jest również dostępna luci-app-uhttpd do "
|
||||||
"konfiguracji uhttpd z interfejsu LuCI."
|
"konfiguracji uhttpd z interfejsu LuCI."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr "Użyj dla nginx"
|
msgstr "Użyj dla nginx"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr "Użyj dla uhttpd"
|
msgstr "Użyj dla uhttpd"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr "Użyj serwera pomostowego"
|
msgstr "Użyj serwera pomostowego"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "Katalog Webroot"
|
msgstr "Katalog Webroot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
|
@ -211,6 +231,6 @@ msgstr ""
|
||||||
"uruchomić Acme w trybie webroot. Serwer WWW musi być dostępny z Internetu na "
|
"uruchomić Acme w trybie webroot. Serwer WWW musi być dostępny z Internetu na "
|
||||||
"porcie 80."
|
"porcie 80."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr "Gdzie przechowywane są certyfikaty i inne pliki stanu."
|
msgstr "Gdzie przechowywane są certyfikaty i inne pliki stanu."
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "Certificados ACME"
|
msgstr "Certificados ACME"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "Certificados ACME"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "Certificados ACME"
|
msgstr "Certificados ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Configuração global de ACME"
|
msgstr "Configuração global de ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Conta de e-mail"
|
msgstr "Conta de e-mail"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Configuração do certificado"
|
msgstr "Configuração do certificado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "Aliás do Desafio"
|
msgstr "Aliás do Desafio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "API do DNS"
|
msgstr "API do DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Credenciais do API do DNS"
|
msgstr "Credenciais do API do DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Aliás do Domínio"
|
msgstr "Aliás do Domínio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Nomes de domínio"
|
msgstr "Nomes de domínio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -60,19 +60,27 @@ msgstr ""
|
||||||
"assunto, os nomes subsequentes serão nomes alternativos. Note que todos os "
|
"assunto, os nomes subsequentes serão nomes alternativos. Note que todos os "
|
||||||
"nomes de domínio devem apontar para o roteador no DNS global."
|
"nomes de domínio devem apontar para o roteador no DNS global."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "O endereço de email para associar à chave da conta."
|
msgstr "O endereço de email para associar à chave da conta."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Ativar o registo de depuração"
|
msgstr "Ativar o registo de depuração"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Ativado"
|
msgstr "Ativado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -84,19 +92,31 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Conceder acesso UCI ao luci-app-acme"
|
msgstr "Conceder acesso UCI ao luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Tamanho da chave"
|
msgstr "Tamanho da chave"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "Tamanho (e tipo) da chave para o certificado gerado."
|
msgstr "Tamanho (e tipo) da chave para o certificado gerado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "Diretório do estado"
|
msgstr "Diretório do estado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -107,7 +127,7 @@ msgstr ""
|
||||||
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
||||||
"certificado."
|
"certificado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -120,7 +140,7 @@ msgstr ""
|
||||||
"formato como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
|
"formato como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
|
||||||
"credenciais."
|
"credenciais."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -131,7 +151,7 @@ msgstr ""
|
||||||
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
||||||
"certificado."
|
"certificado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -148,7 +168,7 @@ msgstr ""
|
||||||
"demorar um pouco. Verifique os registos log para ver o progresso e quaisquer "
|
"demorar um pouco. Verifique os registos log para ver o progresso e quaisquer "
|
||||||
"erros."
|
"erros."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -164,7 +184,7 @@ msgstr ""
|
||||||
"O modo DNS é também o único modo que suporta certificados curinga. A "
|
"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."
|
"utilização deste modo requer a instalação do pacote acme-dnsapi."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"for one certificate). Nginx must support ssl, if not it won't start as it "
|
||||||
|
@ -175,7 +195,7 @@ msgstr ""
|
||||||
"contrário não será iniciado precisa ser compilado com o suporte ssl para "
|
"contrário não será iniciado precisa ser compilado com o suporte ssl para "
|
||||||
"usar as opções do cert"
|
"usar as opções do cert"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
|
@ -185,23 +205,23 @@ msgstr ""
|
||||||
"selecione isto apenas para um certificado). Também está disponível o luci-"
|
"selecione isto apenas para um certificado). Também está disponível o luci-"
|
||||||
"app-uhttpd para configurar uhttpd a partir da interface LuCI."
|
"app-uhttpd para configurar uhttpd a partir da interface LuCI."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr "Uso para nginx"
|
msgstr "Uso para nginx"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr "Use para uhttpd"
|
msgstr "Use para uhttpd"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr "Use o servidor de estágio"
|
msgstr "Use o servidor de estágio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "Diretório webroot"
|
msgstr "Diretório webroot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
|
@ -211,6 +231,6 @@ msgstr ""
|
||||||
"para executar o Acme em modo webroot. O servidor web deve estar acessível da "
|
"para executar o Acme em modo webroot. O servidor web deve estar acessível da "
|
||||||
"Internet na porta 80."
|
"Internet na porta 80."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr "Onde os certificados e outros ficheiros de estado são mantidos."
|
msgstr "Onde os certificados e outros ficheiros de estado são mantidos."
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "Certificados ACME"
|
msgstr "Certificados ACME"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "Certificados ACME"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "certificados ACME"
|
msgstr "certificados ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Configuração global ACME"
|
msgstr "Configuração global ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "E-mail da conta"
|
msgstr "E-mail da conta"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Configuração do certificado"
|
msgstr "Configuração do certificado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "Aliás do Desafio"
|
msgstr "Aliás do Desafio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "API do DNS"
|
msgstr "API do DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Credenciais do API DNS"
|
msgstr "Credenciais do API DNS"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Aliás do Domínio"
|
msgstr "Aliás do Domínio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Nomes de domínio"
|
msgstr "Nomes de domínio"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -60,19 +60,27 @@ msgstr ""
|
||||||
"do assunto, os nomes subsequentes serão nomes alternativos. Observe que "
|
"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."
|
"todos os nomes de domínio devem apontar para o roteador no DNS global."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "O endereço de email para associar à chave da conta."
|
msgstr "O endereço de email para associar à chave da conta."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Habilitar o registro de depuração"
|
msgstr "Habilitar o registro de depuração"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Ativado"
|
msgstr "Ativado"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -84,19 +92,31 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Conceda acesso UCI para o luci-app-acme"
|
msgstr "Conceda acesso UCI para o luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Tamanho da chave"
|
msgstr "Tamanho da chave"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "Tamanho (e tipo) da chave para o certificado gerado."
|
msgstr "Tamanho (e tipo) da chave para o certificado gerado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "Condição do diretório"
|
msgstr "Condição do diretório"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -107,7 +127,7 @@ msgstr ""
|
||||||
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
||||||
"certificado."
|
"certificado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -120,7 +140,7 @@ msgstr ""
|
||||||
"formato como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
|
"formato como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
|
||||||
"credenciais."
|
"credenciais."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -131,7 +151,7 @@ msgstr ""
|
||||||
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
"este processo. O LUCI é compatível apenas com um desafio aliás por "
|
||||||
"certificado."
|
"certificado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -148,7 +168,7 @@ msgstr ""
|
||||||
"demorar um pouco. Verifique os registros log para ver os progressos e "
|
"demorar um pouco. Verifique os registros log para ver os progressos e "
|
||||||
"quaisquer outros erros."
|
"quaisquer outros erros."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -164,7 +184,7 @@ msgstr ""
|
||||||
"O modo DNS também é o único modo que é compatível com certificados curinga. "
|
"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."
|
"O uso desse modo requer que o pacote acme-dnsapi esteja instalado."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"for one certificate). Nginx must support ssl, if not it won't start as it "
|
||||||
|
@ -175,7 +195,7 @@ msgstr ""
|
||||||
"ssl, caso contrário ele não vai iniciar pois para usar as opções cert ele "
|
"ssl, caso contrário ele não vai iniciar pois para usar as opções cert ele "
|
||||||
"precisa ser compilado com ssl"
|
"precisa ser compilado com ssl"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
|
@ -185,23 +205,23 @@ msgstr ""
|
||||||
"(selecione-o apenas para um certificado). Também está disponível o luci-app-"
|
"(selecione-o apenas para um certificado). Também está disponível o luci-app-"
|
||||||
"uhttpd para configurar o uhttpd através da interface LuCI."
|
"uhttpd para configurar o uhttpd através da interface LuCI."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr "Uso para o nginx"
|
msgstr "Uso para o nginx"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr "Use para o uhttpd"
|
msgstr "Use para o uhttpd"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr "Use o servidor de encenação"
|
msgstr "Use o servidor de encenação"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "Diretório Webroot"
|
msgstr "Diretório Webroot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
|
@ -211,7 +231,7 @@ msgstr ""
|
||||||
"servidor da web para executar o Acme em modo webroot. O servidor web deve "
|
"servidor da web para executar o Acme em modo webroot. O servidor web deve "
|
||||||
"estar acessível na internet na porta 80."
|
"estar acessível na internet na porta 80."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr "Onde os certificados e os outros arquivos de estado são mantidos."
|
msgstr "Onde os certificados e os outros arquivos de estado são mantidos."
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -11,7 +11,7 @@ msgstr ""
|
||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.1.1\n"
|
"X-Generator: Weblate 4.1.1\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "Сертификаты ACME"
|
msgstr "Сертификаты ACME"
|
||||||
|
|
||||||
|
@ -19,58 +19,66 @@ msgstr "Сертификаты ACME"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "Сертификаты ACME"
|
msgstr "Сертификаты ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "Глобальная конфигурация ACME"
|
msgstr "Глобальная конфигурация ACME"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "Адрес электронной почты"
|
msgstr "Адрес электронной почты"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Конфигурация сертификата"
|
msgstr "Конфигурация сертификата"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Данные для доступа к DNS API"
|
msgstr "Данные для доступа к DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Доменный алиас"
|
msgstr "Доменный алиас"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Доменные имена"
|
msgstr "Доменные имена"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Включено"
|
msgstr "Включено"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -80,26 +88,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Предоставить UCI доступ для luci-app-acme"
|
msgstr "Предоставить UCI доступ для luci-app-acme"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Размер ключа"
|
msgstr "Размер ключа"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -107,14 +127,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -124,7 +144,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -134,43 +154,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "Каталог Webroot"
|
msgstr "Каталог Webroot"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "ACME certifikáty"
|
msgstr "ACME certifikáty"
|
||||||
|
|
||||||
|
@ -18,39 +18,39 @@ msgstr "ACME certifikáty"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "ACME certifikáty"
|
msgstr "ACME certifikáty"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "ACME globálna konfigurácia"
|
msgstr "ACME globálna konfigurácia"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "E-mail účtu"
|
msgstr "E-mail účtu"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "Konfigurácia certifikátov"
|
msgstr "Konfigurácia certifikátov"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "Prihlasovacie údaje DNS API"
|
msgstr "Prihlasovacie údaje DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "Alias domény"
|
msgstr "Alias domény"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "Domény"
|
msgstr "Domény"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
|
@ -59,19 +59,27 @@ msgstr ""
|
||||||
"Domény v certifikáte. Prvá bude názov subjektu, ďalšie budú alternatívne "
|
"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."
|
"názvy. Všetky domény musia smerovať na router v globálnom DNS."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "E-mailová adresa k účtu."
|
msgstr "E-mailová adresa k účtu."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "Povoliť detailné záznamy"
|
msgstr "Povoliť detailné záznamy"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Povolené"
|
msgstr "Povolené"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
|
@ -84,26 +92,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "Povoliť luci-app-acme prístup k UCI"
|
msgstr "Povoliť luci-app-acme prístup k UCI"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "Dĺžka kľúča"
|
msgstr "Dĺžka kľúča"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "Dĺžka (a typ) kľúča pre generovaný certifikát."
|
msgstr "Dĺžka (a typ) kľúča pre generovaný certifikát."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"The credentials for the DNS API mode selected above. See https://github.com/"
|
||||||
|
@ -115,14 +135,14 @@ msgstr ""
|
||||||
"acmesh-official/acme.sh/wiki/dnsapi pre formát údajov požadovaný každým API. "
|
"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."
|
"Pre zadanie viacerých údajov tu pridaj hodnoty v tvare KĽÚČ=HODNOTA."
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -132,7 +152,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -142,43 +162,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -9,58 +9,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -70,26 +78,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -97,14 +117,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -114,7 +134,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -124,43 +144,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -11,7 +11,7 @@ msgstr ""
|
||||||
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -19,58 +19,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "Увімкнено"
|
msgstr "Увімкнено"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -80,26 +88,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -107,14 +127,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -124,7 +144,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -134,43 +154,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -4,7 +4,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -12,58 +12,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -73,26 +81,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -100,14 +120,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -117,7 +137,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -127,43 +147,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Weblate 4.2-dev\n"
|
"X-Generator: Weblate 4.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr "ACME 证书"
|
msgstr "ACME 证书"
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr "ACME 证书"
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr "ACME 证书"
|
msgstr "ACME 证书"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr "ACME 全局配置"
|
msgstr "ACME 全局配置"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr "电子邮件帐户"
|
msgstr "电子邮件帐户"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr "证书配置"
|
msgstr "证书配置"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr "质询别名"
|
msgstr "质询别名"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr "DNS API"
|
msgstr "DNS API"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr "DNS API 凭证"
|
msgstr "DNS API 凭证"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr "域名别名"
|
msgstr "域名别名"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr "域名"
|
msgstr "域名"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr "证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注意,所有域名都必须在路由中指向全局 DNS。"
|
msgstr "证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注意,所有域名都必须在路由中指向全局 DNS。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr "与帐户密钥关联的电子邮件地址。"
|
msgstr "与帐户密钥关联的电子邮件地址。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr "启用调试日志记录"
|
msgstr "启用调试日志记录"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "已启用"
|
msgstr "已启用"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,19 +87,31 @@ msgstr "从 Letsencrypt 临时服务器获取证书(用于测试;证书无效)
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr "授予 UCI 访问 luci-app-acme 的权限"
|
msgstr "授予 UCI 访问 luci-app-acme 的权限"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr "密钥长度"
|
msgstr "密钥长度"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr "生成的证书的密钥长度(和类型)。"
|
msgstr "生成的证书的密钥长度(和类型)。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr "状态文件夹"
|
msgstr "状态文件夹"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -100,7 +120,7 @@ msgstr ""
|
||||||
"用于所有域名的质询别名(challenge alias)。有关此过程的详细信息,请参阅 https://github.com/"
|
"用于所有域名的质询别名(challenge alias)。有关此过程的详细信息,请参阅 https://github.com/"
|
||||||
"acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一个质询别名。"
|
"acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一个质询别名。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -110,7 +130,7 @@ msgstr ""
|
||||||
"上面选择的 DNS API 模式的凭据。请参阅 https://github.com/acmesh-official/acme.sh/wiki/"
|
"上面选择的 DNS API 模式的凭据。请参阅 https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
"dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变量格式添加多个条目,以提供多个凭据变量。"
|
"dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变量格式添加多个条目,以提供多个凭据变量。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
|
@ -119,7 +139,7 @@ msgstr ""
|
||||||
"用于所有域名的别名(domain alias)。有关此过程的详细信息,请参阅 https://github.com/acmesh-official/"
|
"用于所有域名的别名(domain alias)。有关此过程的详细信息,请参阅 https://github.com/acmesh-official/"
|
||||||
"acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一个质询别名。"
|
"acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一个质询别名。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -131,7 +151,7 @@ msgstr ""
|
||||||
"这将配置 ACME (Letsencrypt) 自动证书安装。只需填写此内容即可为路由器配置由 Letsencrypt 颁发的 Web 界面证书。请注意,"
|
"这将配置 ACME (Letsencrypt) 自动证书安装。只需填写此内容即可为路由器配置由 Letsencrypt 颁发的 Web 界面证书。请注意,"
|
||||||
"证书中的域名必须已经配置为指向路由器的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和错误。"
|
"证书中的域名必须已经配置为指向路由器的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和错误。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -144,7 +164,7 @@ msgstr ""
|
||||||
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi。在 DNS "
|
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi。在 DNS "
|
||||||
"模式下,域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书的模式。使用此模式需要安装 acme-dnsapi 包。"
|
"模式下,域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书的模式。使用此模式需要安装 acme-dnsapi 包。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"for one certificate). Nginx must support ssl, if not it won't start as it "
|
||||||
|
@ -153,7 +173,7 @@ msgstr ""
|
||||||
"颁发此证书后,用该证书更新 nginx 配置(只能有一个证书配置选中该选项)。Nginx 必须支持 "
|
"颁发此证书后,用该证书更新 nginx 配置(只能有一个证书配置选中该选项)。Nginx 必须支持 "
|
||||||
"ssl,如果无法启动,则必须使用ssl支持进行编译才能使用证书选项"
|
"ssl,如果无法启动,则必须使用ssl支持进行编译才能使用证书选项"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
|
@ -162,23 +182,23 @@ msgstr ""
|
||||||
"签发此证书后,使用此证书更新 uhttpd 配置(只能有一个证书配置选中该选项)。也可通过 LuCI 界面的 luci-app-uhttpd 来配置 "
|
"签发此证书后,使用此证书更新 uhttpd 配置(只能有一个证书配置选中该选项)。也可通过 LuCI 界面的 luci-app-uhttpd 来配置 "
|
||||||
"uhttpd。"
|
"uhttpd。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr "用于 Nginx"
|
msgstr "用于 Nginx"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr "用于 uhttpd"
|
msgstr "用于 uhttpd"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr "使用临时服务器"
|
msgstr "使用临时服务器"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr "Webroot 文件夹"
|
msgstr "Webroot 文件夹"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
|
@ -186,7 +206,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。Web 服务器必须允许从互联网上使用80端口访问。"
|
"Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。Web 服务器必须允许从互联网上使用80端口访问。"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr "存放证书和其他状态文件的位置。"
|
msgstr "存放证书和其他状态文件的位置。"
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.1-dev\n"
|
"X-Generator: Weblate 4.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:18
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17
|
||||||
msgid "ACME certificates"
|
msgid "ACME certificates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -18,58 +18,66 @@ msgstr ""
|
||||||
msgid "ACME certs"
|
msgid "ACME certs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:27
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
|
||||||
msgid "ACME global config"
|
msgid "ACME global config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:35
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34
|
||||||
msgid "Account email"
|
msgid "Account email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:43
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42
|
||||||
msgid "Certificate config"
|
msgid "Certificate config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:107
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:106
|
||||||
msgid "Challenge Alias"
|
msgid "Challenge Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:94
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:93
|
||||||
msgid "DNS API"
|
msgid "DNS API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:101
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100
|
||||||
msgid "DNS API credentials"
|
msgid "DNS API credentials"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:112
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:111
|
||||||
msgid "Domain Alias"
|
msgid "Domain Alias"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:88
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
|
||||||
msgid "Domain names"
|
msgid "Domain names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:89
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
|
||||||
msgid ""
|
msgid ""
|
||||||
"Domain names to include in the certificate. The first name will be the "
|
"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 "
|
"subject name, subsequent names will be alt names. Note that all domain names "
|
||||||
"must point at the router in the global DNS."
|
"must point at the router in the global DNS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:36
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
|
||||||
|
msgid "ECC 256 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60
|
||||||
|
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."
|
msgid "Email address to associate with account key."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:40
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
|
||||||
msgid "Enable debug logging"
|
msgid "Enable debug logging"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:47
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
|
||||||
msgid "Enabled"
|
msgid "Enabled"
|
||||||
msgstr "啟用"
|
msgstr "啟用"
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:51
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
"Get certificate from the Letsencrypt staging server (use for testing; the "
|
||||||
"certificate won't be valid)."
|
"certificate won't be valid)."
|
||||||
|
@ -79,26 +87,38 @@ msgstr ""
|
||||||
msgid "Grant UCI access for luci-app-acme"
|
msgid "Grant UCI access for luci-app-acme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:55
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
|
||||||
msgid "Key size"
|
msgid "Key size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:56
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
|
||||||
msgid "Key size (and type) for the generated certificate."
|
msgid "Key size (and type) for the generated certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:30
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
|
||||||
|
msgid "RSA 2048 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
|
||||||
|
msgid "RSA 3072 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58
|
||||||
|
msgid "RSA 4096 bits"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29
|
||||||
msgid "State directory"
|
msgid "State directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:108
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107
|
||||||
msgid ""
|
msgid ""
|
||||||
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge alias per certificate."
|
"only supports one challenge alias per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:102
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"The credentials for the DNS API mode selected above. See https://github.com/"
|
"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 "
|
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
|
||||||
|
@ -106,14 +126,14 @@ msgid ""
|
||||||
"supply multiple credential variables."
|
"supply multiple credential variables."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:113
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
|
"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 "
|
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
|
||||||
"only supports one challenge domain per certificate."
|
"only supports one challenge domain per certificate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:19
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
"This configures ACME (Letsencrypt) automatic certificate installation. "
|
||||||
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
"Simply fill out this to have the router configured with Letsencrypt-issued "
|
||||||
|
@ -123,7 +143,7 @@ msgid ""
|
||||||
"logs for progress and any errors."
|
"logs for progress and any errors."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:95
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use DNS mode to issue certificates, set this to the name of a 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/"
|
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
|
||||||
|
@ -133,43 +153,43 @@ msgid ""
|
||||||
"package to be installed."
|
"package to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:75
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the nginx config with this certificate once issued (only select this "
|
"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 "
|
"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"
|
"needs to be compiled with ssl support to use cert options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:67
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"Update the uhttpd config with this certificate once issued (only select this "
|
"Update the uhttpd config with this certificate once issued (only select this "
|
||||||
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
|
||||||
"form the LuCI interface."
|
"form the LuCI interface."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:74
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
|
||||||
msgid "Use for nginx"
|
msgid "Use for nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:66
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65
|
||||||
msgid "Use for uhttpd"
|
msgid "Use for uhttpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:50
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
|
||||||
msgid "Use staging server"
|
msgid "Use staging server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:82
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
|
||||||
msgid "Webroot directory"
|
msgid "Webroot directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:83
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Webserver root directory. Set this to the webserver document root to run "
|
"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 "
|
"Acme in webroot mode. The web server must be accessible from the internet on "
|
||||||
"port 80."
|
"port 80."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-acme/luasrc/model/cbi/acme.lua:31
|
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30
|
||||||
msgid "Where certs and other state files are kept."
|
msgid "Where certs and other state files are kept."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -3,9 +3,8 @@
|
||||||
"title": "ACME certs",
|
"title": "ACME certs",
|
||||||
"order": 50,
|
"order": 50,
|
||||||
"action": {
|
"action": {
|
||||||
"type": "cbi",
|
"type": "view",
|
||||||
"path": "acme",
|
"path": "acme"
|
||||||
"post": { "cbi.submit": true }
|
|
||||||
},
|
},
|
||||||
"depends": {
|
"depends": {
|
||||||
"acl": [ "luci-app-acme" ]
|
"acl": [ "luci-app-acme" ]
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
"luci-app-acme": {
|
"luci-app-acme": {
|
||||||
"description": "Grant UCI access for luci-app-acme",
|
"description": "Grant UCI access for luci-app-acme",
|
||||||
"read": {
|
"read": {
|
||||||
|
"file": {
|
||||||
|
"/usr/sbin/nginx": [ "read" ],
|
||||||
|
"/usr/sbin/uhttpd": [ "read" ]
|
||||||
|
},
|
||||||
"uci": [ "acme" ]
|
"uci": [ "acme" ]
|
||||||
},
|
},
|
||||||
"write": {
|
"write": {
|
||||||
|
|
Loading…
Reference in a new issue