Merge pull request #6415 from stokito/acme

Update luci-app-acme to work with the updated acme client, and rework the UI some as well.
This commit is contained in:
Toke Høiland-Jørgensen 2023-08-08 13:43:49 +02:00 committed by GitHub
commit 762c45eb2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 5348 additions and 3003 deletions

View file

@ -1,17 +1,25 @@
'use strict'; 'use strict';
'require form'; 'require form';
'require fs'; 'require fs';
'require uci';
'require view'; 'require view';
return view.extend({ return view.extend({
load: function () { load: function() {
return Promise.all([ return L.resolveDefault(fs.list('/etc/ssl/acme/'), []).then(function(entries) {
L.resolveDefault(fs.stat('/usr/sbin/nginx'), {}), var certs = [];
L.resolveDefault(fs.stat('/usr/sbin/uhttpd'), {}) for (var i = 0; i < entries.length; i++) {
]); if (entries[i].type == 'file' && entries[i].name.match(/\.key$/)) {
certs.push(entries[i]);
}
}
return certs;
});
}, },
render: function (stats) { render: function (certs) {
let wikiUrl = 'https://github.com/acmesh-official/acme.sh/wiki/';
var wikiInstructionUrl = wikiUrl + 'dnsapi';
var m, s, o; var m, s, o;
m = new form.Map("acme", _("ACME certificates"), m = new form.Map("acme", _("ACME certificates"),
@ -21,13 +29,17 @@ return view.extend({
"Note that the domain names in the certificate must already be configured to " + "Note that the domain names in the certificate must already be configured to " +
"point at the router's public IP address. " + "point at the router's public IP address. " +
"Once configured, issuing certificates can take a while. " + "Once configured, issuing certificates can take a while. " +
"Check the logs for progress and any errors.")); "Check the logs for progress and any errors.") + '<br/>' +
_("Cert files are stored in") + ' <em>/etc/ssl/acme<em>'
);
s = m.section(form.TypedSection, "acme", _("ACME global config")); s = m.section(form.TypedSection, "acme", _("ACME global config"));
s.anonymous = true; s.anonymous = true;
o = s.option(form.Value, "account_email", _("Account email"), o = s.option(form.Value, "account_email", _("Account email"),
_("Email address to associate with account key.")) _('Email address to associate with account key.') + '<br/>' +
_('If a certificate wasn\'t renewed in time then you\'ll receive a notice at 20 days before expiry.')
)
o.rmempty = false; o.rmempty = false;
o.datatype = "minlength(1)"; o.datatype = "minlength(1)";
@ -40,80 +52,396 @@ return view.extend({
s.nodescriptions = true; s.nodescriptions = true;
o = s.tab("general", _("General Settings")); o = s.tab("general", _("General Settings"));
o = s.tab("challenge", _("Challenge Validation")); o = s.tab('challenge_webroot', _('Webroot Challenge Validation'));
o = s.tab('challenge_dns', _('DNS Challenge Validation'));
o = s.tab("advanced", _('Advanced Settings')); o = s.tab("advanced", _('Advanced Settings'));
o = s.taboption('general', form.Flag, "enabled", _("Enabled")); o = s.taboption('general', form.Flag, "enabled", _("Enabled"));
o.rmempty = false; o.rmempty = false;
o = s.taboption('general', form.Flag, "use_staging", _("Use staging server"),
_("Get certificate from the Letsencrypt staging server " +
"(use for testing; the certificate won't be valid)."));
o.rmempty = false;
o.modalonly = true;
o = s.taboption('general', form.ListValue, "keylength", _("Key size"),
_("Key size (and type) for the generated certificate."));
o.value("2048", _("RSA 2048 bits"));
o.value("3072", _("RSA 3072 bits"));
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;
o = s.taboption('general', form.DynamicList, "domains", _("Domain names"), o = s.taboption('general', form.DynamicList, "domains", _("Domain names"),
_("Domain names to include in the certificate. " + _("Domain names to include in the certificate. " +
"The first name will be the subject name, subsequent names will be alt names. " + "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.")); "Note that all domain names must point at the router in the global DNS."));
o.datatype = "list(string)"; o.datatype = "list(string)";
if (stats[1].type === 'file') { o = s.taboption('general', form.ListValue, 'validation_method', _('Validation method'),
o = s.taboption('general', form.Flag, "update_uhttpd", _("Use for uhttpd"),
_("Update the uhttpd config with this certificate once issued " +
"(only select this for one certificate). " +
"Is also available luci-app-uhttpd to configure uhttpd form the LuCI interface."));
o.rmempty = false;
o.modalonly = true;
}
if (stats[0].type === 'file') {
o = s.taboption('general', form.Flag, "update_nginx", _("Use for nginx"),
_("Update the nginx config with this certificate once issued " +
"(only select this for one certificate). " +
"Nginx must support ssl, if not it won't start as it needs to be " +
"compiled with ssl support to use cert options"));
o.rmempty = false;
o.modalonly = true;
}
o = s.taboption('challenge', form.ListValue, "validation_method", _("Validation method"),
_("Standalone mode will use the built-in webserver of acme.sh to issue a certificate. " + _("Standalone mode will use the built-in webserver of acme.sh to issue a certificate. " +
"Webroot mode will use an existing webserver to issue a certificate. " + "Webroot mode will use an existing webserver to issue a certificate. " +
"DNS mode will allow you to use the DNS API of your DNS provider to issue a certificate.")); "DNS mode will allow you to use the DNS API of your DNS provider to issue a certificate."));
o.value("standalone", _("Standalone")); o.value("standalone", _("Standalone"));
o.value("webroot", _("Webroot")); o.value("webroot", _("Webroot"));
o.value("dns", _("DNS")); o.value("dns", _("DNS"));
o.default = "standalone"; o.default = 'webroot';
o = s.taboption('challenge', form.Value, "webroot", _("Webroot directory"), o = s.taboption('challenge_webroot', form.Value, 'webroot', _('Webroot directory'),
_("Webserver root directory. Set this to the webserver " + _("Webserver root directory. Set this to the webserver " +
"document root to run Acme in webroot mode. The web " + "document root to run Acme in webroot mode. The web " +
"server must be accessible from the internet on port 80.")); "server must be accessible from the internet on port 80.") + '<br/>' +
_("Default") + " <em>/var/run/acme/challenge/</em>"
);
o.optional = true; o.optional = true;
o.depends("validation_method", "webroot"); o.depends("validation_method", "webroot");
o.modalonly = true; o.modalonly = true;
o = s.taboption('challenge', form.Value, "dns", _("DNS API"), o = s.taboption('challenge_dns', form.ListValue, 'dns', _('DNS API'),
_("To use DNS mode to issue certificates, set this to the name of a DNS API supported by acme.sh. " + _("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. " + "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. " + "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. " + "DNS mode is also the only mode that supports wildcard certificates. " +
"Using this mode requires the acme-dnsapi package to be installed.")); "Using this mode requires the acme-dnsapi package to be installed."));
o.depends("validation_method", "dns"); o.depends("validation_method", "dns");
// List of supported DNS API. Names are same as file names in acme.sh for easier search.
// May be outdated but not changed too often.
o.value('', '')
o.value('dns_acmedns', 'ACME DNS API github.com/joohoi/acme-dns');
o.value('dns_acmeproxy', 'ACME Proxy github.com/mdbraber/acmeproxy');
o.value('dns_1984hosting', '1984.is');
o.value('dns_active24', 'Active24.com');
o.value('dns_ad', 'Alwaysdata.com');
o.value('dns_ali', 'Alibaba Cloud Aliyun.com');
o.value('dns_anx', 'Anexia.com');
o.value('dns_arvan', 'ArvanCloud.ir');
o.value('dns_aurora', 'AuroraDNS.eu');
o.value('dns_autodns', 'autoDNS (InternetX)');
o.value('dns_aws', 'Amazon AWS Route53');
o.value('dns_azion', 'Azion.com');
o.value('dns_azure', 'Azure');
o.value('dns_bunny', 'Bunny.net');
o.value('dns_cf', 'CloudFlare.com');
o.value('dns_clouddns', 'CloudDNS vshosting.cz');
o.value('dns_cloudns', 'ClouDNS.net');
o.value('dns_cn', 'Core-Networks.de');
o.value('dns_conoha', 'ConoHa.io');
o.value('dns_constellix', 'constellix.com');
o.value('dns_cpanel', 'CPanel');
o.value('dns_curanet', 'curanet.dk scannet.dk wannafind.dk dandomain.dk');
o.value('dns_cyon', 'cayon.ch');
o.value('dns_da', 'DirectAdmin Panel');
o.value('dns_ddnss', 'DDNSS.de');
o.value('dns_desec', 'deSEC.io');
o.value('dns_df', 'DynDnsFree.de');
o.value('dns_dgon', 'DigitalOcean.com');
o.value('dns_dnshome', 'dnsHome.de');
o.value('dns_dnsimple', 'DNSimple.com');
o.value('dns_dnsservices', 'dns.services');
o.value('dns_doapi', 'Domain-Offensive do.de');
o.value('dns_domeneshop', 'DomeneShop.no');
o.value('dns_dp', 'DNSPod.cn');
o.value('dns_dpi', 'DNSPod.com');
o.value('dns_dreamhost', 'DreamHost.com');
o.value('dns_duckdns', 'DuckDNS.org');
o.value('dns_durabledns', 'DurableDNS.com');
o.value('dns_dyn', 'Dyn.com');
o.value('dns_dynu', 'Dynu.com');
o.value('dns_dynv6', 'DynV6.com');
o.value('dns_easydns', 'EasyDNS.net');
o.value('dns_edgedns', 'Akamai Edge DNS');
o.value('dns_euserv', 'euserv.eu');
o.value('dns_exoscale', 'Exoscale.com');
o.value('dns_fornex', 'fornex.com');
o.value('dns_freedns', 'FreeDNS.afraid.org');
o.value('dns_gandi_livedns', 'LiveDNS.Gandi.net');
// o.value('dns_gcloud', 'Google Cloud gcloud client');
o.value('dns_gcore', 'Gcore.com');
o.value('dns_gd', 'GoDaddy.com');
o.value('dns_geoscaling', 'Geoscaling.com');
o.value('dns_googledomains', 'Google Domains');
o.value('dns_he', 'he.net');
o.value('dns_hetzner', 'Hetzner.com');
o.value('dns_hexonet', 'Hexonet.net');
o.value('dns_hostingde', 'Hosting.de');
o.value('dns_huaweicloud', 'MyHuaweiCloud.com');
o.value('dns_infoblox', 'Infoblox');
o.value('dns_infomaniak', 'InfoManiak.com');
o.value('dns_internetbs', 'InternetBS.net');
o.value('dns_inwx', 'inwx.de');
o.value('dns_ionos', 'IONOS.com');
o.value('dns_ipv64', 'ipv64.net');
o.value('dns_ispconfig', 'ISPConfig Server');
o.value('dns_jd', 'JDCloud.com');
o.value('dns_joker', 'Joker.com');
o.value('dns_kappernet', 'kapper.net');
o.value('dns_kas', 'kasserver.com');
o.value('dns_kinghost', 'KingHost.net');
o.value('dns_la', 'dns.la');
o.value('dns_leaseweb', 'leaseweb.com');
// o.value('dns_lexicon', 'Lexicon client');
o.value('dns_linode_v4', 'Linode.com');
o.value('dns_loopia', 'Loopia.se');
o.value('dns_lua', 'LuaDNS.com');
// o.value('dns_maradns', 'MaraDNS Server zone file');
o.value('dns_me', 'DNSMadeEasy.com');
// o.value('dns_miab', 'Mail-in-a-Box Server API');
o.value('dns_misaka', 'misaka.io');
o.value('dns_mydevil', 'MyDevil.net');
o.value('dns_mydnsjp', 'MyDNS.JP');
o.value('dns_mythic_beasts', 'Mythic-Beasts.com');
o.value('dns_namecheap', 'NameCheap.com');
o.value('dns_namecom', 'Name.com');
o.value('dns_namesilo', 'NameSilo.com');
o.value('dns_nanelo', 'Nanelo.com');
o.value('dns_nederhost', 'NederHost.nl');
o.value('dns_neodigit', 'Neodigit.net');
o.value('dns_netcup', 'netcup.eu netcup.de');
o.value('dns_netlify', 'Netlify.com');
o.value('dns_nic', 'nic.ru');
o.value('dns_njalla', 'Njalla njal.la');
o.value('dns_nm', 'NameMaster.de');
// o.value('dns_nsd', 'NSD Server zone file');
o.value('dns_nsone', 'NS1 nsone.net');
o.value('dns_nsupdate', 'nsupdate (RFC2136) Server');
o.value('dns_nw', 'Nexcess.net');
o.value('dns_oci', 'Oracle Cloud Infrastructure (OCI)');
o.value('dns_one', 'one.com');
o.value('dns_online', 'online.net');
o.value('dns_openprovider', 'OpenProvider.com');
// o.value('dns_openstack', 'OpenStack Client');
o.value('dns_opnsense', 'OPNsense Bind API');
o.value('dns_ovh', 'OVH ovh.com ovhcloud.com kimsufi.com soyoustart.com');
o.value('dns_pdns', 'PowerDNS Server');
o.value('dns_pleskxml', 'plesk.com XML API');
o.value('dns_pointhq', 'PointDNS pointhq.com');
o.value('dns_porkbun', 'Porkbun.com');
o.value('dns_rackcorp', 'RackCorp.com');
o.value('dns_rackspace', 'RackSpace rackspacecloud.com');
o.value('dns_rage4', 'rage4.com');
o.value('dns_rcode0', 'Rcode0 rcodezero.at');
o.value('dns_regru', 'Reg.ru');
o.value('dns_scaleway', 'Scaleway.com');
o.value('dns_schlundtech', 'Schlundtech.de');
o.value('dns_selectel', 'Selectel.ru');
o.value('dns_selfhost', 'selfhost.de');
o.value('dns_servercow', 'servercow.de');
o.value('dns_simply', 'Simply.com');
o.value('dns_tele3', 'tele3.cz');
o.value('dns_transip', 'transip.nl');
o.value('dns_udr', 'ud-reselling.com');
o.value('dns_ultra', 'UltraDNS.com');
o.value('dns_variomedia', 'variomedia.de');
o.value('dns_veesp', 'veesp.com');
o.value('dns_vercel', 'Vercel.com');
o.value('dns_vscale', 'vscale.io');
o.value('dns_vultr', 'vultr.com');
o.value('dns_websupport', 'websupport.sk');
o.value('dns_world4you', 'World4You.com');
o.value('dns_yandex', 'Yandex DNS dns.yandex.ru');
o.value('dns_yc', 'Yandex Cloud cloud.yandex.net');
o.value('dns_zilore', 'zilore.com');
o.value('dns_zone', 'Zone.ee');
o.value('dns_zonomi', 'Zonomi.com');
o.modalonly = true;
o.onchange = L.bind(_handleCheckService, o, s);
o = s.taboption('challenge_dns', form.DummyValue, '_wiki_url', _('See instructions'), '');
o.rawhtml = true;
o.default = '<a id="wikiInstructionUrl" href="%s" target="_blank" rel="noreferrer">Acme Wiki DNS API</a>'
.format(wikiInstructionUrl);
o.depends('validation_method', 'dns');
o.modalonly = true; o.modalonly = true;
o = s.taboption('challenge', form.DynamicList, "credentials", _("DNS API credentials"), _addDnsProviderField(s, 'dns_1984hosting', 'One984HOSTING_Username', '1984.is Username', '');
_addDnsProviderField(s, 'dns_1984hosting', 'One984HOSTING_Password', '1984.is Password', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_BASE_URL', 'ACMEDNS URL', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_USERNAME', 'ACMEDNS User', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_PASSWORD', 'ACMEDNS Password', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_SUBDOMAIN', 'ACMEDNS Subdomain', '');
_addDnsProviderField(s, 'dns_ali', 'Ali_Key', 'Ali Key', '');
_addDnsProviderField(s, 'dns_ali', 'Ali_Secret', 'Ali Secret', '');
_addDnsProviderField(s, 'dns_aws', 'AWS_ACCESS_KEY_ID', 'AWS access key id', '');
_addDnsProviderField(s, 'dns_aws', 'AWS_SECRET_ACCESS_KEY', 'AWS secret access key', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_SUBSCRIPTIONID', 'Azure Subscription ID', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_TENANTID', 'Azure Tenant ID', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_APPID', 'Azure App ID', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_CLIENTSECRET', 'Azure Client Secret', '');
_addDnsProviderField(s, 'dns_bunny', 'BUNNY_API_KEY', 'Bunny API Key', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Key', 'CF Key', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Email', 'CF Email', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Token', 'CF Token', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Account_ID', 'CF Account ID', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Zone_ID', 'CF Zone ID', '');
_addDnsProviderField(s, 'dns_ddnss', 'DDNSS_Token', 'DDNSS.de Token', '');
_addDnsProviderField(s, 'dns_desec', 'DEDYN_TOKEN', 'deSEC.io Token', '');
_addDnsProviderField(s, 'dns_duckdns', 'DuckDNS_Token', 'DuckDNS Token',
_('Open <a href="https://www.duckdns.org/">DuckDNS</a> and copy a token here')
);
_addDnsProviderField(s, 'dns_dynv6', 'DYNV6_TOKEN', 'DynV6 Token', '');
_addDnsProviderField(s, 'dns_dnsimple', 'DNSimple_OAUTH_TOKEN', 'DNSimple OAuth TOKEN', '');
_addDnsProviderField(s, 'dns_dgon', 'DO_API_KEY', 'Digital Ocean API Key', '');
_addDnsProviderField(s, 'dns_dreamhost', 'DH_API_KEY', 'DreamHost.com API Key', '');
_addDnsProviderField(s, 'dns_df', 'DF_user', 'DynDnsFree.de Username', '');
_addDnsProviderField(s, 'dns_df', 'DF_password', 'DynDnsFree.de Password', '');
_addDnsProviderField(s, 'dns_gandi_livedns', 'GANDI_LIVEDNS_KEY', 'Gandi LiveDNS Key', '');
_addDnsProviderField(s, 'dns_gcore', 'GCORE_Key', 'GCore Key', '');
_addDnsProviderField(s, 'dns_gd', 'GD_Key', 'GoDaddy.com Key', '');
_addDnsProviderField(s, 'dns_gd', 'GD_Secret', 'GoDaddy.com Secret', '');
_addDnsProviderField(s, 'dns_geoscaling', 'GEOSCALING_Username', 'Geoscaling.com Username',
_('This is usually NOT an email address')
);
_addDnsProviderField(s, 'dns_geoscaling', 'GEOSCALING_Password', 'Geoscaling.com Password', '');
_addDnsProviderField(s, 'dns_googledomains', 'GOOGLEDOMAINS_ACCESS_TOKEN', 'Google Domains Access Token', '');
_addDnsProviderField(s, 'dns_googledomains', 'GOOGLEDOMAINS_ZONE', 'Google Domains Zone', '');
_addDnsProviderField(s, 'dns_he', 'HE_Username', 'dns.he.net Username', '');
_addDnsProviderField(s, 'dns_he', 'HE_Password', 'dns.he.net Password', '');
_addDnsProviderField(s, 'dns_hetzner', 'HETZNER_Token', 'Hetzner Token', '');
_addDnsProviderField(s, 'dns_he', 'dns_hexonet', 'Hexonet.net Login', 'username!roleId');
_addDnsProviderField(s, 'dns_he', 'dns_hexonet', 'Hexonet.net Password', '');
_addDnsProviderField(s, 'dns_huaweicloud', 'HUAWEICLOUD_Username', 'MyHuaweiCloud.com Username', '');
_addDnsProviderField(s, 'dns_huaweicloud', 'HUAWEICLOUD_Password', 'MyHuaweiCloud.com Password', '');
_addDnsProviderField(s, 'dns_huaweicloud', 'HUAWEICLOUD_DomainName', 'MyHuaweiCloud.com Domain Name', '');
_addDnsProviderField(s, 'dns_infomaniak', 'INFOMANIAK_API_TOKEN', 'InfoManiak Token', '');
_addDnsProviderField(s, 'dns_ipv64', 'IPv64_Token', 'ipv64.net Token', '');
_addDnsProviderField(s, 'dns_jd', 'JD_ACCESS_KEY_ID', 'JDCloud.com Access Key ID', '');
_addDnsProviderField(s, 'dns_jd', 'JD_ACCESS_KEY_SECRET', 'JDCloud.com Access Key Secret', '');
_addDnsProviderField(s, 'dns_jd', 'JD_REGION', 'JDCloud.com Region', 'cn-north-1');
_addDnsProviderField(s, 'dns_joker', 'JOKER_USERNAME', 'Joker.com User', '');
_addDnsProviderField(s, 'dns_joker', 'JOKER_PASSWORD', 'Joker.com Password', '');
_addDnsProviderField(s, 'dns_freedns', 'FREEDNS_User', 'FreeDNS User', '');
_addDnsProviderField(s, 'dns_freedns', 'FREEDNS_Password', 'FreeDNS Password', '');
_addDnsProviderField(s, 'dns_la', 'LA_Id', 'dns.la Id', '');
_addDnsProviderField(s, 'dns_la', 'LA_Key', 'dns.la Key', '');
_addDnsProviderField(s, 'dns_linodev4', 'LINODE_V4_API_KEY', 'Linode API Key', '');
_addDnsProviderField(s, 'dns_loopia', 'LOOPIA_User', 'Loopia User', '');
_addDnsProviderField(s, 'dns_loopia', 'LOOPIA_Password', 'Loopia Password', '');
_addDnsProviderField(s, 'dns_lua', 'LUA_Email', 'luadns.com email', '');
_addDnsProviderField(s, 'dns_lua', 'LUA_Key', 'luadns.com Key', '');
_addDnsProviderField(s, 'dns_mydnsjp', 'MYDNSJP_MasterID', 'MyDNS.jp MasterID', '');
_addDnsProviderField(s, 'dns_mydnsjp', 'MYDNSJP_Password', 'MyDNS.jp Password', '');
_addDnsProviderField(s, 'dns_me', 'ME_Key', 'DNSMadeEasy Key', '');
_addDnsProviderField(s, 'dns_me', 'ME_Secret', 'DNSMadeEasy Secret', '');
_addDnsProviderField(s, 'dns_namecom', 'Namecom_Username', 'Name.com Username', '');
_addDnsProviderField(s, 'dns_namecom', 'Namecom_Token', 'Name.com Token', '');
_addDnsProviderField(s, 'dns_namecheap', 'NAMECHEAP_API_KEY', 'NameCheap API Key', '');
_addDnsProviderField(s, 'dns_namecheap', 'NAMECHEAP_USERNAME', 'NameCheap User', '');
_addDnsProviderField(s, 'dns_namecheap', 'NAMECHEAP_SOURCEIP', 'NameCheap Source IP', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_ClientID', 'Nic.ru ClientID', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_ClientSecret', 'Nic.ru ClientSecret', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_Username', 'Nic.ru Username', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_Password', 'Nic.ru Password', '');
_addDnsProviderField(s, 'dns_netlify', 'NETLIFY_ACCESS_TOKEN', 'Netlify Access Token', '');
_addDnsProviderField(s, 'dns_nsone', 'NS1_Key', 'nsone.net Key', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_SERVER', 'nsupdate server address', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_SERVER_PORT', 'nsupdate server port', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_KEY', 'nsupdate key file path', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_ZONE', 'nsupdate zone', '');
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_TENANCY', 'OCI Tenancy',
_('OCID of tenancy that contains the target DNS zone')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_USER', 'OCI User',
_('OCID of user with permission to add/remove records from zones')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_REGION', 'OCI Region',
_('Should point to the tenancy home region')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_KEY_FILE', 'OCI Key file',
_('Path to private API signing key file in PEM format')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_KEY', 'OCI Key',
_('The private API signing key in PEM format')
);
_addDnsProviderField(s, 'dns_ovh', 'OVH_AK', 'OVH Application Key', '');
_addDnsProviderField(s, 'dns_ovh', 'OVH_AS', 'OVH Application Secret', '');
_addDnsProviderField(s, 'dns_ovh', 'OVH_CK', 'OVH Consumer Key', '');
_addDnsProviderField(s, 'dns_ovh', 'OVH_END_POINT', 'OVH Region/Endpoint',
'ovh-eu, ovh-us, ovh-ca, kimsufi-eu, kimsufi-ca, soyoustart-eu, soyoustart-ca'
);
_addDnsProviderField(s, 'dns_pdns', 'PDNS_Url', 'PDNS API URL', '');
_addDnsProviderField(s, 'dns_pdns', 'PDNS_ServerId', 'PDNS Server ID', '');
_addDnsProviderField(s, 'dns_pdns', 'PDNS_Token', 'PDNS Token', '');
_addDnsProviderField(s, 'dns_pdns', 'PDNS_Ttl', 'PDNS Default TTL', '60');
_addDnsProviderField(s, 'dns_porkbun', 'PORKBUN_API_KEY', 'Porkbun API Key', '');
_addDnsProviderField(s, 'dns_porkbun', 'PORKBUN_SECRET_API_KEY', 'Porkbun API Secret', '');
_addDnsProviderField(s, 'dns_rackspace', 'RACKSPACE_Apikey', 'RackSpace API Key', '');
_addDnsProviderField(s, 'dns_rackspace', 'RACKSPACE_Username', 'Porkbun Username', '');
_addDnsProviderField(s, 'dns_regru', 'REGRU_API_Username', 'reg.ru Username', '');
_addDnsProviderField(s, 'dns_regru', 'REGRU_API_Password', 'reg.ru Password', '');
_addDnsProviderField(s, 'dns_selectel', 'SL_Key', 'Selectel API Key', '');
_addDnsProviderField(s, 'dns_selfhost', 'SELFHOSTDNS_USERNAME', 'SelfHost.de Username', '');
_addDnsProviderField(s, 'dns_selfhost', 'SELFHOSTDNS_PASSWORD', 'SelfHost.de Password', '');
_addDnsProviderField(s, 'dns_selfhost', 'SELFHOSTDNS_MAP', 'SelfHost.de Domains map',
_('E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</code>')
);
_addDnsProviderField(s, 'dns_simply', 'SIMPLY_AccountName', 'Simply.com account name', '');
_addDnsProviderField(s, 'dns_simply', 'SIMPLY_ApiKey', 'Simply.com API Key', '');
_addDnsProviderField(s, 'dns_tele3', 'TELE3_Key', 'tele3.cz API Key', '');
_addDnsProviderField(s, 'dns_tele3', 'TELE3_Secret', 'tele3.cz API Secret', '');
_addDnsProviderField(s, 'dns_vultr', 'VULTR_API_KEY', 'Vultr API Secret', '');
_addDnsProviderField(s, 'dns_vscale', 'VSCALE_API_KEY', 'vscale.io API Key', '');
_addDnsProviderField(s, 'dns_yandex', 'PDD_Token', 'Yandex DNS API Token', '');
_addDnsProviderField(s, 'dns_yandex', 'PDD_Token', 'Yandex DNS API Token', '');
_addDnsProviderField(s, 'dns_yc', 'YC_Zone_ID', 'Yandex Cloud: DNS Zone ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_Folder_ID', 'Yandex Cloud: YC Folder ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_ID', 'Yandex Cloud: Service Account ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_Key_ID', 'Yandex Cloud: Service Account IAM Key ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_Key_File_Path', 'Yandex Cloud: Path to private key', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_Key_File_PEM_b64', 'Yandex Cloud: PEM of private key',
_('Base64 content of private key. Use instead of YC_SA_Key_File_Path')
);
_addDnsProviderField(s, 'dns_zilore', 'Zilore_Key', 'Zilore API Key', '');
_addDnsProviderField(s, 'dns_zone', 'ZONE_Username', 'Zone.ee Username', '');
_addDnsProviderField(s, 'dns_zone', 'ZONE_Key', 'Zone.ee API Key', '');
_addDnsProviderField(s, 'dns_zonomi', 'ZM_Key', 'Zonomi.com API Key', '');
o = s.taboption('challenge_dns', form.DynamicList, 'credentials', _('DNS API credentials'),
_("The credentials for the DNS API mode selected above. " + _("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. " + "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.")) "Add multiple entries here in KEY=VAL shell variable format to supply multiple credential variables."))
@ -121,20 +449,62 @@ return view.extend({
o.depends("validation_method", "dns"); o.depends("validation_method", "dns");
o.modalonly = true; o.modalonly = true;
o = s.taboption('challenge', form.Value, "calias", _("Challenge Alias"), o = s.taboption('challenge_dns', form.Value, 'calias', _('Challenge Alias'),
_("The challenge alias to use for ALL domains. " + _("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. " + "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.")); "LUCI only supports one challenge alias per certificate."));
o.depends("validation_method", "dns"); o.depends("validation_method", "dns");
o.modalonly = true; o.modalonly = true;
o = s.taboption('challenge', form.Value, "dalias", _("Domain Alias"), o = s.taboption('challenge_dns', form.Value, 'dalias', _('Domain Alias'),
_("The domain alias to use for ALL domains. " + _("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. " + "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.")); "LUCI only supports one challenge domain per certificate."));
o.depends("validation_method", "dns"); o.depends("validation_method", "dns");
o.modalonly = true; o.modalonly = true;
o = s.taboption('advanced', 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.modalonly = true;
o = s.taboption('advanced', form.ListValue, 'key_type', _('Key type'),
_('Key size (and type) for the generated certificate.')
);
o.value('rsa2048', _('RSA 2048 bits'));
o.value('rsa3072', _('RSA 3072 bits'));
o.value('rsa4096', _('RSA 4096 bits'));
o.value('ec256', _('ECC 256 bits'));
o.value('ec384', _('ECC 384 bits'));
o.rmempty = false;
o.optional = true;
o.modalonly = true;
o.cfgvalue = function(section_id, set_value) {
var keylength = uci.get('acme', section_id, 'keylength');
if (keylength) {
// migrate the old keylength to a new keytype
switch (keylength) {
case '2048': return 'rsa2048';
case '3072': return 'rsa3072';
case '4096': return 'rsa4096';
case 'ec-256': return 'ec256';
case 'ec-384': return 'ec384';
default: return ''; // bad value
}
}
return set_value;
};
o.write = function(section_id, value) {
// remove old keylength
uci.unset('acme', section_id, 'keylength');
uci.set('acme', section_id, 'key_type', value);
};
o = s.taboption('advanced', form.Flag, "use_acme_server", o = s.taboption('advanced', form.Flag, "use_acme_server",
_("Custom ACME CA"), _("Use a custom CA instead of Let's Encrypt.")); _("Custom ACME CA"), _("Use a custom CA instead of Let's Encrypt."));
o.depends("use_staging", "0"); o.depends("use_staging", "0");
@ -152,8 +522,85 @@ return view.extend({
o.optional = true; o.optional = true;
o.placeholder = 90; o.placeholder = 90;
o.datatype = 'uinteger'; o.datatype = 'uinteger';
o.modalonly = true;
return m.render()
s = m.section(form.GridSection, '_certificates');
s.render = L.bind(_renderCerts, this, certs);
return m.render();
} }
}) })
function _addDnsProviderField(s, provider, env, title, desc) {
let o = s.taboption('challenge_dns', form.Value, '_' + env, _(title),
_(desc));
o.depends('dns', provider);
o.modalonly = true;
o.cfgvalue = function (section_id, stored_val) {
var creds = this.map.data.get(this.map.config, section_id, 'credentials');
return _extractParamValue(creds, env);
};
o.write = function (section_id, value) {
this.map.data.set('acme', section_id, 'credentials', [env + '="' + value + '"']);
};
return o;
}
/**
* @param {string[]} paramsKeyVals
* @param {string} paramName
* @returns {string}
*/
function _extractParamValue(paramsKeyVals, paramName) {
if (!paramsKeyVals) {
return '';
}
for (let i = 0; i < paramsKeyVals.length; i++) {
var paramKeyVal = paramsKeyVals[i];
var parts = paramKeyVal.split('=');
if (parts.lenght < 2) {
continue;
}
var name = parts[0];
var val = parts[1];
if (name == paramName) {
// unquote
return val.substring(0, val.length-1).substring(1);
}
}
return '';
}
function _handleCheckService(c, event, curVal, newVal) {
document.getElementById('wikiInstructionUrl').href = 'https://github.com/acmesh-official/acme.sh/wiki/dnsapi#' + newVal;
}
function _renderCerts(certs) {
var table = E('table', {'class': 'table cbi-section-table', 'id': 'certificates_table'}, [
E('tr', {'class': 'tr table-titles'}, [
E('th', {'class': 'th'}, _('Main Domain')),
E('th', {'class': 'th'}, _('Private Key')),
E('th', {'class': 'th'}, _('Public Certificate')),
E('th', {'class': 'th'}, _('Issued on')),
])
]);
var rows = certs.map(function (cert) {
let domain = cert.name.substring(0, cert.name.length - 4);
let issueDate = new Date(cert.mtime * 1000).toLocaleDateString();
return [
domain,
'/etc/ssl/acme/' + domain + '.key',
'/etc/ssl/acme/' + domain + '.fullchain.crt',
issueDate,
];
});
cbi_update_table(table, rows);
return E('div', {'class': 'cbi-section cbi-tblsection'}, [
E('h3', _('Certificates')), table]);
}

View file

@ -11,75 +11,88 @@ 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.5.1\n" "X-Generator: Weblate 4.5.1\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr " شهادات بيئة إدارة الشهادات التلقائية" msgstr " شهادات بيئة إدارة الشهادات التلقائية"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "شهادات بيئة إدارة الشهادات التلقائية"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "عنوان URL لخادم ACME" msgstr "عنوان URL لخادم ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "حساب البريد الإلكتروني" msgstr "حساب البريد الإلكتروني"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "إعدادات متقدمة" msgstr "إعدادات متقدمة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "حيث يتم حفظ شهادات وملفات الدولة الأخرى."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "تكوين الشهادة" msgstr "تكوين الشهادة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "الاسم المستعار لاعتراض" msgstr "الاسم المستعار لاعتراض"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "التحقق من صحة التحدي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "مخصص ACME CA" msgstr "مخصص ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "عنوان URL مخصص لدليل خادم ACME." msgstr "عنوان URL مخصص لدليل خادم ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "نظام أسماء النطاقات" msgstr "نظام أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "واجهة برمجة تطبيقات لنظام أسماء النطاقات" msgstr "واجهة برمجة تطبيقات لنظام أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "مؤهلات واجهة برمجة تطبيقات لنظام أسماء النطاقات" msgstr "مؤهلات واجهة برمجة تطبيقات لنظام أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS التحقق من صحة التحدي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "الأيام حتى التجديد" msgstr "الأيام حتى التجديد"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "الاسم المستعار للنطاق" msgstr "الاسم المستعار للنطاق"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "أسماء النطاقات" msgstr "أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -89,31 +102,37 @@ msgstr ""
"وستكون الأسماء اللاحقة أسماء بديلة. لاحظ أن جميع أسماء النطاقات يجب أن تشير " "وستكون الأسماء اللاحقة أسماء بديلة. لاحظ أن جميع أسماء النطاقات يجب أن تشير "
"إلى جهاز التوجيه في نظام أسماء النطاقات العام." "إلى جهاز التوجيه في نظام أسماء النطاقات العام."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 بت" msgstr "ECC 256 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 بت" msgstr "ECC 384 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "عنوان البريد الإلكتروني لربطه بمفتاح الحساب." msgstr "عنوان البريد الإلكتروني لربطه بمفتاح الحساب."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "مكن السجل للتصحيح البرمجي" msgstr "مكن السجل للتصحيح البرمجي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "مفعل" msgstr "مفعل"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "الاعدادات العامة" msgstr "الاعدادات العامة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -125,31 +144,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "حجم المفتاح" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "حجم المفتاح (والنوع) للشهادة التي تم إنشاؤها." msgstr "حجم المفتاح (والنوع) للشهادة التي تم إنشاؤها."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "حجم المفتاح"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 بت" msgstr "RSA 2048 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 بت" msgstr "RSA 3072 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 بت" msgstr "RSA 4096 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "مستقل" msgstr "مستقل"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"Webroot خادم ويب موجودًا لإصدار شهادة. سيسمح لك وضع DNS باستخدام DNS API " "Webroot خادم ويب موجودًا لإصدار شهادة. سيسمح لك وضع DNS باستخدام DNS API "
"لمزود DNS الخاص بك لإصدار شهادة." "لمزود DNS الخاص بك لإصدار شهادة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل " "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل "
"هذه العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة." "هذه العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"الاعتماد التي تتطلبها كل واجهة برمجة تطبيقات. أضف إدخالات متعددة هنا في " "الاعتماد التي تتطلبها كل واجهة برمجة تطبيقات. أضف إدخالات متعددة هنا في "
"تنسيق متغير shell \"KEY = VAL\" لتوفير متغيرات اعتماد متعددة." "تنسيق متغير shell \"KEY = VAL\" لتوفير متغيرات اعتماد متعددة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"acmesh-official/acme.sh/wiki/DNS-alias-mode عن تفاصيل هذه العملية. لوسي يدعم " "acmesh-official/acme.sh/wiki/DNS-alias-mode عن تفاصيل هذه العملية. لوسي يدعم "
"فقط واحد التحدي المجال لكل شهادة." "فقط واحد التحدي المجال لكل شهادة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -207,7 +277,11 @@ msgstr ""
"بروتوكول الإنترنت العام لجهاز التوجيه. بمجرد التكوين ، يمكن أن يستغرق إصدار " "بروتوكول الإنترنت العام لجهاز التوجيه. بمجرد التكوين ، يمكن أن يستغرق إصدار "
"الشهادات بعض الوقت. يمكنك التحقق من سجلات التقدم وأية أخطاء." "الشهادات بعض الوقت. يمكنك التحقق من سجلات التقدم وأية أخطاء."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -222,54 +296,31 @@ msgstr ""
"إلى IP الخاص بالموجه. وضع DNS هو أيضًا الوضع الوحيد الذي يدعم شهادات أحرف " "إلى IP الخاص بالموجه. وضع DNS هو أيضًا الوضع الوحيد الذي يدعم شهادات أحرف "
"البدل. يتطلب استخدام هذا الوضع تثبيت حزمة acme-dnsapi." "البدل. يتطلب استخدام هذا الوضع تثبيت حزمة acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"قم بتحديث nginx config بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة "
"واحدة). يجب أن يدعم nginx SSL ، إذا لم يكن كذلك ، فلن يبدأ لأنه يحتاج إلى "
"تجميع مع دعم SSL لاستخدام خيارات الشهادة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"قم بتحديث تكوين uhttpd بهذه الشهادة بمجرد إصدارها (حدد هذا فقط لشهادة "
"واحدة). كما يتوفر luci-app-uhttpd لتكوين uhttpd من واجهة LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "استخدم مرجع مصدق (CA) مخصصًا بدلاً من Let's Encrypt." msgstr "استخدم مرجع مصدق (CA) مخصصًا بدلاً من Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "استخدم ل nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "استخدم ل uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "طريقة التحقق من الصحة" msgstr "طريقة التحقق من الصحة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot التحقق من صحة التحدي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "دليل Webroot" msgstr "دليل Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -278,8 +329,5 @@ msgstr ""
"الدليل الجذر لخادم الويب. اضبط هذا على جذر وثيقة خادم الويب لتشغيل Acme في " "الدليل الجذر لخادم الويب. اضبط هذا على جذر وثيقة خادم الويب لتشغيل Acme في "
"وضع webroot. يجب الوصول إلى خادم الويب من الإنترنت على المنفذ 80." "وضع webroot. يجب الوصول إلى خادم الويب من الإنترنت على المنفذ 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "دليل الدولة" #~ msgstr "شهادات بيئة إدارة الشهادات التلقائية"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "حيث يتم حفظ شهادات وملفات الدولة الأخرى."

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n" "X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME сертификати" msgstr "ACME сертификати"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME сертификати"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL на ACME сървър" msgstr "URL на ACME сървър"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Имейл на акаунта" msgstr "Имейл на акаунта"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Разширени настройки" msgstr "Разширени настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Директория със сертификати"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Конфигурация на сертификат" msgstr "Конфигурация на сертификат"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Проверка на предизвикателство"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Персонализиран ACME CA" msgstr "Персонализиран ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API креденшъли" msgstr "DNS API креденшъли"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Проверка на предизвикателство"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Дни до подновяване" msgstr "Дни до подновяване"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Имена на домейни" msgstr "Имена на домейни"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Разрешен" msgstr "Разрешен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Основни настройки" msgstr "Основни настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,55 +267,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Проверка на предизвикателство"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#, fuzzy #~ msgid "ACME certs"
#~ msgid "State directory" #~ msgstr "ACME сертификати"
#~ msgstr "Директория на състоянието"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n" "X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME সার্টিফিকেট" msgstr "ACME সার্টিফিকেট"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME সার্টিফিকেট"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME সার্ভার URL" msgstr "ACME সার্ভার URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "অ্যাকাউন্ট ইমেইল" msgstr "অ্যাকাউন্ট ইমেইল"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "উন্নত সেটিংস" msgstr "উন্নত সেটিংস"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "সার্টিফিকেট কনফিগারেশন" msgstr "সার্টিফিকেট কনফিগারেশন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "চ্যালেঞ্জ উপনাম" msgstr "চ্যালেঞ্জ উপনাম"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "চ্যালেঞ্জ বৈধতা"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "কাস্টম ACME CA" msgstr "কাস্টম ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "কাস্টম ACME সার্ভার ডিরেক্টরি URL।" msgstr "কাস্টম ACME সার্ভার ডিরেক্টরি URL।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "ডিএনএস" msgstr "ডিএনএস"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API ক্রিডেনশিয়াল" msgstr "DNS API ক্রিডেনশিয়াল"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS চ্যালেঞ্জ বৈধতা"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "নবায়ন পর্যন্ত দিন" msgstr "নবায়ন পর্যন্ত দিন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "ডোমেইন উপনাম" msgstr "ডোমেইন উপনাম"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "ডোমেইন উপনাম" msgstr "ডোমেইন উপনাম"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"হবে বিকল্প নাম। মনে রাখবেন যে সমস্ত ডোমেইন নাম অবশ্যই বৈশ্বিক DNS- এর রাউটারে " "হবে বিকল্প নাম। মনে রাখবেন যে সমস্ত ডোমেইন নাম অবশ্যই বৈশ্বিক DNS- এর রাউটারে "
"নির্দেশ করতে হবে।" "নির্দেশ করতে হবে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 বিট" msgstr "ECC 256 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 বিট" msgstr "ECC 384 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "অ্যাকাউন্ট কী এর সাথে যুক্ত করার জন্য ইমেইল ঠিকানা।" msgstr "অ্যাকাউন্ট কী এর সাথে যুক্ত করার জন্য ইমেইল ঠিকানা।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "ডিবাগ লগিং সক্রিয় করুন" msgstr "ডিবাগ লগিং সক্রিয় করুন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "সক্রিয়" msgstr "সক্রিয়"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "সাধারণ সেটিংস" msgstr "সাধারণ সেটিংস"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "কী সাইজ" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "সার্টিফিকেট উৎপন্ন করার জন্য কী সাইজ (এবং প্রকার)।" msgstr "সার্টিফিকেট উৎপন্ন করার জন্য কী সাইজ (এবং প্রকার)।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "কী সাইজ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 বিট" msgstr "RSA 2048 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 বিট" msgstr "RSA 3072 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 বিট" msgstr "RSA 4096 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "স্বতন্ত্র" msgstr "স্বতন্ত্র"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"করবে। ডিএনএস মোড আপনার ডিএনএস প্রদানকারীর ডিএনএস এপিআই ব্যবহার করে সার্টিফিকেট " "করবে। ডিএনএস মোড আপনার ডিএনএস প্রদানকারীর ডিএনএস এপিআই ব্যবহার করে সার্টিফিকেট "
"ইস্যু করবে।" "ইস্যু করবে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode দেখুন। LUCI শুধুমাত্র " "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode দেখুন। LUCI শুধুমাত্র "
"একটি সার্টিফিকেট চ্যালেঞ্জ উপনাম সমর্থন করে।" "একটি সার্টিফিকেট চ্যালেঞ্জ উপনাম সমর্থন করে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"একাধিক ক্রিডেনশিয়াল ভেরিয়েবল সরবরাহ করতে এখানে KEY = VAL শেল ভেরিয়েবল ফরম্যাটে " "একাধিক ক্রিডেনশিয়াল ভেরিয়েবল সরবরাহ করতে এখানে KEY = VAL শেল ভেরিয়েবল ফরম্যাটে "
"একাধিক এন্ট্রি যুক্ত করুন।" "একাধিক এন্ট্রি যুক্ত করুন।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode। LUCI শুধুমাত্র " "https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode। LUCI শুধুমাত্র "
"একটি সার্টিফিকেট চ্যালেঞ্জ ডোমেইন সমর্থন করে।" "একটি সার্টিফিকেট চ্যালেঞ্জ ডোমেইন সমর্থন করে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -207,7 +277,11 @@ msgstr ""
"ঠিকানায় নির্দেশ করার জন্য কনফিগার করা আবশ্যক। একবার কনফিগার হয়ে গেলে, " "ঠিকানায় নির্দেশ করার জন্য কনফিগার করা আবশ্যক। একবার কনফিগার হয়ে গেলে, "
"সার্টিফিকেট ইস্যু করতে কিছু সময় লাগতে পারে। অগ্রগতি এবং কোন ত্রুটির জন্য লগ চেক করুন।" "সার্টিফিকেট ইস্যু করতে কিছু সময় লাগতে পারে। অগ্রগতি এবং কোন ত্রুটির জন্য লগ চেক করুন।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -217,54 +291,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot চ্যালেঞ্জ বৈধতা"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "স্টেট ডিরেক্টরি" #~ msgstr "ACME সার্টিফিকেট"

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5.2-dev\n" "X-Generator: Weblate 4.5.2-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configuració avançada" msgstr "Configuració avançada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Activat" msgstr "Activat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Paràmetres generals" msgstr "Paràmetres generals"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,49 +267,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,75 +10,88 @@ 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.16.2-dev\n" "X-Generator: Weblate 4.16.2-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certifikáty ACME" msgstr "Certifikáty ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certifikáty ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "Globální konfigurace ACME" msgstr "Globální konfigurace ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL serveru ACME" msgstr "URL serveru ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "E-mail k účtu" msgstr "E-mail k účtu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Pokročilá nastavení" msgstr "Pokročilá nastavení"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Kde jsou uchovávány certifikáty a další stavové soubory."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Konfigurace certifikátu" msgstr "Konfigurace certifikátu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Aliasy" msgstr "Aliasy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validace"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Vlastní ACME CA" msgstr "Vlastní ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Adresář URL vlastního serveru ACME." msgstr "Adresář URL vlastního serveru ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API pověření" msgstr "DNS API pověření"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validace"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Dny do obnovení" msgstr "Dny do obnovení"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias domény" msgstr "Alias domény"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Doménové názvy" msgstr "Doménové názvy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"jméno subjektu, další jsou alternativní názvy. Mějte na paměti, že všechny " "jméno subjektu, další jsou alternativní názvy. Mějte na paměti, že všechny "
"doménové názvy musejí v globálním DNS ukazovat na router." "doménové názvy musejí v globálním DNS ukazovat na router."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bitů" msgstr "ECC 256 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bitů" msgstr "ECC 384 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "E-mailová adresa pro přiřazení ke klíči účtu." msgstr "E-mailová adresa pro přiřazení ke klíči účtu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Povolit ladicí protokolování" msgstr "Povolit ladicí protokolování"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Zapnuto" msgstr "Zapnuto"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Obecná nastavení" msgstr "Obecná nastavení"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Udělit přístup UCI pro luci-app-acme" msgstr "Udělit přístup UCI pro luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Velikost klíče" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Velikost (a typ) klíče pro generovaný certifikát." msgstr "Velikost (a typ) klíče pro generovaný certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Velikost klíče"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bitů" msgstr "RSA 2048 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bitů" msgstr "RSA 3072 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bitů" msgstr "RSA 4096 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Samostatný" msgstr "Samostatný"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -159,7 +225,7 @@ msgstr ""
"acme.sh. Režim webroot bude používat existující webový server. DNS režim " "acme.sh. Režim webroot bude používat existující webový server. DNS režim "
"bude umožňovat použití DNS API vašeho poskytovatele DNS." "bude umožňovat použití DNS API vašeho poskytovatele DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,20 +236,20 @@ msgstr ""
"DNS-alias-mode. Rozhraní LUCI podporuje pouze jeden alias výzvy na " "DNS-alias-mode. Rozhraní LUCI podporuje pouze jeden alias výzvy na "
"certifikát." "certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
"by each API. Add multiple entries here in KEY=VAL shell variable format to " "by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
"Přihlašovací údaje pro zvolený režim DNS API. Podívejte se na adresu " "Přihlašovací údaje pro zvolený režim DNS API. Podívejte se na adresu https://"
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi, jaký formát " "github.com/acmesh-official/acme.sh/wiki/dnsapi, jaký formát přihlašovacích "
"přihlašovacích údajů je požadován pro každé API. Přidejte zde více položek v " "údajů je požadován pro každé API. Přidejte zde více položek v formátu "
"formátu proměnné shellu KLÍČ=HODNOTA, abyste mohli poskytnout více " "proměnné shellu KLÍČ=HODNOTA, abyste mohli poskytnout více přihlašovacích "
"přihlašovacích proměnných." "proměnných."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -193,7 +259,11 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode pro více informací o tomto procesu. " "official/acme.sh/wiki/DNS-alias-mode pro více informací o tomto procesu. "
"LUCI podporuje jen jednu challenge doménu pro každý certifikát." "LUCI podporuje jen jednu challenge doménu pro každý certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -210,7 +280,11 @@ msgstr ""
"bude chvíli trvat. Kontrolujte protokoly, kde uvidíte průběh a jakékoli " "bude chvíli trvat. Kontrolujte protokoly, kde uvidíte průběh a jakékoli "
"chyby." "chyby."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -226,56 +300,31 @@ msgstr ""
"také jediným režimem, který podporuje vydávání wildcard certifikátů. Použití " "také jediným režimem, který podporuje vydávání wildcard certifikátů. Použití "
"tohoto režimu vyžaduje instalaci balíčku acme-dnsapi." "tohoto režimu vyžaduje instalaci balíčku acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Aktualizovat konfiguraci nginx s tímto certifikátem po jeho vydání (zvolte "
"pouze pro jeden certifikát). Nginx musí podporovat SSL, pokud ne, nebude "
"spuštěn, protože musí být kompilován s podporou SSL pro použití "
"certifikačních možností"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Aktualizovat konfiguraci uhttpd s tímto certifikátem po jeho vydání (zvolte "
"pouze pro jeden certifikát). Je také k dispozici luci-app-uhttpd pro "
"konfiguraci uhttpd z rozhraní LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Namísto Let's Encrypt použít vlastní CA." msgstr "Namísto Let's Encrypt použít vlastní CA."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Použít pro nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Použít pro uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Použijte pracovní server" msgstr "Použijte pracovní server"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Metoda ověření" msgstr "Metoda ověření"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validace"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Adresář Webroot" msgstr "Adresář Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -285,8 +334,5 @@ msgstr ""
"nastavte tento adresář jako kořen webu ve webovém serveru. Server musí být " "nastavte tento adresář jako kořen webu ve webovém serveru. Server musí být "
"přístupný z Internetu na portu 80." "přístupný z Internetu na portu 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Stavový adresář" #~ msgstr "Certifikáty ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Kde jsou uchovávány certifikáty a další stavové soubory."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18-dev\n" "X-Generator: Weblate 4.18-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME-certifikater" msgstr "ACME-certifikater"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME certs"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "ACME global konfiguration" msgstr "ACME global konfiguration"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL til ACME-serveren" msgstr "URL til ACME-serveren"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Konto e-mail" msgstr "Konto e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Avancerede indstillinger" msgstr "Avancerede indstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Hvor certifikater og andre stat filer opbevares."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Certifikatkonfiguration" msgstr "Certifikatkonfiguration"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Udfordr Alias" msgstr "Udfordr Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Udfordringsvalidering"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Brugerdefineret ACME CA" msgstr "Brugerdefineret ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Brugerdefineret URL til ACME-serverens mappe." msgstr "Brugerdefineret URL til ACME-serverens mappe."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS-API legitimationsoplysninger" msgstr "DNS-API legitimationsoplysninger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Udfordringsvalidering"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Antal dage indtil fornyelse" msgstr "Antal dage indtil fornyelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Domænealias" msgstr "Domænealias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Domænenavne" msgstr "Domænenavne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"emnet, de efterfølgende navne vil være alt-navne. Bemærk, at alle " "emnet, de efterfølgende navne vil være alt-navne. Bemærk, at alle "
"domænenavne skal pege på routeren i den globale DNS." "domænenavne skal pege på routeren i den globale DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bits" msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bits" msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "E-mail-adresse, der skal knyttes til kontonøglen." msgstr "E-mail-adresse, der skal knyttes til kontonøglen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Aktivér debug logning" msgstr "Aktivér debug logning"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Aktiver" msgstr "Aktiver"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Generelle indstillinger" msgstr "Generelle indstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Giv UCI-adgang til luci-app-acme" msgstr "Giv UCI-adgang til luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Nøglestørrelse" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Nøglestørrelse (og -type) for det genererede certifikat." msgstr "Nøglestørrelse (og -type) for det genererede certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Nøglestørrelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bit" msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bits" msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bits" msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Standalone" msgstr "Standalone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"til at udstede et certifikat. DNS-tilstand giver dig mulighed for at bruge " "til at udstede et certifikat. DNS-tilstand giver dig mulighed for at bruge "
"DNS API'et hos din DNS-udbyder til at udstede et certifikat." "DNS API'et hos din DNS-udbyder til at udstede et certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -171,7 +237,7 @@ msgstr ""
"oplysninger om denne proces. LUCI understøtter kun ét udfordringsalias pr. " "oplysninger om denne proces. LUCI understøtter kun ét udfordringsalias pr. "
"certifikat." "certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -183,7 +249,7 @@ msgstr ""
"legitimationsoplysninger, der kræves af hvert API. Tilføj flere poster her i " "legitimationsoplysninger, der kræves af hvert API. Tilføj flere poster her i "
"formatet KEY=VAL shellvariabel for at angive flere legitimationsvariabler." "formatet KEY=VAL shellvariabel for at angive flere legitimationsvariabler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -193,7 +259,11 @@ msgstr ""
"acmesh-official/acme.sh/wiki/DNS-alias-mode for nærmere oplysninger om denne " "acmesh-official/acme.sh/wiki/DNS-alias-mode for nærmere oplysninger om denne "
"proces. LUCI understøtter kun ét udfordringsdomæne pr. certifikat." "proces. LUCI understøtter kun ét udfordringsdomæne pr. certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -210,7 +280,11 @@ msgstr ""
"certifikater tage et stykke tid. Kontroller logfilerne for fremskridt og " "certifikater tage et stykke tid. Kontroller logfilerne for fremskridt og "
"eventuelle fejl." "eventuelle fejl."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -227,56 +301,31 @@ msgstr ""
"der understøtter wildcard-certifikater. Brug af denne tilstand kræver, at " "der understøtter wildcard-certifikater. Brug af denne tilstand kræver, at "
"pakken acme-dnsapi er installeret." "pakken acme-dnsapi er installeret."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Opdater nginx-konfigurationen med dette certifikat, når det er udstedt (vælg "
"kun dette for ét certifikat). Nginx skal understøtte ssl, hvis ikke vil den "
"ikke starte, da den skal kompileres med ssl-understøttelse for at kunne "
"bruge cert-indstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Opdater uhttpd-konfigurationen med dette certifikat, når det er udstedt "
"(vælg kun dette for ét certifikat). Er også tilgængelig luci-app-uhttpd til "
"at konfigurere uhttpd fra LuCI-grænsefladen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Brug en brugerdefineret CA i stedet for Let's Encrypt." msgstr "Brug en brugerdefineret CA i stedet for Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Brug til nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Brug til uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Brug staging-server" msgstr "Brug staging-server"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Valideringsmetode" msgstr "Valideringsmetode"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Udfordringsvalidering"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webroot-mappen" msgstr "Webroot-mappen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -286,8 +335,5 @@ msgstr ""
"køre Acme i webroot-tilstand. Webserveren skal være tilgængelig fra " "køre Acme i webroot-tilstand. Webserveren skal være tilgængelig fra "
"internettet på port 80." "internettet på port 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "State mappe" #~ msgstr "ACME certs"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Hvor certifikater og andre stat filer opbevares."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.0-dev\n" "X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME-Zertifikate" msgstr "ACME-Zertifikate"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME-Zertifikate"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME-Server URL" msgstr "ACME-Server URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Account E-Mail" msgstr "Account E-Mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configurações avançadas" msgstr "Configurações avançadas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Wo Zertifikate und andere Statusdateien aufbewahrt werden."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Zertifikateinstellungen" msgstr "Zertifikateinstellungen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Challenge-Alias" msgstr "Challenge-Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Challenge-Verifizierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Individuelles ACME-Zertifikat" msgstr "Individuelles ACME-Zertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Benutzerdefinierte ACME-Serververzeichnis URL." msgstr "Benutzerdefinierte ACME-Serververzeichnis URL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API Zugangsdaten" msgstr "DNS API Zugangsdaten"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Challenge-Verifizierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Tage bis zur Erneuerung" msgstr "Tage bis zur Erneuerung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Domain-Alias" msgstr "Domain-Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Domainnamen" msgstr "Domainnamen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"Eintrag ist der Betreff, nachfolgende Namen sind Alternativnamen. Beachten " "Eintrag ist der Betreff, nachfolgende Namen sind Alternativnamen. Beachten "
"Sie, dass alle Domainamen im globalen DNS auf den Router zeigen müssen." "Sie, dass alle Domainamen im globalen DNS auf den Router zeigen müssen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 Bits" msgstr "ECC 256 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 Bits" msgstr "ECC 384 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "E-Mail Adresse, welche mit dem Account Key verknüpft wird." msgstr "E-Mail Adresse, welche mit dem Account Key verknüpft wird."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Aktiviere Debug-Protokollierung" msgstr "Aktiviere Debug-Protokollierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Aktiviert" msgstr "Aktiviert"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Allgemeine Einstellungen" msgstr "Allgemeine Einstellungen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "UCI Zugriff auf luci-app-acme erlauben" msgstr "UCI Zugriff auf luci-app-acme erlauben"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Schlüsselgröße" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Schlüsselgröße (und Typ) für das generierte Zertifikat." msgstr "Schlüsselgröße (und Typ) für das generierte Zertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Schlüsselgröße"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 Bits" msgstr "RSA 2048 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 Bits" msgstr "RSA 3072 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 Bits" msgstr "RSA 4096 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Eigenständig" msgstr "Eigenständig"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"Webserver genutzt. Der DNS-Modus erlaubt es, die API deines DNS-Providers " "Webserver genutzt. Der DNS-Modus erlaubt es, die API deines DNS-Providers "
"für die Zertifikatausstellung zu verwenden." "für die Zertifikatausstellung zu verwenden."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"Vorgang finden Sie unter https://github.com/acmesh-official/acme.sh/wiki/DNS-" "Vorgang finden Sie unter https://github.com/acmesh-official/acme.sh/wiki/DNS-"
"alias-mode. LUCI unterstützt nur einen Challenge-Alias pro Zertifikat." "alias-mode. LUCI unterstützt nur einen Challenge-Alias pro Zertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -183,7 +249,7 @@ msgstr ""
"Einträge im Shell-Variablenformat KEY = VAL hinzu, um mehrere " "Einträge im Shell-Variablenformat KEY = VAL hinzu, um mehrere "
"Anmeldeinformationsvariablen bereitzustellen." "Anmeldeinformationsvariablen bereitzustellen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -193,7 +259,11 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode für Details zu diesem Prozess. LUCI " "official/acme.sh/wiki/DNS-alias-mode für Details zu diesem Prozess. LUCI "
"unterstützt nur eine Domänenanforderung pro Zertifikat." "unterstützt nur eine Domänenanforderung pro Zertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -211,7 +281,11 @@ msgstr ""
"Zertifikaten eine Weile dauern. Überprüfen Sie die Protokolle auf " "Zertifikaten eine Weile dauern. Überprüfen Sie die Protokolle auf "
"Fortschritt und Fehler." "Fortschritt und Fehler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -228,57 +302,31 @@ msgstr ""
"Platzhalterzertifikate unterstützt. Für die Verwendung dieses Modus muss das " "Platzhalterzertifikate unterstützt. Für die Verwendung dieses Modus muss das "
"acme-dnsapi-Paket installiert sein." "acme-dnsapi-Paket installiert sein."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Aktualisieren Sie die Nginx-Konfiguration mit diesem einmal ausgestellten "
"Zertifikat (wählen Sie dies nur für ein Zertifikat aus). Nginx muss ssl "
"unterstützen. Andernfalls wird es nicht gestartet, da es mit ssl-"
"Unterstützung kompiliert werden muss, um Zertifizierungsoptionen verwenden "
"zu können"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Aktualisieren Sie die uhttpd-Konfiguration mit diesem einmal ausgestellten "
"Zertifikat (wählen Sie dies nur für ein Zertifikat aus). Es ist auch luci-"
"app-uhttpd verfügbar, um uhttpd über die LuCI-Schnittstelle zu konfigurieren."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Nutze individuelles Zertifikat statt Let's Encrypt." msgstr "Nutze individuelles Zertifikat statt Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Für nginx verwenden"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Für uhttpd verwenden"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Staging-Server verwenden" msgstr "Staging-Server verwenden"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Überprüfungsmethode" msgstr "Überprüfungsmethode"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Challenge-Verifizierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webroot-Verzeichnis" msgstr "Webroot-Verzeichnis"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -288,8 +336,5 @@ msgstr ""
"ein, um Acme im Webroot-Modus auszuführen. Der Webserver muss über Port 80 " "ein, um Acme im Webroot-Modus auszuführen. Der Webserver muss über Port 80 "
"über das Internet erreichbar sein." "über das Internet erreichbar sein."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Statusverzeichnis" #~ msgstr "ACME-Zertifikate"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Wo Zertifikate und andere Statusdateien aufbewahrt werden."

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME πιστοποιητικά" msgstr "ACME πιστοποιητικά"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Λογαριασμός email" msgstr "Λογαριασμός email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Ρυθμίσεις για προχωρημένους" msgstr "Ρυθμίσεις για προχωρημένους"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Μέρες μέχρι την ανανέωση" msgstr "Μέρες μέχρι την ανανέωση"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bits" msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bits" msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Ενεργοποιήθηκε" msgstr "Ενεργοποιήθηκε"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Γενικές ρυθμίσεις" msgstr "Γενικές ρυθμίσεις"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bits" msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bits" msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bits" msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,49 +267,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Μέθοδος επιβεβαίωσης" msgstr "Μέθοδος επιβεβαίωσης"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.4.1-dev\n" "X-Generator: Weblate 4.4.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME certificates" msgstr "ACME certificates"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME certs"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Account email" msgstr "Account email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Advanced Settings" msgstr "Advanced Settings"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Certificate config" msgstr "Certificate config"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Challenge Alias" msgstr "Challenge Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API credentials" msgstr "DNS API credentials"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Domain Alias" msgstr "Domain Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Domain names" msgstr "Domain names"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Enable debug logging" msgstr "Enable debug logging"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Enabled" msgstr "Enabled"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -156,14 +222,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -171,14 +237,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -188,7 +258,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -198,51 +272,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "ACME certs"
#~ msgstr "ACME certs"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.15.1-dev\n" "X-Generator: Weblate 4.15.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certificados ACME" msgstr "Certificados ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certificados ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL del servidor ACME" msgstr "URL del servidor ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Cuenta de email" msgstr "Cuenta de email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configuración avanzada" msgstr "Configuración avanzada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Donde se mantienen los certificados y otros archivos de estado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Configuración de certificado" msgstr "Configuración de certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Alias de desafío" msgstr "Alias de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validación de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "CA ACME personalizado" msgstr "CA ACME personalizado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL del directorio del servidor ACME personalizado." msgstr "URL del directorio del servidor ACME personalizado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "API de DNS" msgstr "API de DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Credenciales de API de DNS" msgstr "Credenciales de API de DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validación de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Días hasta la renovación" msgstr "Días hasta la renovación"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias de dominio" msgstr "Alias de dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Nombres de dominio" msgstr "Nombres de dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -89,32 +102,38 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC de 256 bits" msgstr "ECC de 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC de 384 bits" msgstr "ECC de 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Activar el registro de depuración" msgstr "Activar el registro de depuración"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Activado" msgstr "Activado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Configuración general" msgstr "Configuración general"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -126,31 +145,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Tamaño de clave" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
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/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Tamaño de clave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA de 2048 bits" msgstr "RSA de 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA de 3072 bits" msgstr "RSA de 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA de 4096 bits" msgstr "RSA de 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Ser único" msgstr "Ser único"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -162,7 +228,7 @@ msgstr ""
"emitir un certificado. El modo DNS le permitirá utilizar la API de DNS de su " "emitir un certificado. El modo DNS le permitirá utilizar la API de DNS de su "
"proveedor de DNS para emitir un certificado." "proveedor de DNS para emitir un certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -172,7 +238,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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -185,7 +251,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/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -195,7 +261,11 @@ msgstr ""
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles " "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles "
"sobre este proceso. LUCI solo admite un dominio de desafío por certificado." "sobre este proceso. LUCI solo admite un dominio de desafío por certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -212,7 +282,11 @@ 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/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -228,56 +302,31 @@ msgstr ""
"enrutador. El modo DNS también es el único modo que admite certificados " "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/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Actualice la configuración de nginx con este certificado una vez emitido "
"(solo seleccione esto para un certificado). Nginx debe ser compatible con "
"SSL, de lo contrario no se iniciará, ya que debe compilarse con soporte SSL "
"para usar opciones de certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Actualice la configuración de uhttpd con este certificado una vez emitido "
"(solo seleccione esto para un certificado). También está disponible luci-app-"
"uhttpd para configurar uhttpd desde la interfaz LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Utilice una CA personalizada en lugar de Let's Encrypt." msgstr "Utilice una CA personalizada en lugar de Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Usar para nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Usar para uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Método de validación" msgstr "Método de validación"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validación de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Directorio Webroot" msgstr "Directorio Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -287,11 +336,8 @@ 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."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Directorio del estado" #~ msgstr "Certificados ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Donde se mantienen los certificados y otros archivos de estado."
#~ msgid "" #~ msgid ""
#~ "The credentials for the DNS API mode selected above. See https://github." #~ "The credentials for the DNS API mode selected above. See https://github."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.12-dev\n" "X-Generator: Weblate 4.12-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME-sertifikaatit" msgstr "ACME-sertifikaatit"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME-sertifikaatit"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME-palvelimen URL-osoite" msgstr "ACME-palvelimen URL-osoite"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Sähköpostitili" msgstr "Sähköpostitili"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Lisäasetukset" msgstr "Lisäasetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Sertifikaatin asetukset" msgstr "Sertifikaatin asetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Haaste - alias" msgstr "Haaste - alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API:n kirjautumistiedot" msgstr "DNS API:n kirjautumistiedot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Päiviä uusimiseen" msgstr "Päiviä uusimiseen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Verkkonimen alias" msgstr "Verkkonimen alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Verkkonimet" msgstr "Verkkonimet"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -89,31 +102,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bittiä" msgstr "ECC 256 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bittiä" msgstr "ECC 384 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
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/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Käytössä" msgstr "Käytössä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Yleiset asetukset" msgstr "Yleiset asetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -123,31 +142,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Avaimen koko" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
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/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Avaimen koko"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bittiä" msgstr "RSA 2048 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bittiä" msgstr "RSA 3072 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bittiä" msgstr "RSA 4096 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -155,14 +221,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -170,14 +236,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -187,7 +257,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -197,54 +271,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Käytä nginx:ään"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Käytä uhttpd:hen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Käytä staging-palvelimeen" msgstr "Käytä staging-palvelimeen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Validointitapa" msgstr "Validointitapa"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Tilahakemisto" #~ msgstr "ACME-sertifikaatit"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.18-dev\n" "X-Generator: Weblate 4.18-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certificats ACME" msgstr "Certificats ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certificats ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "Configuration globale ACME" msgstr "Configuration globale ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL du serveur ACME" msgstr "URL du serveur ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Compte email" msgstr "Compte email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Paramètres avancés" msgstr "Paramètres avancés"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Emplacement de sauvegarde des certificats et des fichiers états."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Configuration du certificat" msgstr "Configuration du certificat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Alias du challenge" msgstr "Alias du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validation du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "CA ACME personnalisé" msgstr "CA ACME personnalisé"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL du répertoire du serveur ACME personnalisé." msgstr "URL du répertoire du serveur ACME personnalisé."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "API du DNS" msgstr "API du DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Identités de API du DNS" msgstr "Identités de API du DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validation du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Nombre de jour avant renouvellement" msgstr "Nombre de jour avant renouvellement"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias du Domaine" msgstr "Alias du Domaine"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Noms de domaine" msgstr "Noms de domaine"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"principal, les noms suivants seront les noms alternatifs. Notez que tous les " "principal, les noms suivants seront les noms alternatifs. Notez que tous les "
"noms de domaine doivent pointer sur le router dans le DNS global." "noms de domaine doivent pointer sur le router dans le DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bits" msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bits" msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "Adresse email à associer avec la clé du compte." msgstr "Adresse email à associer avec la clé du compte."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Activer les logs de type debug" msgstr "Activer les logs de type debug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Activé" msgstr "Activé"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Paramètres généraux" msgstr "Paramètres généraux"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Autoriser les accès UCI pour luci-app-acme" msgstr "Autoriser les accès UCI pour luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Longueur de clé" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Longueur de clé (et type) du certificat généré." msgstr "Longueur de clé (et type) du certificat généré."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Longueur de clé"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bits" msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bits" msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bits" msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Autonome" msgstr "Autonome"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"pour le générer. Le mode DNS vous permet d'utiliser l 'API DNS de votre " "pour le générer. Le mode DNS vous permet d'utiliser l 'API DNS de votre "
"fournisseur de DNS pour générer le certificat." "fournisseur de DNS pour générer le certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"com/acmesh-official/acme.sh/wiki/DNS-alias-mode pour les détails de ce " "com/acmesh-official/acme.sh/wiki/DNS-alias-mode pour les détails de ce "
"processus. LUCI supporte un seul alias par certificat." "processus. LUCI supporte un seul alias par certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"pour chaque API. Ajouter toutes vos variables d'identification ici sous le " "pour chaque API. Ajouter toutes vos variables d'identification ici sous le "
"format CLÉ=VALEUR." "format CLÉ=VALEUR."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"acmesh-official/acme.sh/wiki/DNS-alias-mode pour plus de détail. LUCI ne " "acmesh-official/acme.sh/wiki/DNS-alias-mode pour plus de détail. LUCI ne "
"supporte qu'un seul domaine par certificat pour le challenge." "supporte qu'un seul domaine par certificat pour le challenge."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -209,7 +279,11 @@ msgstr ""
"certificats peut prendre un certain temps. Vérifiez les journaux pour la " "certificats peut prendre un certain temps. Vérifiez les journaux pour la "
"progression et les erreurs." "progression et les erreurs."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -226,56 +300,31 @@ msgstr ""
"certificats génériques (wildcard). L'utilisation de ce mode requiert " "certificats génériques (wildcard). L'utilisation de ce mode requiert "
"l'installation du paquet acme-dnsapi." "l'installation du paquet acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Actualise la configuration nginx à l'aide de ce certificat une fois émis (à "
"ne choisir que pour un seul certificat). Nginx requiert le support SSL pour "
"pouvoir démarrer et avoir accès aux options de certificat et doit avoir été "
"compilé avec le support SSL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Actualise la configuration uhttpd à l'aide de ce certificat une fois émis (à "
"ne choisir que pour un seul certificat). luci-app-uhttpd permet également de "
"configurer uhttpd à partir de l'interface LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Utiliser un CA personnalisé à la place de celui de Let's Encryt." msgstr "Utiliser un CA personnalisé à la place de celui de Let's Encryt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Utiliser pour nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Utiliser pour uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Utiliser le serveur de qualification" msgstr "Utiliser le serveur de qualification"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Méthode de validation" msgstr "Méthode de validation"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Racine web" msgstr "Racine web"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validation du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Répertoire racine web" msgstr "Répertoire racine web"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -285,8 +334,5 @@ msgstr ""
"racine du serveur Web pour utiliser ACME en mode Racine (webroot). Le " "racine du serveur Web pour utiliser ACME en mode Racine (webroot). Le "
"serveur web doit être accessible depuis internet sur le port 80." "serveur web doit être accessible depuis internet sur le port 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Répertoire pour les contextes" #~ msgstr "Certificats ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Emplacement de sauvegarde des certificats et des fichiers états."

View file

@ -11,106 +11,125 @@ msgstr ""
"n % 10 == 0) ? 2 : 3));\n" "n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 4.4.1-dev\n" "X-Generator: Weblate 4.4.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "הגדרות מתקדמות" msgstr "הגדרות מתקדמות"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -120,31 +139,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -152,14 +218,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -167,14 +233,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -184,7 +254,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -194,49 +268,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -4,106 +4,125 @@ 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/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -113,31 +132,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -145,14 +211,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -160,14 +226,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -177,7 +247,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -187,49 +261,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.13-dev\n" "X-Generator: Weblate 4.13-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME tanúsítványok" msgstr "ACME tanúsítványok"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME tanúsítványok"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "ACME globális beállítás" msgstr "ACME globális beállítás"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME szerver URL" msgstr "ACME szerver URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Fiók e-mail" msgstr "Fiók e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Haladó Beállítások" msgstr "Haladó Beállítások"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Ahol a tanúsítványok és egyéb állapotfájlok tárolva vannak."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Tanúsítvány beállítása" msgstr "Tanúsítvány beállítása"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Kihívás álneve" msgstr "Kihívás álneve"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Kihívás érvényesítése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Egyéni ACME CA" msgstr "Egyéni ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Testreszabott ACME szerver könyvtár URL." msgstr "Testreszabott ACME szerver könyvtár URL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API hitelesítési adatok" msgstr "DNS API hitelesítési adatok"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Kihívás érvényesítése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Napok megújításig" msgstr "Napok megújításig"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Tartományálnév" msgstr "Tartományálnév"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Tartománynevek" msgstr "Tartománynevek"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"neve, az azt követő nevek lesznek az alternatív nevek. Ne feledje, hogy az " "neve, az azt követő nevek lesznek az alternatív nevek. Ne feledje, hogy az "
"összes tartománynévnek az útválasztóra kell mutatnia a globális DNS-ben." "összes tartománynévnek az útválasztóra kell mutatnia a globális DNS-ben."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "256 bites ECC" msgstr "256 bites ECC"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "384 bites ECC" msgstr "384 bites ECC"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "A fiók kulcsához rendelendő e-mail cím." msgstr "A fiók kulcsához rendelendő e-mail cím."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Hibakeresési naplózás engedélyezése" msgstr "Hibakeresési naplózás engedélyezése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Engedélyezve" msgstr "Engedélyezve"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Általános Beállítások" msgstr "Általános Beállítások"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "UCI hozzáférés megadása a luci-app-acme alkalmazásnak" msgstr "UCI hozzáférés megadása a luci-app-acme alkalmazásnak"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Kulcsméret" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Kulcsméret (és típus) az előállított tanúsítványhoz." msgstr "Kulcsméret (és típus) az előállított tanúsítványhoz."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Kulcsméret"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "2048 bites RSA" msgstr "2048 bites RSA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "3072 bites RSA" msgstr "3072 bites RSA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "4096 bites RSA" msgstr "4096 bites RSA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Önálló" msgstr "Önálló"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"használni, hogy kiállítson egy tanusítványt. A DNS üzemmód megengedélyezi a " "használni, hogy kiállítson egy tanusítványt. A DNS üzemmód megengedélyezi a "
"DNS szolgáltatód DNS API-ja használatát, hogy kiállítson egy tanusítványt." "DNS szolgáltatód DNS API-ja használatát, hogy kiállítson egy tanusítványt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat " "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat "
"részleteiért. A LuCI csak egy kihívási álnevet támogat tanúsítványonként." "részleteiért. A LuCI csak egy kihívási álnevet támogat tanúsítványonként."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -183,7 +249,7 @@ msgstr ""
"KULCS=ÉRTÉK parancsértelmező változóformátumban a több hitelesítési adat " "KULCS=ÉRTÉK parancsértelmező változóformátumban a több hitelesítési adat "
"változójának támogatásához." "változójának támogatásához."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -193,7 +259,11 @@ msgstr ""
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat " "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat "
"részleteiért. A LuCI csak egy tartományálnevet támogat tanúsítványonként." "részleteiért. A LuCI csak egy tartományálnevet támogat tanúsítványonként."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -210,7 +280,11 @@ msgstr ""
"a tanúsítványok kibocsátása eltarthat egy ideig. Nézze meg a naplókat a " "a tanúsítványok kibocsátása eltarthat egy ideig. Nézze meg a naplókat a "
"folyamat előrehaladásához és a hibákhoz." "folyamat előrehaladásához és a hibákhoz."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -227,56 +301,31 @@ msgstr ""
"tanúsítványokat. Ezen mód használatához az szükséges, hogy az acme-dnsapi " "tanúsítványokat. Ezen mód használatához az szükséges, hogy az acme-dnsapi "
"csomag telepítve legyen." "csomag telepítve legyen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Az nginx beállítás frissítése ezzel a tanúsítvánnyal, miután kibocsátották "
"(csak egy tanúsítványnál válassza ki ezt). Az nginx programnak támogatnia "
"kell az SSL-t. Ha nem támogatja, akkor nem fog elindulni, mivel SSL "
"támogatással kell lefordítani a tanúsítvány lehetőségeinek használatához"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Az uhttpd beállítás frissítése ezzel a tanúsítvánnyal, miután kibocsátották "
"(csak egyetlen tanúsítványnál válassza ki). Elérhető a luci-app-uhttpd is a "
"LuCI felületéről történő uhttpd beállításhoz."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Nginx-hez történő használat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Uhttpd-hez történő használat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Előkészítő kiszolgáló használata" msgstr "Előkészítő kiszolgáló használata"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Kihívás érvényesítése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webgyökér könyvtár" msgstr "Webgyökér könyvtár"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -286,8 +335,5 @@ msgstr ""
"dokumentumgyökerére az ACME webgyökér módban történő futtatásához. A " "dokumentumgyökerére az ACME webgyökér módban történő futtatásához. A "
"webkiszolgálónak elérhetőnek kell lennie az internetről a 80-as porton." "webkiszolgálónak elérhetőnek kell lennie az internetről a 80-as porton."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Állapotkönyvtár" #~ msgstr "ACME tanúsítványok"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Ahol a tanúsítványok és egyéb állapotfájlok tárolva vannak."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.12.1-dev\n" "X-Generator: Weblate 4.12.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Sertifikat ACME" msgstr "Sertifikat ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Sertifikat ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "Konfigurasi global ACME" msgstr "Konfigurasi global ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL server ACME" msgstr "URL server ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Akun e-mail" msgstr "Akun e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Pengaturan Lanjutan" msgstr "Pengaturan Lanjutan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Di mana sertifikat dan file status lainnya disimpan."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Konfigurasi sertifikat" msgstr "Konfigurasi sertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Tantangan Alias" msgstr "Tantangan Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validasi Tantangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "CA ACME khusus" msgstr "CA ACME khusus"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL direktori server ACME khusus." msgstr "URL direktori server ACME khusus."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Kredensial API DNS" msgstr "Kredensial API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validasi Tantangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Hari sampai perpanjangan" msgstr "Hari sampai perpanjangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias Domain" msgstr "Alias Domain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Nama domain" msgstr "Nama domain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"subjek, nama berikutnya akan menjadi nama alternatif. Perhatikan bahwa semua " "subjek, nama berikutnya akan menjadi nama alternatif. Perhatikan bahwa semua "
"nama domain harus mengarah ke router di DNS global." "nama domain harus mengarah ke router di DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bit" msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bit" msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "Alamat email untuk dikaitkan dengan kunci akun." msgstr "Alamat email untuk dikaitkan dengan kunci akun."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Aktifkan pencatatan debug" msgstr "Aktifkan pencatatan debug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Diaktifkan" msgstr "Diaktifkan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Pengaturan Umum" msgstr "Pengaturan Umum"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Berikan akses UCI untuk luci-app-acme" msgstr "Berikan akses UCI untuk luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Ukuran kunci" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Ukuran kunci (dan jenis) untuk sertifikat yang dihasilkan." msgstr "Ukuran kunci (dan jenis) untuk sertifikat yang dihasilkan."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Ukuran kunci"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bit" msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bit" msgstr "RSA 3072 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bit" msgstr "RSA 4096 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Mandiri" msgstr "Mandiri"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"mengeluarkan sertifikat. Mode DNS akan memungkinkan Anda untuk menggunakan " "mengeluarkan sertifikat. Mode DNS akan memungkinkan Anda untuk menggunakan "
"API DNS dari penyedia DNS Anda untuk mengeluarkan sertifikat." "API DNS dari penyedia DNS Anda untuk mengeluarkan sertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"acmesh-official/acme.sh/wiki/DNS-alias-mode untuk detail proses ini. LUCI " "acmesh-official/acme.sh/wiki/DNS-alias-mode untuk detail proses ini. LUCI "
"hanya mendukung satu alias tantangan per sertifikat." "hanya mendukung satu alias tantangan per sertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"oleh setiap API. Tambahkan beberapa entri di sini dalam format variabel " "oleh setiap API. Tambahkan beberapa entri di sini dalam format variabel "
"shell KEY=VAL untuk memasok beberapa variabel kredensial." "shell KEY=VAL untuk memasok beberapa variabel kredensial."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"com/acmesh-official/acme.sh/wiki/DNS-alias-mode untuk detail proses ini. " "com/acmesh-official/acme.sh/wiki/DNS-alias-mode untuk detail proses ini. "
"LUCI hanya mendukung satu domain tantangan per sertifikat." "LUCI hanya mendukung satu domain tantangan per sertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -208,7 +278,11 @@ msgstr ""
"router. Setelah dikonfigurasi, penerbitan sertifikat dapat memakan waktu " "router. Setelah dikonfigurasi, penerbitan sertifikat dapat memakan waktu "
"cukup lama. Periksa log untuk kemajuan dan kesalahan apa pun." "cukup lama. Periksa log untuk kemajuan dan kesalahan apa pun."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -224,56 +298,31 @@ msgstr ""
"satunya mode yang mendukung sertifikat wildcard. Menggunakan mode ini " "satunya mode yang mendukung sertifikat wildcard. Menggunakan mode ini "
"memerlukan paket acme-dnsapi untuk diinstal." "memerlukan paket acme-dnsapi untuk diinstal."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Perbarui konfigurasi nginx dengan sertifikat ini setelah dikeluarkan (hanya "
"pilih ini untuk satu sertifikat). Nginx harus mendukung ssl, jika tidak, itu "
"tidak akan dimulai karena perlu dikompilasi dengan dukungan ssl untuk "
"menggunakan opsi sertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Perbarui konfigurasi uhttpd dengan sertifikat ini setelah diterbitkan (hanya "
"pilih ini untuk satu sertifikat). Juga tersedia luci-app-uhttpd untuk "
"mengkonfigurasi uhttpd dari antarmuka LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Gunakan CA khusus sebagai ganti Let's Encrypt." msgstr "Gunakan CA khusus sebagai ganti Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Gunakan untuk nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Gunakan untuk uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Gunakan server pementasan" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Metode validasi" msgstr "Metode validasi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validasi Tantangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Direktori webroot" msgstr "Direktori webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -283,8 +332,8 @@ msgstr ""
"menjalankan Acme dalam mode webroot. Server web harus dapat diakses dari " "menjalankan Acme dalam mode webroot. Server web harus dapat diakses dari "
"internet pada port 80." "internet pada port 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Direktori negara" #~ msgstr "Sertifikat ACME"
#~ msgid "Where certs and other state files are kept." #~ msgid "Use for nginx"
#~ msgstr "Di mana sertifikat dan file status lainnya disimpan." #~ msgstr "Gunakan untuk nginx"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.0-dev\n" "X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certificati ACME" msgstr "Certificati ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certificati ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL server ACME" msgstr "URL server ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "E-mail dell'account" msgstr "E-mail dell'account"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Impostazioni avanzate" msgstr "Impostazioni avanzate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Dove vengono conservati i certificati e altri file di stato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Configurazione certificato" msgstr "Configurazione certificato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Alias challenge" msgstr "Alias challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validazione challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "CA ACME personalizzato" msgstr "CA ACME personalizzato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL personalizzata cartella server ACME." msgstr "URL personalizzata cartella server ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "API DNS" msgstr "API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Credenziali API DNS" msgstr "Credenziali API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validazione challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "giorni al rinnovo" msgstr "giorni al rinnovo"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias di dominio" msgstr "Alias di dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Nomi di dominio" msgstr "Nomi di dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bit" msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bit" msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Attiva i log di debug" msgstr "Attiva i log di debug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Attivato" msgstr "Attivato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Impostazioni generali" msgstr "Impostazioni generali"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Dimensione chiave" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Dimensione chiave (e tipo) per il certificato generato." msgstr "Dimensione chiave (e tipo) per il certificato generato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Dimensione chiave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bit" msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bit" msgstr "RSA 3072 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bit" msgstr "RSA 4096 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Autonoma" msgstr "Autonoma"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"emettere un certificato. La modalità DNS ti consentirà di usare l'API DNS " "emettere un certificato. La modalità DNS ti consentirà di usare l'API DNS "
"del tuo provider DNS per emettere un certificato." "del tuo provider DNS per emettere un certificato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"processo vedi https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-" "processo vedi https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-"
"mode . LUCI supporta solo un alias challenge per certificato." "mode . LUCI supporta solo un alias challenge per certificato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"official/acme.sh/wiki/dnsapi . Aggiungi più voci qui nel formato variabile " "official/acme.sh/wiki/dnsapi . Aggiungi più voci qui nel formato variabile "
"shell CHIAVE=VALORE per fornire variabili credenziali multiple." "shell CHIAVE=VALORE per fornire variabili credenziali multiple."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"processo vedi https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-" "processo vedi https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-"
"mode . LUCI supporta solo un dominio challenge per certificato." "mode . LUCI supporta solo un dominio challenge per certificato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -209,7 +279,11 @@ msgstr ""
"certificati può richiedere del tempo. Controlla i registri eventi per " "certificati può richiedere del tempo. Controlla i registri eventi per "
"verificare lo stato di avanzamento e gli eventuali errori." "verificare lo stato di avanzamento e gli eventuali errori."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -225,56 +299,31 @@ msgstr ""
"è anche l'unica modalità che supporta i certificati con caratteri jolly. " "è anche l'unica modalità che supporta i certificati con caratteri jolly. "
"L'uso di questa modalità richiede l'installazione del pacchetto acme-dnsapi." "L'uso di questa modalità richiede l'installazione del pacchetto acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Aggiorna la configurazione di nginx con questo certificato una volta emesso "
"(selezionalo solo per un certificato). Nginx deve supportare SSL, altrimenti "
"non si avvia poiché deve essere compilato con il supporto SSL per usare le "
"opzioni cert"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Aggiorna la configurazione uhttpd con questo certificato una volta emesso "
"(selezionalo solo per un certificato). È disponibile anche luci-app-uhttpd "
"per configurare uhttpd nell'interfaccia LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Usa una CA personalizzata invece di Let's Encrypt." msgstr "Usa una CA personalizzata invece di Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Usa per nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Usa per uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Usa server di prova" msgstr "Usa server di prova"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Metodo validazione" msgstr "Metodo validazione"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validazione challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Cartella webroot" msgstr "Cartella webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -284,8 +333,5 @@ msgstr ""
"server web per eseguire Acme in modalità webroot. Il server web deve essere " "server web per eseguire Acme in modalità webroot. Il server web deve essere "
"accessibile da internet sulla porta 80." "accessibile da internet sulla porta 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Cartella stato" #~ msgstr "Certificati ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Dove vengono conservati i certificati e altri file di stato."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7.1-dev\n" "X-Generator: Weblate 4.7.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME証明書" msgstr "ACME証明書"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME証明書"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACMEサーバーのURL" msgstr "ACMEサーバーのURL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "アカウントのメールアドレス" msgstr "アカウントのメールアドレス"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "詳細設定" msgstr "詳細設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "証明書設定" msgstr "証明書設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "カスタムACME CA" msgstr "カスタムACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "カスタムACMEサーバーディレクトリのURL。" msgstr "カスタムACMEサーバーディレクトリのURL。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API資格情報" msgstr "DNS API資格情報"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "更新までの日数" msgstr "更新までの日数"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "ドメインエイリアス" msgstr "ドメインエイリアス"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "ドメイン名" msgstr "ドメイン名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -87,31 +100,37 @@ msgstr ""
"証明書に含めるドメイン名です。最初の名前はサブジェクト名、その次は代替名で" "証明書に含めるドメイン名です。最初の名前はサブジェクト名、その次は代替名で"
"す。すべてのドメイン名はグローバルDNSのルーターを指す必要があります。" "す。すべてのドメイン名はグローバルDNSのルーターを指す必要があります。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC256ビット" msgstr "ECC256ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC384ビット" msgstr "ECC384ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "アカウントに関連付けるメールアドレスです。" msgstr "アカウントに関連付けるメールアドレスです。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "デバッグロギングを有効化" msgstr "デバッグロギングを有効化"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "有効" msgstr "有効"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "一般設定" msgstr "一般設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -123,31 +142,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "鍵の大きさ" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "生成された証明書の鍵の大きさ(およびタイプ)。" msgstr "生成された証明書の鍵の大きさ(およびタイプ)。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "鍵の大きさ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA2048ビット" msgstr "RSA2048ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA3072ビット" msgstr "RSA3072ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA4096ビット" msgstr "RSA4096ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "スタンドアロン" msgstr "スタンドアロン"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -158,14 +224,14 @@ msgstr ""
"します。 Webrootモードでは、既存のWebサーバーを使用して証明書を発行します。 " "します。 Webrootモードでは、既存のWebサーバーを使用して証明書を発行します。 "
"DNSモードでは、DNSプロバイダーのDNSAPIを使用して証明書を発行できます。" "DNSモードでは、DNSプロバイダーのDNSAPIを使用して証明書を発行できます。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -173,14 +239,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -190,7 +260,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -200,51 +274,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Let'sEncryptの代わりにカスタムCAを使用する。" msgstr "Let'sEncryptの代わりにカスタムCAを使用する。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "nginxを使用"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "uhttpdを使用"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webrootディレクトリ" msgstr "Webrootディレクトリ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "ACME certs"
#~ msgstr "ACME証明書"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.15.1-dev\n" "X-Generator: Weblate 4.15.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME 인증서" msgstr "ACME 인증서"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME 인증서"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME 서버 URL" msgstr "ACME 서버 URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "계정 이메일" msgstr "계정 이메일"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "고급 설정" msgstr "고급 설정"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "인증서와 기타 상태 파일이 저장되는 경로입니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "인증서 구성" msgstr "인증서 구성"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "챌린지 별칭" msgstr "챌린지 별칭"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "챌린지 확인"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "사용자 지정 ACME CA" msgstr "사용자 지정 ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "사용자 지정 ACME 서버 디렉터리 URL." msgstr "사용자 지정 ACME 서버 디렉터리 URL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API 자격 증명" msgstr "DNS API 자격 증명"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS 챌린지 확인"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "갱신일" msgstr "갱신일"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "도메인 별칭" msgstr "도메인 별칭"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "도메인 네임" msgstr "도메인 네임"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"도메인이 부 도메인이 됩니다. 주의할 점은 모든 도메인 네임들이 반드시 글로벌 " "도메인이 부 도메인이 됩니다. 주의할 점은 모든 도메인 네임들이 반드시 글로벌 "
"DNS의 라우터를 가리키도록 하셔야 합니다." "DNS의 라우터를 가리키도록 하셔야 합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256비트" msgstr "ECC 256비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384비트" msgstr "ECC 384비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "계정 키에 연결할 이메일 주소입니다." msgstr "계정 키에 연결할 이메일 주소입니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "디버그 로깅 사용" msgstr "디버그 로깅 사용"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "활성화" msgstr "활성화"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "기본 설정" msgstr "기본 설정"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "키 크기" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "생성된 인증서의 키 크기(및 유형)." msgstr "생성된 인증서의 키 크기(및 유형)."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "키 크기"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048비트" msgstr "RSA 2048비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072비트" msgstr "RSA 3072비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096비트" msgstr "RSA 4096비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "독립형" msgstr "독립형"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"합니다. DNS 모드는 인증서 발행에 DNS 를 제공하는 업체의 DNS API를 사용하게 됩" "합니다. DNS 모드는 인증서 발행에 DNS 를 제공하는 업체의 DNS API를 사용하게 됩"
"니다." "니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode 에서 자세한 내용을 확인하세요. LuCI에서" "official/acme.sh/wiki/DNS-alias-mode 에서 자세한 내용을 확인하세요. LuCI에서"
"는 개별 인증서마다 하나의 챌린지 별칭만 지원합니다." "는 개별 인증서마다 하나의 챌린지 별칭만 지원합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"참고해주세요. KEY=VAL 쉘 변수 포맷에 따라 여러 개의 자격 증명을 추가할 수 있" "참고해주세요. KEY=VAL 쉘 변수 포맷에 따라 여러 개의 자격 증명을 추가할 수 있"
"습니다." "습니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode 에서 자세한 내용을 확인하세요. LuCI에서" "official/acme.sh/wiki/DNS-alias-mode 에서 자세한 내용을 확인하세요. LuCI에서"
"는 개별 인증서마다 하나의 챌린지 도메인만 지원합니다." "는 개별 인증서마다 하나의 챌린지 도메인만 지원합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -207,7 +277,11 @@ msgstr ""
"구성하는 경우, 인증서 발급에 시간이 걸릴 수 있습니다. 진행 상황 및 오류는 로" "구성하는 경우, 인증서 발급에 시간이 걸릴 수 있습니다. 진행 상황 및 오류는 로"
"그에서 확인할 수 있습니다." "그에서 확인할 수 있습니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -222,55 +296,31 @@ msgstr ""
"카드 인증서를 지원합니다. DNS 모드를 사용하기 위해선 acme-dnsapi 패키지가 설" "카드 인증서를 지원합니다. DNS 모드를 사용하기 위해선 acme-dnsapi 패키지가 설"
"치되어 있어야 합니다." "치되어 있어야 합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"인증서가 발급되었을 때 nginx 설정을 업데이트합니다 (1개의 인증서에서만 이 옵"
"션을 선택하세요). SSL 지원을 사용하도록 컴파일된 nginx를 사용해야 하며, 그렇"
"지 않은 경우 nginx가 시작되지 않습니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"인증서가 발급되었을 때 uhttpd 설정을 업데이트합니다 (1개의 인증서에서만 이 옵"
"션을 선택하세요). luci-app-uhttpd 패키지를 통해 LuCI 인터페이스에서 uhttpd의 "
"설정을 수정할 수도 있습니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Let's Encrypt 대신 사용자 지정 CA를 사용합니다." msgstr "Let's Encrypt 대신 사용자 지정 CA를 사용합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "nginx에 적용"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "uhttpd에 적용"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "유효성 검증 방법" msgstr "유효성 검증 방법"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot 챌린지 확인"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webroot 디렉터리" msgstr "Webroot 디렉터리"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -279,8 +329,5 @@ msgstr ""
"ACME를 웹루트(Webroot) 모드로 실행하기 위해선 웹 서버 문서 루트 디렉터리를 설" "ACME를 웹루트(Webroot) 모드로 실행하기 위해선 웹 서버 문서 루트 디렉터리를 설"
"정하세요. 웹 서버는 80번 포트에서 인터넷 접근이 가능해야 합니다." "정하세요. 웹 서버는 80번 포트에서 인터넷 접근이 가능해야 합니다."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "상태 디렉터리" #~ msgstr "ACME 인증서"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "인증서와 기타 상태 파일이 저장되는 경로입니다."

View file

@ -14,106 +14,125 @@ msgstr ""
"1 : 2);\n" "1 : 2);\n"
"X-Generator: Weblate 5.0-dev\n" "X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Įjungta" msgstr "Įjungta"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -123,31 +142,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -155,14 +221,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -170,14 +236,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -187,7 +257,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -197,49 +271,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3-dev\n" "X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME प्रमाणपत्रे" msgstr "ACME प्रमाणपत्रे"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME प्रमाणपत्र"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "खाते ईमेल" msgstr "खाते ईमेल"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "प्रमाणपत्र कॉन्फिगरेशन" msgstr "प्रमाणपत्र कॉन्फिगरेशन"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "आव्हान उपनाम" msgstr "आव्हान उपनाम"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "डीएनएस एपीआय" msgstr "डीएनएस एपीआय"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "खाते किल्लीशी संलग्न करण्यासाठी ईमेल पत्ता." msgstr "खाते किल्लीशी संलग्न करण्यासाठी ईमेल पत्ता."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "डीबग लॉगिंग सक्षम करा" msgstr "डीबग लॉगिंग सक्षम करा"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "सक्षम केले" msgstr "सक्षम केले"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,51 +267,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "ACME certs"
#~ msgstr "ACME प्रमाणपत्र"

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.6-dev\n" "X-Generator: Weblate 4.6-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Tetapan Lanjutan" msgstr "Tetapan Lanjutan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,49 +267,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.0-dev\n" "X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME-sertifikater" msgstr "ACME-sertifikater"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Avanserte innstillinger" msgstr "Avanserte innstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Domenenavn" msgstr "Domenenavn"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Aktivert" msgstr "Aktivert"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Generelle innstillinger" msgstr "Generelle innstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Nøkkelstørrelse" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Nøkkelstørrelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,49 +267,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -11,75 +11,88 @@ msgstr ""
"|| n%100>=20) ? 1 : 2;\n" "|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 4.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certyfikaty ACME" msgstr "Certyfikaty ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certyfikaty ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "Adres URL serwera ACME" msgstr "Adres URL serwera ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Konto e-mail" msgstr "Konto e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane" msgstr "Ustawienia zaawansowane"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Gdzie przechowywane są certyfikaty i inne pliki stanu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Konfiguracja certyfikatu" msgstr "Konfiguracja certyfikatu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Alias wyzwania" msgstr "Alias wyzwania"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Weryfikacja wyzwań"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Niestandardowy ACME CA" msgstr "Niestandardowy ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Niestandardowy adres URL katalogu serwera ACME." msgstr "Niestandardowy adres URL katalogu serwera ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Poświadczenia interfejsu API DNS" msgstr "Poświadczenia interfejsu API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Weryfikacja wyzwań"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Dni do czasu odnowienia" msgstr "Dni do czasu odnowienia"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias Domeny" msgstr "Alias Domeny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Nazwy domen" msgstr "Nazwy domen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -89,31 +102,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bitów" msgstr "ECC 256 bitów"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bity" msgstr "ECC 384 bity"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "Adres e-mail do powiązania z kluczem konta." msgstr "Adres e-mail do powiązania z kluczem konta."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Włącz rejestrowanie debugowania" msgstr "Włącz rejestrowanie debugowania"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Włączone" msgstr "Włączone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Ustawienia główne" msgstr "Ustawienia główne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -125,31 +144,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Rozmiar klucza" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
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/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Rozmiar klucza"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bitów" msgstr "RSA 2048 bitów"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bity" msgstr "RSA 3072 bity"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bitów" msgstr "RSA 4096 bitów"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Autonomiczny" msgstr "Autonomiczny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -161,7 +227,7 @@ msgstr ""
"wystawienia certyfikatu. Tryb DNS pozwala na użycie DNS API dostawcy DNS do " "wystawienia certyfikatu. Tryb DNS pozwala na użycie DNS API dostawcy DNS do "
"wystawienia certyfikatu." "wystawienia certyfikatu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -172,7 +238,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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -184,7 +250,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/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -194,7 +260,11 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode, aby uzyskać szczegółowe informacje na " "official/acme.sh/wiki/DNS-alias-mode, aby uzyskać szczegółowe informacje na "
"temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania na certyfikat." "temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania na certyfikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -210,7 +280,11 @@ 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/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -226,56 +300,31 @@ msgstr ""
"DNS jest także jedynym trybem obsługującym certyfikaty wieloznaczne. " "DNS jest także jedynym trybem obsługującym certyfikaty wieloznaczne. "
"Korzystanie z tego trybu wymaga zainstalowania pakietu acme-dnsapi." "Korzystanie z tego trybu wymaga zainstalowania pakietu acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Zaktualizuj konfigurację nginx za pomocą tego certyfikatu po jego wydaniu "
"(wybierz to tylko dla jednego certyfikatu). Nginx musi obsługiwać ssl, jeśli "
"nie, to nie uruchomi się, ponieważ musi być skompilowany z obsługą ssl, aby "
"użyć opcji cert"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Zaktualizuj konfigurację uhttpd z tym certyfikatem po wystawieniu (wybierz "
"to tylko dla jednego certyfikatu). Jest również dostępna luci-app-uhttpd do "
"konfiguracji uhttpd z interfejsu LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Użyj niestandardowego CA zamiast Let's Encrypt." msgstr "Użyj niestandardowego CA zamiast Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Użyj dla nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Użyj dla uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Metoda walidacji" msgstr "Metoda walidacji"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Weryfikacja wyzwań"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Katalog Webroot" msgstr "Katalog Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -285,8 +334,5 @@ 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."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Katalog stanu" #~ msgstr "Certyfikaty ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Gdzie przechowywane są certyfikaty i inne pliki stanu."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.17-dev\n" "X-Generator: Weblate 4.17-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certificados ACME" msgstr "Certificados ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certificados ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL do servidor ACME" msgstr "URL do servidor ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Conta de e-mail" msgstr "Conta de e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configurações avançadas" msgstr "Configurações avançadas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Onde os certificados e outros ficheiros de estado são mantidos."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Configuração do certificado" msgstr "Configuração do certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Aliás do Desafio" msgstr "Aliás do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validação do desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "AC de ACME personalizada" msgstr "AC de ACME personalizada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL personalizada do diretório do servidor ACME." msgstr "URL personalizada do diretório do servidor ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "API do DNS" msgstr "API do DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Credenciais do API do DNS" msgstr "Credenciais do API do DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validação do desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Dias até à renovação" msgstr "Dias até à renovação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Aliás do Domínio" msgstr "Aliás do Domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Nomes de domínio" msgstr "Nomes de domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bits" msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bits" msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
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/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Configurações gerais" msgstr "Configurações gerais"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Tamanho da chave" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
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/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Tamanho da chave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bits" msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bits" msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bits" msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Autónomo" msgstr "Autónomo"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"certificado. O modo DNS permitirá que use a API DNS do seu provedor de DNS " "certificado. O modo DNS permitirá que use a API DNS do seu provedor de DNS "
"para emitir um certificado." "para emitir um certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -171,7 +237,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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -184,7 +250,7 @@ msgstr ""
"como variável da shell KEY=VAL suprindo múltiplas variáveis para as " "como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
"credenciais." "credenciais."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -195,7 +261,11 @@ 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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -212,7 +282,11 @@ 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/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -228,56 +302,31 @@ msgstr ""
"DNS é também o único modo que suporta certificados curinga. A utilização " "DNS é também o único modo que suporta certificados curinga. A utilização "
"deste modo requer a instalação do pacote acme-dnsapi." "deste modo requer a instalação do pacote acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Atualize a configuração nginx com este certificado depois de ser emitido "
"(selecione isto apenas para um certificado). Nginx deve suportar ssl, caso "
"contrário não será iniciado precisa ser compilado com o suporte ssl para "
"usar as opções do cert"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Atualize a configuração uhttpd com este certificado depouis de ser emitido "
"(selecione isto apenas para um certificado). Também está disponível o luci-"
"app-uhttpd para configurar uhttpd a partir da interface LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Use uma AC personalizada em vez de Let's Encrypt." msgstr "Use uma AC personalizada em vez de Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Uso para nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Use para uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Método de validação" msgstr "Método de validação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validação do desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Diretório webroot" msgstr "Diretório webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -287,8 +336,5 @@ 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."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Diretório do estado" #~ msgstr "Certificados ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Onde os certificados e outros ficheiros de estado são mantidos."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.16.2-dev\n" "X-Generator: Weblate 4.16.2-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certificados ACME" msgstr "Certificados ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "certificados ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL do Servidor ACME" msgstr "URL do Servidor ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "E-mail da conta" msgstr "E-mail da conta"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Configurações avançadas" msgstr "Configurações avançadas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Onde os certificados e os outros arquivos de estado são mantidos."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Configuração do certificado" msgstr "Configuração do certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Aliás do Desafio" msgstr "Aliás do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validação do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "CA ACME Customizado" msgstr "CA ACME Customizado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL do Servidor ACME Customizado." msgstr "URL do Servidor ACME Customizado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "API do DNS" msgstr "API do DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Credenciais do API DNS" msgstr "Credenciais do API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validação do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Dias até a renovação" msgstr "Dias até a renovação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Aliás do Domínio" msgstr "Aliás do Domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Nomes de domínio" msgstr "Nomes de domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bits" msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bits" msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Ativar o registro de depuração" msgstr "Ativar o registro de depuração"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Configurações gerais" msgstr "Configurações gerais"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Tamanho da chave" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
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/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Tamanho da chave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bits" msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bits" msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bits" msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Independente" msgstr "Independente"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"solicitar um certificado. O modo DNS permitirá vocÊ a usar a API de DNS do " "solicitar um certificado. O modo DNS permitirá vocÊ a usar a API de DNS do "
"seu provedor DNS para solicitar um certificado." "seu provedor DNS para solicitar um certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -171,7 +237,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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -184,7 +250,7 @@ msgstr ""
"como variável da shell KEY=VAL suprindo múltiplas variáveis para as " "como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
"credenciais." "credenciais."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -195,7 +261,11 @@ 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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -212,7 +282,11 @@ 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/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -228,56 +302,31 @@ 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/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Uma vez emitido, atualize a configuração nginx com este certificado "
"(selecione-o apenas para um certificado). O nginx deve ser compatível com "
"ssl, caso contrário ele não vai iniciar pois para usar as opções cert ele "
"precisa ser compilado com ssl"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Uma vez emitido, atualize a configuração uhttpd com este certificado "
"(selecione-o apenas para um certificado). Também está disponível o luci-app-"
"uhttpd para configurar o uhttpd através da interface LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Use uma CA customizada em vez do Let's Encrypt." msgstr "Use uma CA customizada em vez do Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Uso para o nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Use para o uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Método de Validação" msgstr "Método de Validação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validação do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Diretório Webroot" msgstr "Diretório Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -287,11 +336,8 @@ 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."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Condição do diretório" #~ msgstr "certificados ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Onde os certificados e os outros arquivos de estado são mantidos."
#~ msgid "" #~ msgid ""
#~ "The credentials for the DNS API mode selected above. See https://github." #~ "The credentials for the DNS API mode selected above. See https://github."

View file

@ -11,75 +11,88 @@ msgstr ""
"20)) ? 1 : 2;\n" "20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.18-dev\n" "X-Generator: Weblate 4.18-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Certificate ACME" msgstr "Certificate ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Certificate ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "Configurare globală ACME" msgstr "Configurare globală ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "Adresa URL a server-ului ACME" msgstr "Adresa URL a server-ului ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Adresa de e-mail a contului" msgstr "Adresa de e-mail a contului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Setări avansate" msgstr "Setări avansate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Unde se păstrează certificatele și alte dosare de stat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Configurarea certificatului" msgstr "Configurarea certificatului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Alias de provocare" msgstr "Alias de provocare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Validarea provocării"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Certificat ACME personalizat" msgstr "Certificat ACME personalizat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL-ul personalizat al directorului serverului ACME." msgstr "URL-ul personalizat al directorului serverului ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "credențiale DNS API" msgstr "credențiale DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validarea provocării"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Zile până la reînnoire" msgstr "Zile până la reînnoire"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Aliasul domeniului" msgstr "Aliasul domeniului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Numele domeniului" msgstr "Numele domeniului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -89,31 +102,37 @@ msgstr ""
"subiectului, următoarele nume vor fi alternative. Ține minte că toate numele " "subiectului, următoarele nume vor fi alternative. Ține minte că toate numele "
"domeniului trebuie să ducă la router în DNS-ul global." "domeniului trebuie să ducă la router în DNS-ul global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 biți" msgstr "ECC 256 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 biți" msgstr "ECC 384 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "Adresa de email ce va fi asociată cu cheia contului." msgstr "Adresa de email ce va fi asociată cu cheia contului."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Activați jurnalizarea de depanare" msgstr "Activați jurnalizarea de depanare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "activat" msgstr "activat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Setări generale" msgstr "Setări generale"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -125,31 +144,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Acordă acces la UCI pentru luci-app-acme" msgstr "Acordă acces la UCI pentru luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Dimensiunea cheii" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Dimensiunea (și tipul) cheii pentru certificatul generat." msgstr "Dimensiunea (și tipul) cheii pentru certificatul generat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Dimensiunea cheii"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 biți" msgstr "RSA 2048 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 biți" msgstr "RSA 3072 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 biți" msgstr "RSA 4096 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "De sine stătător" msgstr "De sine stătător"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -161,7 +227,7 @@ msgstr ""
"emite un certificat. Modul DNS îți va permite să folosești API-ul DNS al " "emite un certificat. Modul DNS îți va permite să folosești API-ul DNS al "
"provider-ului DNS pentru a emite un certificat." "provider-ului DNS pentru a emite un certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -172,7 +238,7 @@ msgstr ""
"pentru detalii despre acest proces. LUCI acceptă doar un singur alias de " "pentru detalii despre acest proces. LUCI acceptă doar un singur alias de "
"provocare pentru fiecare certificat." "provocare pentru fiecare certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -185,7 +251,7 @@ msgstr ""
"formatul variabilei de shell KEY=VAL pentru a furniza mai multe variabile de " "formatul variabilei de shell KEY=VAL pentru a furniza mai multe variabile de "
"acreditare." "acreditare."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -196,7 +262,11 @@ msgstr ""
"detalii despre acest proces. LUCI acceptă doar un singur domeniu de " "detalii despre acest proces. LUCI acceptă doar un singur domeniu de "
"provocare pentru fiecare certificat." "provocare pentru fiecare certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -213,7 +283,11 @@ msgstr ""
"certificatelor poate dura ceva timp. Verificați jurnalele pentru a vedea " "certificatelor poate dura ceva timp. Verificați jurnalele pentru a vedea "
"progresul și eventualele erori." "progresul și eventualele erori."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -229,56 +303,31 @@ msgstr ""
"DNS este, de asemenea, singurul mod care acceptă certificate wildcard. " "DNS este, de asemenea, singurul mod care acceptă certificate wildcard. "
"Utilizarea acestui mod necesită instalarea pachetului acme-dnsapi." "Utilizarea acestui mod necesită instalarea pachetului acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Actualizați configurația nginx cu acest certificat odată emis (selectați-l "
"doar pentru un certificat). Nginx trebuie să accepte ssl, în caz contrar nu "
"va porni, deoarece trebuie să fie compilat cu suport ssl pentru a utiliza "
"opțiunile de certificare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Actualizați configurația uhttpd cu acest certificat odată ce a fost emis "
"(selectați acest lucru doar pentru un certificat). Este disponibil și luci-"
"app-uhttpd pentru a configura uhttpd din interfața LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Utilizați un CA personalizat în loc de Let's Encrypt." msgstr "Utilizați un CA personalizat în loc de Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Utilizați pentru nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Utilizați pentru uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Utilizați serverul staging" msgstr "Utilizați serverul staging"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Metoda de validare" msgstr "Metoda de validare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validarea provocării"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Directorul webroot" msgstr "Directorul webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -288,8 +337,5 @@ msgstr ""
"documentului serverului web pentru a rula Acme în modul webroot. Serverul " "documentului serverului web pentru a rula Acme în modul webroot. Serverul "
"web trebuie să fie accesibil de pe internet pe portul 80." "web trebuie să fie accesibil de pe internet pe portul 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Directorul de stat" #~ msgstr "Certificate ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Unde se păstrează certificatele și alte dosare de stat."

View file

@ -11,109 +11,129 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.17-dev\n" "X-Generator: Weblate 4.17-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Сертификаты ACME" msgstr "Сертификаты ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Сертификаты ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL сервера ACME" msgstr "URL сервера ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Электронная почта учётной записи" msgstr "Электронная почта учётной записи"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Расширенные настройки" msgstr "Расширенные настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Base64 содержимое приватного ключа. Используйте вместо YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Сертификаты сохраняются в папку"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Конфигурация сертификата" msgstr "Конфигурация сертификата"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Сертификаты"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Псевдонимы вызова" msgstr "Псевдонимы вызова"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Проверка вызовов"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Персонализированный ACME CA" msgstr "Персонализированный ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL-адрес пользовательского каталога сервера ACME." msgstr "URL-адрес пользовательского каталога сервера ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Данные для доступа к DNS API" msgstr "Данные для доступа к DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS подтверждение"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Дней до продления" msgstr "Дней до продления"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "По умолчанию"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Псевдоним домена" msgstr "Псевдоним домена"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Доменные имена" msgstr "Доменные имена"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 ""
"Доменные имена для включения в сертификат. Первое имя — имя субъекта (" "Доменные имена для включения в сертификат. Первое имя — имя субъекта "
"subject name), следующие имена — дополнительные (alt names). Все доменные " "(subject name), следующие имена — дополнительные (alt names). Все доменные "
"имена должны указывать на маршрутизатор в глобальной DNS." "имена должны указывать на маршрутизатор в глобальной DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 бит" msgstr "ECC 256 бит"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 бита" msgstr "ECC 384 бита"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "E-mail адрес для привязки ключа аккаунта." msgstr "E-mail адрес для привязки ключа аккаунта."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Записывать в журнал данные для отладки" msgstr "Записывать в журнал данные для отладки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Включен" msgstr "Включен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Общие настройки" msgstr "Общие настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -125,43 +145,95 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Размер ключа" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Если сертификат не был перевыпущен вовремя то вы получите уведомление за 20 "
"дней до истечения срока действия."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Выпущен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Размер (и тип) ключа для сгенерированного сертификата." msgstr "Размер (и тип) ключа для сгенерированного сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Размер ключа"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Главный домен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Зайдите на <a href=\"https://www.duckdns.org/\">DuckDNS</a> и скопируйте "
"токен сюда"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Путь к ключу приватного API в PEM формате"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Приватный ключ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Публичный сертификат"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 бит" msgstr "RSA 2048 бит"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 бита" msgstr "RSA 3072 бита"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 бит" msgstr "RSA 4096 бит"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "Standalone" msgid "See instructions"
msgstr "Автономный" msgstr "Смотрите инструкции"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Самостоятельно"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider " "certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
"В автономном режиме для выдачи сертификата будет использоваться встроенный " "В Самостоятельном режиме для выдачи сертификата будет использоваться "
"веб-сервер acme.sh. Режим Webroot будет использовать существующий веб-сервер " "встроенный веб-сервер acme.sh. Подтверждение через Webroot будет "
"для выдачи сертификата. Режим DNS позволит вам использовать API DNS вашего " "использовать существующий веб-сервер для выдачи сертификата. Подтверждение "
"провайдера DNS для выпуска сертификата." "через DNS позволит вам использовать API DNS вашего провайдера DNS для "
"выпуска сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -172,7 +244,7 @@ msgstr ""
"DNS-alias-mode. LUCI поддерживает только один псевдоним вызова для каждого " "DNS-alias-mode. LUCI поддерживает только один псевдоним вызова для каждого "
"сертификата." "сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -184,17 +256,21 @@ msgstr ""
"acme.sh/wiki/dnsapi. Добавьте сюда несколько записей в формате переменной " "acme.sh/wiki/dnsapi. Добавьте сюда несколько записей в формате переменной "
"оболочки KEY=VAL, чтобы предоставить несколько переменных учетных данных." "оболочки KEY=VAL, чтобы предоставить несколько переменных учетных данных."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 ""
"Псевдоним домена для ВСЕХ доменов. Подробнее об этом процессе см. " "Псевдоним домена для ВСЕХ доменов. Подробнее об этом процессе см. https://"
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode. LUCI " "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode. LUCI поддерживает "
"поддерживает только один контрольный домен для каждого сертификата." "только один контрольный домен для каждого сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Приватный ключ подписи API в PEM формате"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -211,7 +287,11 @@ msgstr ""
"выдача сертификатов может занять некоторое время. Проверьте журналы на " "выдача сертификатов может занять некоторое время. Проверьте журналы на "
"наличие прогресса и ошибок." "наличие прогресса и ошибок."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -227,56 +307,31 @@ msgstr ""
"является единственным режимом, поддерживающий подстановочные сертификаты. " "является единственным режимом, поддерживающий подстановочные сертификаты. "
"Для использования этого режима необходимо установить пакет acme-dnsapi." "Для использования этого режима необходимо установить пакет acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Дополнить конфигурацию nginx этим сертификатом как только он будет выдан ("
"используйте эту функцию только для одного сертификата). Nginx должен "
"поддерживать SSL, или же его нужно будет перекомпилировать с поддержкой SSL "
"чтобы использовать настройки сертификата"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Обновить конфигурацию uhttpd этим сертификатом после его выпуска (выберите "
"этот параметр только для одного сертификата). Также доступен luci-app-uhttpd "
"для настройки uhttpd из интерфейса LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Использовать сторонний центр сертификации вместо Let's Encrypt." msgstr "Использовать сторонний центр сертификации вместо Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Использовать для nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Использовать для uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Метод проверки" msgstr "Метод проверки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot подтверждение"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Каталог Webroot" msgstr "Каталог Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -285,8 +340,5 @@ msgstr ""
"Укажите здесь корневой каталог веб-сервера, чтобы запустить Acme в режиме " "Укажите здесь корневой каталог веб-сервера, чтобы запустить Acme в режиме "
"webroot. Веб-сервер должен быть доступен из интернета на 80 порту." "webroot. Веб-сервер должен быть доступен из интернета на 80 порту."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Директория хранения данных" #~ msgstr "Сертификаты ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Где хранятся сертификаты и другие файлы состояния."

View file

@ -10,106 +10,125 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.5\n" "X-Generator: Weblate 4.5\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "ව.නා.ප." msgstr "ව.නා.ප."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "වසම් නාම" msgstr "වසම් නාම"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -119,31 +138,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -151,14 +217,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -166,14 +232,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -183,7 +253,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -193,49 +267,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,75 +10,88 @@ 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.14.1\n" "X-Generator: Weblate 4.14.1\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME certifikáty" msgstr "ACME certifikáty"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME certifikáty"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "E-mail účtu" msgstr "E-mail účtu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Konfigurácia certifikátov" msgstr "Konfigurácia certifikátov"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Prihlasovacie údaje DNS API" msgstr "Prihlasovacie údaje DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alias domény" msgstr "Alias domény"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Domény" msgstr "Domény"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -87,31 +100,37 @@ 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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
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/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Povoliť detailné záznamy" msgstr "Povoliť detailné záznamy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Zapnuté" msgstr "Zapnuté"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
#, 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 "
@ -124,31 +143,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Dĺžka kľúča" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
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/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Dĺžka kľúča"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -156,14 +222,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
#, 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/"
@ -175,14 +241,18 @@ 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/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -192,7 +262,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -202,51 +276,36 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "ACME certs"
#~ msgstr "ACME certifikáty"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME-certifikat" msgstr "ACME-certifikat"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "E-postkonto" msgstr "E-postkonto"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Avancerade inställningar" msgstr "Avancerade inställningar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Där certifikat och andra tillståndsfiler sparas."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Domännamn" msgstr "Domännamn"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"Efterföljande namn blir alternativa namn. Notera att alla domännamn måste " "Efterföljande namn blir alternativa namn. Notera att alla domännamn måste "
"peka på routern i den globala DNS:en." "peka på routern i den globala DNS:en."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bitar" msgstr "ECC 256 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bitar" msgstr "ECC 384 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "E-postadress att koppla till kontonyckeln." msgstr "E-postadress att koppla till kontonyckeln."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Aktivera avlunsingsloggning" msgstr "Aktivera avlunsingsloggning"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Aktiverad" msgstr "Aktiverad"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Generella inställningar" msgstr "Generella inställningar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Bevilja UCI-tillgång till luci-app-acme" msgstr "Bevilja UCI-tillgång till luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Nyckelstorlek" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Nyckelstorlek (och typ) för det genererade certifikatet." msgstr "Nyckelstorlek (och typ) för det genererade certifikatet."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Nyckelstorlek"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bitar" msgstr "RSA 2048 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bitar" msgstr "RSA 3072 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bitar" msgstr "RSA 4096 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Fristående" msgstr "Fristående"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,14 +226,14 @@ msgstr ""
"att utfärda ett. DNS-lägen tillåter dig att använde din DNS-tjänsts DNS API " "att utfärda ett. DNS-lägen tillåter dig att använde din DNS-tjänsts DNS API "
"för att utfärda ett certifikat." "för att utfärda ett certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -175,14 +241,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -192,7 +262,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -202,57 +276,33 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Använd iscensättningsserver" msgstr "Använd iscensättningsserver"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webbrot" msgstr "Webbrot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webbrotskatalog" msgstr "Webbrotskatalog"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 ""
#~ msgid "State directory"
#~ msgstr "Tillståndskatalog"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Där certifikat och andra tillståndsfiler sparas."

View file

@ -1,106 +1,125 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "" msgstr ""
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -110,31 +129,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -142,14 +208,14 @@ msgid ""
"to issue a certificate." "to issue a certificate."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -157,14 +223,18 @@ msgid ""
"supply multiple credential variables." "supply multiple credential variables."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -174,7 +244,11 @@ msgid ""
"logs for progress and any errors." "logs for progress and any errors."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -184,49 +258,31 @@ msgid ""
"package to be installed." "package to be installed."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr ""
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7-dev\n" "X-Generator: Weblate 4.7-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME sertifikaları" msgstr "ACME sertifikaları"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME sertifikaları"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "ACME evrensel yapılandırma" msgstr "ACME evrensel yapılandırma"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME sunucu URL'si" msgstr "ACME sunucu URL'si"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Hesap e-postası" msgstr "Hesap e-postası"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Gelişmiş Ayarlar" msgstr "Gelişmiş Ayarlar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Sertifikaların ve diğer dosyaların tutulduğu yer."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Sertifika yapılandırması" msgstr "Sertifika yapılandırması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Challenge Takma Adı" msgstr "Challenge Takma Adı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Zorluk Doğrulaması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Özel ACME CA" msgstr "Özel ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Özel ACME sunucu dizini URL'si." msgstr "Özel ACME sunucu dizini URL'si."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API bilgileri" msgstr "DNS API bilgileri"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Zorluk Doğrulaması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Yenilemeye kalan gün sayısı" msgstr "Yenilemeye kalan gün sayısı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Alan Takma Adı" msgstr "Alan Takma Adı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Alan adları" msgstr "Alan adları"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"alternatif adlar olacak. Domain adlarının evrensel DNS'de router'ı " "alternatif adlar olacak. Domain adlarının evrensel DNS'de router'ı "
"göstermesi gerektiğini unutmayın." "göstermesi gerektiğini unutmayın."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bit" msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bit" msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "Hesap anahtarına bağlanacak e-posta adresi." msgstr "Hesap anahtarına bağlanacak e-posta adresi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Hata ayıklama günlüğünü etkinleştir" msgstr "Hata ayıklama günlüğünü etkinleştir"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Etkin" msgstr "Etkin"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Genel Ayarlar" msgstr "Genel Ayarlar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "luci-app-acme için UCI erişimi verin" msgstr "luci-app-acme için UCI erişimi verin"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Anahtar boyutu" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Oluşturulmuş sertifika için anahtar boyutu (ve türü)." msgstr "Oluşturulmuş sertifika için anahtar boyutu (ve türü)."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Anahtar boyutu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 bit" msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 bit" msgstr "RSA 3072 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 bit" msgstr "RSA 4096 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Bağımsız" msgstr "Bağımsız"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"kullanır. DNS modu, bir sertifika vermek için DNS sağlayıcınızın DNS " "kullanır. DNS modu, bir sertifika vermek için DNS sağlayıcınızın DNS "
"API'sini kullanmanıza izin verir." "API'sini kullanmanıza izin verir."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine göz " "https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine göz "
"atın. LUCI sertifika başına sadece bir tane challenge takma adını destekler." "atın. LUCI sertifika başına sadece bir tane challenge takma adını destekler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"dnsapi adresine bakın. Birden çok kimlik bilgisi değişkeni sağlamak için " "dnsapi adresine bakın. Birden çok kimlik bilgisi değişkeni sağlamak için "
"buraya birden çok KEY = VAL olarak shell değişkeni ekleyin." "buraya birden çok KEY = VAL olarak shell değişkeni ekleyin."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"için https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine " "için https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine "
"göz atın. LUCI, sertifika başına yalnızca bir challenge alanını destekler." "göz atın. LUCI, sertifika başına yalnızca bir challenge alanını destekler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -209,7 +279,11 @@ msgstr ""
"sertifikaların verilmesi biraz zaman alabilir. İlerleme ve herhangi bir hata " "sertifikaların verilmesi biraz zaman alabilir. İlerleme ve herhangi bir hata "
"için günlük kayıtlarına bakın." "için günlük kayıtlarına bakın."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -225,56 +299,31 @@ msgstr ""
"çözümlemesi gerekmez. DNS modu, joker karakter sertifikalarını destekleyen " "çözümlemesi gerekmez. DNS modu, joker karakter sertifikalarını destekleyen "
"tek moddur. Bu modu kullanmak, acme-dnsapi paketinin yüklenmesini gerektirir." "tek moddur. Bu modu kullanmak, acme-dnsapi paketinin yüklenmesini gerektirir."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Nginx yapılandırmasını bu sertifika verildikten sonra güncelleyin (bunu "
"yalnızca bir sertifika için seçin). Nginx, ssl'yi desteklemelidir, değilse, "
"sertifika seçeneklerini kullanmak için ssl desteği ile derlenmesi "
"gerektiğinden başlamaz"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Bu sertifika verildikten sonra uhttpd yapılandırmasını güncelleyin (bunu "
"yalnızca bir sertifika için seçin). LuCI arayüzünden uhttpd'yi yapılandırmak "
"için luci-app-uhttpd de mevcuttur."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Let's Encrypt yerine özel bir CA kullanın." msgstr "Let's Encrypt yerine özel bir CA kullanın."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Nginx için kullanın"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Uhttpd için kullanın"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Aşama sunucusu kullan" msgstr "Aşama sunucusu kullan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Doğrulama yöntemi" msgstr "Doğrulama yöntemi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Zorluk Doğrulaması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webroot dizini" msgstr "Webroot dizini"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -284,8 +333,5 @@ msgstr ""
"sunucusu belge köküne ayarlayın. Web sunucusuna 80 numaralı bağlantı " "sunucusu belge köküne ayarlayın. Web sunucusuna 80 numaralı bağlantı "
"noktasından internetten erişilebilmelidir." "noktasından internetten erişilebilmelidir."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Dizin belirt" #~ msgstr "ACME sertifikaları"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Sertifikaların ve diğer dosyaların tutulduğu yer."

View file

@ -11,75 +11,88 @@ msgstr ""
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.15.1-dev\n" "X-Generator: Weblate 4.15.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME сертифікати" msgstr "ACME сертифікати"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME сертифікати"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "URL-адреса сервера ACME" msgstr "URL-адреса сервера ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Електронна адреса пошти облікового запису" msgstr "Електронна адреса пошти облікового запису"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Додаткові налаштування" msgstr "Додаткові налаштування"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Сертифікати зберігаються у каталог "
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Параметри сертифіката" msgstr "Параметри сертифіката"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Псевдоніми виклику" msgstr "Псевдоніми виклику"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Перевірка викликів"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Користувацький ACME CA" msgstr "Користувацький ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "URL-адреса каталогу користувацького сервера ACME." msgstr "URL-адреса каталогу користувацького сервера ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Облікові дані DNS API" msgstr "Облікові дані DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Перевірка викликів"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Днів до поновлення" msgstr "Днів до поновлення"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Псевдонім домену" msgstr "Псевдонім домену"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Імена домену" msgstr "Імена домену"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -90,32 +103,38 @@ msgstr ""
"Запримітьте, що всі доменні імена повинні вказувати на маршрутизатор у " "Запримітьте, що всі доменні імена повинні вказувати на маршрутизатор у "
"глобальному DNS." "глобальному DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 біт" msgstr "ECC 256 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 біт" msgstr "ECC 384 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
"Адреса електронної пошти, яку потрібно зв’язати з ключем облікового запису." "Адреса електронної пошти, яку потрібно зв’язати з ключем облікового запису."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Увімкнути системний журнал" msgstr "Увімкнути системний журнал"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Увімкнено" msgstr "Увімкнено"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Загальні налаштування" msgstr "Загальні налаштування"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -127,31 +146,78 @@ 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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Розмір ключа" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Розмір (і тип) ключа для згенерованого сертифіката." msgstr "Розмір (і тип) ключа для згенерованого сертифіката."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Розмір ключа"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 біт" msgstr "RSA 2048 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 біт" msgstr "RSA 3072 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 біт" msgstr "RSA 4096 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Автономний" msgstr "Автономний"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -163,7 +229,7 @@ msgstr ""
"видачі сертифіката. Режим DNS дозволить вам використовувати API DNS вашого " "видачі сертифіката. Режим DNS дозволить вам використовувати API DNS вашого "
"постачальника DNS для видачі сертифіката." "постачальника DNS для видачі сертифіката."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -173,7 +239,7 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode, щоб дізнатися більше про цей процес. " "official/acme.sh/wiki/DNS-alias-mode, щоб дізнатися більше про цей процес. "
"LUCI підтримує лише один псевдонім виклику на сертифікат." "LUCI підтримує лише один псевдонім виклику на сертифікат."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -185,7 +251,7 @@ msgstr ""
"для кожного API. Додайте тут кілька записів у форматі змінної оболонки " "для кожного API. Додайте тут кілька записів у форматі змінної оболонки "
"KEY=VAL, щоб надати декілька змінних облікових даних." "KEY=VAL, щоб надати декілька змінних облікових даних."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -195,7 +261,11 @@ msgstr ""
"official/acme.sh/wiki/DNS-alias-mode, щоб дізнатися більше про цей процес. " "official/acme.sh/wiki/DNS-alias-mode, щоб дізнатися більше про цей процес. "
"LUCI підтримує лише один псевдонім виклику на сертифікат." "LUCI підтримує лише один псевдонім виклику на сертифікат."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -212,7 +282,11 @@ msgstr ""
"зайняти деякий час. Перевірте журнали на наявність прогресу та будь-яких " "зайняти деякий час. Перевірте журнали на наявність прогресу та будь-яких "
"помилок." "помилок."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -228,56 +302,31 @@ msgstr ""
"єдиним режимом, який підтримує підстановочні сертифікати. Для використання " "єдиним режимом, який підтримує підстановочні сертифікати. Для використання "
"цього режиму потрібно встановити пакет acme-dnsapi." "цього режиму потрібно встановити пакет acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Оновити конфігурацію nginx цим сертифікатом після його видачі "
"(використовуйте цю функцію лише для одного сертифіката). Nginx повинен "
"підтримувати ssl, якщо ні, він не запуститься, оскільки його потрібно "
"скомпілювати з підтримкою ssl, щоб використовувати параметри сертифікатів"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Оновіть конфігурацію uhttpd цим сертифіката після його видачі "
"(використовуйте цю функцію лише для одного сертифіката). Також доступний "
"luci-app-uhttpd для налаштування uhttpd з інтерфейсу LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Використовувати інший ЦС замість Let's Encrypt." msgstr "Використовувати інший ЦС замість Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Використовувати для nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Використовувати для uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Метод перевірки" msgstr "Метод перевірки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Перевірка викликів"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Тека Webroot" msgstr "Тека Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -287,8 +336,5 @@ msgstr ""
"документа веб-сервера, щоб запустити Acme в режимі webroot. Веб-сервер " "документа веб-сервера, щоб запустити Acme в режимі webroot. Веб-сервер "
"повинен бути доступний з Інтернету через порт 80." "повинен бути доступний з Інтернету через порт 80."
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "Каталог стану" #~ msgstr "ACME сертифікати"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "Де зберігаються сертифікати та інші файли стану."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.18.1\n" "X-Generator: Weblate 4.18.1\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "Chứng chỉ ACME" msgstr "Chứng chỉ ACME"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "Các chứng chỉ ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid "ACME global config" msgid "ACME global config"
msgstr "Cấu hình ACME toàn cầu" msgstr "Cấu hình ACME toàn cầu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "Đường dẫn máy chủ ACME" msgstr "Đường dẫn máy chủ ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "Tài khoản email" msgstr "Tài khoản email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "Cài đặt nâng cao" msgstr "Cài đặt nâng cao"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "Cấu hình chứng chỉ" msgstr "Cấu hình chứng chỉ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Bí danh" msgstr "Bí danh"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "Tùy chỉnh ACME CA" msgstr "Tùy chỉnh ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "Tùy chỉnh đường dẫn máy chủ ACME." msgstr "Tùy chỉnh đường dẫn máy chủ ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "Thông tin đăng nhập DNS API" msgstr "Thông tin đăng nhập DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "Cho đến ngày được làm mới" msgstr "Cho đến ngày được làm mới"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "Tên miền bí danh" msgstr "Tên miền bí danh"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "Tên miền" msgstr "Tên miền"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -88,31 +101,37 @@ msgstr ""
"tiếp theo sẽ là tên thay thế. Lưu ý rằng tất cả các tên miền phải trỏ đến bộ " "tiếp theo sẽ là tên thay thế. Lưu ý rằng tất cả các tên miền phải trỏ đến bộ "
"định tuyến trong DNS." "định tuyến trong DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 bit" msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 bit" msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "Tài khoản email phải được kết hợp với chìa khóa của tài khoản." msgstr "Tài khoản email phải được kết hợp với chìa khóa của tài khoản."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "Kích hoạt nhật ký bug" msgstr "Kích hoạt nhật ký bug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "Kích Hoạt" msgstr "Kích Hoạt"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "Các cài đặt chung" msgstr "Các cài đặt chung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -124,31 +143,78 @@ msgstr ""
msgid "Grant UCI access for luci-app-acme" msgid "Grant UCI access for luci-app-acme"
msgstr "Cấp quyền truy cập cho luci-app-acme" msgstr "Cấp quyền truy cập cho luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "Kích thước khóa" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "Kích thước khóa cho chứng chỉ được tạo." msgstr "Kích thước khóa cho chứng chỉ được tạo."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Kích thước khóa"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA kích thước 2048 bits" msgstr "RSA kích thước 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA kích thước 3072 bits" msgstr "RSA kích thước 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA kích thước 4096 bits" msgstr "RSA kích thước 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "Biệt lập" msgstr "Biệt lập"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -160,7 +226,7 @@ msgstr ""
"sẽ cho phép bạn sử dụng API DNS của nhà cung cấp DNS của bạn để cấp chứng " "sẽ cho phép bạn sử dụng API DNS của nhà cung cấp DNS của bạn để cấp chứng "
"chỉ." "chỉ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -170,7 +236,7 @@ msgstr ""
"acmesh-official/acme.sh/wiki/DNS-alias-mode để biết chi tiết về quy trình " "acmesh-official/acme.sh/wiki/DNS-alias-mode để biết chi tiết về quy trình "
"này. LUCI chỉ hỗ trợ một bí danh thách thức cho mỗi chứng chỉ." "này. LUCI chỉ hỗ trợ một bí danh thách thức cho mỗi chứng chỉ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -182,7 +248,7 @@ msgstr ""
"mà mỗi API yêu cầu. Thêm nhiều mục vào đây ở định dạng biến hệ vỏ KEY=VAL để " "mà mỗi API yêu cầu. Thêm nhiều mục vào đây ở định dạng biến hệ vỏ KEY=VAL để "
"cung cấp nhiều biến thông tin xác thực." "cung cấp nhiều biến thông tin xác thực."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -192,7 +258,11 @@ msgstr ""
"acmesh-official/acme.sh/wiki/DNS-alias-mode để biết chi tiết về quy trình " "acmesh-official/acme.sh/wiki/DNS-alias-mode để biết chi tiết về quy trình "
"này. LUCI chỉ hỗ trợ một miền thử thách cho mỗi chứng chỉ." "này. LUCI chỉ hỗ trợ một miền thử thách cho mỗi chứng chỉ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -208,7 +278,11 @@ msgstr ""
"Sau khi được định cấu hình, việc cấp chứng chỉ có thể mất một lúc. Kiểm tra " "Sau khi được định cấu hình, việc cấp chứng chỉ có thể mất một lúc. Kiểm tra "
"nhật ký để biết tiến độ và bất kỳ lỗi nào." "nhật ký để biết tiến độ và bất kỳ lỗi nào."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -224,56 +298,31 @@ msgstr ""
"nhất hỗ trợ chứng chỉ ký tự đại diện. Sử dụng chế độ này yêu cầu phải cài " "nhất hỗ trợ chứng chỉ ký tự đại diện. Sử dụng chế độ này yêu cầu phải cài "
"đặt gói acme-dnsapi." "đặt gói acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"Cập nhật cấu hình nginx với chứng chỉ này sau khi được cấp (chỉ chọn chứng "
"chỉ này cho một chứng chỉ). Nginx phải hỗ trợ ssl, nếu không nó sẽ không "
"khởi động vì nó cần được biên dịch với hỗ trợ ssl để sử dụng các tùy chọn "
"chứng chỉ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"Cập nhật cấu hình uhttpd với chứng chỉ này sau khi được cấp (chỉ chọn tùy "
"chọn này cho một chứng chỉ). Cũng có sẵn luci-app-uhttpd để định cấu hình "
"uhttpd từ giao diện LuCI."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Sử dụng tùy chỉnh nhà cung cấp chứng chỉ thay cho Let's Encrypt." msgstr "Sử dụng tùy chỉnh nhà cung cấp chứng chỉ thay cho Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "Sử dụng cho nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "Sử dụng cho uhttpd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Use staging server" msgid "Use staging server"
msgstr "Sử dụng máy chủ tạm" msgstr "Sử dụng máy chủ tạm"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "Phương thức thẩm định" msgstr "Phương thức thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "" msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Đường dẫn Webroot" msgstr "Đường dẫn Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -282,3 +331,6 @@ msgstr ""
"Thư mục gốc của máy chủ web. Đặt cái này thành gốc tài liệu máy chủ web để " "Thư mục gốc của máy chủ web. Đặt cái này thành gốc tài liệu máy chủ web để "
"chạy Acme ở chế độ gốc web. Máy chủ web phải có thể truy cập được từ " "chạy Acme ở chế độ gốc web. Máy chủ web phải có thể truy cập được từ "
"internet trên cổng 80." "internet trên cổng 80."
#~ msgid "ACME certs"
#~ msgstr "Các chứng chỉ ACME"

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 4.10-dev\n" "X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME 证书" msgstr "ACME 证书"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME 证书"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME 服务器 URL" msgstr "ACME 服务器 URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "电子邮件帐户" msgstr "电子邮件帐户"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "高级设置" msgstr "高级设置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "存放证书和其他状态文件的位置。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "证书配置" msgstr "证书配置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "质询别名" msgstr "质询别名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "质询验证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "自定义 ACME 证书颁发机构" msgstr "自定义 ACME 证书颁发机构"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "自定义 ACME 服务器目录 URL。" msgstr "自定义 ACME 服务器目录 URL。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API 凭证" msgstr "DNS API 凭证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS 质询验证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "续约前天数" msgstr "续约前天数"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "域名别名" msgstr "域名别名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "域名" msgstr "域名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -87,31 +100,37 @@ msgstr ""
"证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注" "证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注"
"意,所有域名都必须在路由中指向全局 DNS。" "意,所有域名都必须在路由中指向全局 DNS。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC 256 位" msgstr "ECC 256 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC 384 位" msgstr "ECC 384 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "与帐户密钥关联的电子邮件地址。" msgstr "与帐户密钥关联的电子邮件地址。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "启用调试日志记录" msgstr "启用调试日志记录"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "已启用" msgstr "已启用"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "常规设置" msgstr "常规设置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -121,31 +140,78 @@ msgstr "从 Letsencrypt 临时服务器获取证书(用于测试;证书无效)
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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "密钥长度" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "生成的证书的密钥长度(和类型)。" msgstr "生成的证书的密钥长度(和类型)。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "密钥长度"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA 2048 位" msgstr "RSA 2048 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA 3072 位" msgstr "RSA 3072 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA 4096 位" msgstr "RSA 4096 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "独立" msgstr "独立"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -155,7 +221,7 @@ msgstr ""
"独立模式将使用 acme.sh 的内置 Web 服务器来颁发证书。Webroot 模式将使用现有的 " "独立模式将使用 acme.sh 的内置 Web 服务器来颁发证书。Webroot 模式将使用现有的 "
"Web 服务器来颁发证书。DNS 模式将允许您使用 DNS 提供商的 DNS API 颁发证书。" "Web 服务器来颁发证书。DNS 模式将允许您使用 DNS 提供商的 DNS API 颁发证书。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -165,7 +231,7 @@ msgstr ""
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书" "https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书"
"只支持一个质询别名。" "只支持一个质询别名。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -176,7 +242,7 @@ msgstr ""
"acme.sh/wiki/dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变" "acme.sh/wiki/dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变"
"量格式添加多个条目,以提供多个凭据变量。" "量格式添加多个条目,以提供多个凭据变量。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -186,7 +252,11 @@ msgstr ""
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一" "github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一"
"个质询别名。" "个质询别名。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -200,7 +270,11 @@ msgstr ""
"的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和" "的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和"
"错误。" "错误。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -214,53 +288,31 @@ msgstr ""
"dnsapi。在 DNS 模式下域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书" "dnsapi。在 DNS 模式下域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书"
"的模式。使用此模式需要安装 acme-dnsapi 包。" "的模式。使用此模式需要安装 acme-dnsapi 包。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"颁发此证书后,用该证书更新 nginx 配置只能有一个证书配置选中该选项。Nginx "
"必须支持 ssl如果无法启动则必须使用ssl支持进行编译才能使用证书选项"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"签发此证书后,使用此证书更新 uhttpd 配置(只能有一个证书配置选中该选项)。也"
"可通过 LuCI 界面的 luci-app-uhttpd 来配置 uhttpd。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "使用自定义证书颁发机构代替 Let's Encrypt。" msgstr "使用自定义证书颁发机构代替 Let's Encrypt。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "用于 Nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "用于 uhttpd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "验证方式" msgstr "验证方式"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot 质询验证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webroot 文件夹" msgstr "Webroot 文件夹"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -269,11 +321,8 @@ msgstr ""
"Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。" "Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。"
"Web 服务器必须允许从互联网上使用80端口访问。" "Web 服务器必须允许从互联网上使用80端口访问。"
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "状态文件夹" #~ msgstr "ACME 证书"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "存放证书和其他状态文件的位置。"
#~ msgid "" #~ msgid ""
#~ "The credentials for the DNS API mode selected above. See https://github." #~ "The credentials for the DNS API mode selected above. See https://github."

View file

@ -10,75 +10,88 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 4.12-dev\n" "X-Generator: Weblate 4.12-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:17 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates" msgid "ACME certificates"
msgstr "ACME證書" msgstr "ACME證書"
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME certs"
msgstr "ACME"
#: 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/htdocs/luci-static/resources/view/acme.js:144 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL" msgid "ACME server URL"
msgstr "ACME 伺服器 URL" msgstr "ACME 伺服器 URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:29 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email" msgid "Account email"
msgstr "電子郵件帳號" msgstr "電子郵件帳號"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:44 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "進階設定" msgstr "進階設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:37 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "儲存憑證和其他狀態檔的位置。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config" msgid "Certificate config"
msgstr "憑證組態" msgstr "憑證組態"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:124 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias" msgid "Challenge Alias"
msgstr "Challenge 別名" msgstr "Challenge 別名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:43 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Challenge Validation"
msgstr "Challenge 驗證"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Custom ACME CA" msgid "Custom ACME CA"
msgstr "自訂 ACME CA" msgstr "自訂 ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:145 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL." msgid "Custom ACME server directory URL."
msgstr "自訂 ACME 伺服器的 URL。" msgstr "自訂 ACME 伺服器的 URL。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:96 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS" msgid "DNS"
msgstr "DNS" msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:107 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API" msgid "DNS API"
msgstr "DNS API" msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:116 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials" msgid "DNS API credentials"
msgstr "DNS API 憑證" msgstr "DNS API 憑證"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:151 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Challenge 驗證"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal" msgid "Days until renewal"
msgstr "更新前的天數" msgstr "更新前的天數"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:131 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias" msgid "Domain Alias"
msgstr "網域別名" msgstr "網域別名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:65 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names" msgid "Domain names"
msgstr "網域名稱" msgstr "網域名稱"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:66 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
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 "
@ -87,33 +100,39 @@ msgstr ""
"憑證包含的網域名稱;第一個域名將作為「主體名稱」,其他則為「主體備用名稱」。" "憑證包含的網域名稱;第一個域名將作為「主體名稱」,其他則為「主體備用名稱」。"
"請注意:所有域名都必須在全域 DNS 中解析為路由器的 IP 位址。" "請注意:所有域名都必須在全域 DNS 中解析為路由器的 IP 位址。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:60 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits" msgid "ECC 256 bits"
msgstr "ECC256 位元)" msgstr "ECC256 位元)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:61 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits" msgid "ECC 384 bits"
msgstr "ECC384 位元)" msgstr "ECC384 位元)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:30 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key." msgid "Email address to associate with account key."
msgstr "" msgstr ""
"與「ACME 帳號金鑰」關聯的電子郵件位址;其用於接收 ACME CA 寄送的憑證過期通知" "與「ACME 帳號金鑰」關聯的電子郵件位址;其用於接收 ACME CA 寄送的憑證過期通知"
"電子郵件。" "電子郵件。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:34 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging" msgid "Enable debug logging"
msgstr "啟用除錯日誌記錄" msgstr "啟用除錯日誌記錄"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled" msgid "Enabled"
msgstr "啟用" msgstr "啟用"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:42 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings" msgid "General Settings"
msgstr "一般設定" msgstr "一般設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:50 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
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)."
@ -123,31 +142,78 @@ msgstr "從 Let's Encrypt 臨時伺服器取得憑證(僅供測試用途,憑
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/htdocs/luci-static/resources/view/acme.js:55 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid "Key size" msgid ""
msgstr "金鑰大小" "If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate." msgid "Key size (and type) for the generated certificate."
msgstr "產生憑證的金鑰大小(和型別)。" msgstr "產生憑證的金鑰大小(和型別)。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "金鑰大小"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits" msgid "RSA 2048 bits"
msgstr "RSA2048 位元)" msgstr "RSA2048 位元)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:58 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits" msgid "RSA 3072 bits"
msgstr "RSA3072 位元)" msgstr "RSA3072 位元)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits" msgid "RSA 4096 bits"
msgstr "RSA4096 位元)" msgstr "RSA4096 位元)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:94 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone" msgid "Standalone"
msgstr "獨立" msgstr "獨立"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:91 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid "" msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a " "Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a " "certificate. Webroot mode will use an existing webserver to issue a "
@ -158,7 +224,7 @@ msgstr ""
"用現存的 Web 伺服器「DNS 模式」允許您使用 DNS 服務提供者的 DNS API 來頒發憑" "用現存的 Web 伺服器「DNS 模式」允許您使用 DNS 服務提供者的 DNS API 來頒發憑"
"證。" "證。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:125 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
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 "
@ -168,7 +234,7 @@ msgstr ""
"acme.sh/wiki/DNS-alias-mode 以獲得行程的詳細資訊。LuCI 僅支援每個憑證擁有唯" "acme.sh/wiki/DNS-alias-mode 以獲得行程的詳細資訊。LuCI 僅支援每個憑證擁有唯"
"一 Challenge 別名。" "一 Challenge 別名。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:117 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
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 "
@ -179,7 +245,7 @@ msgstr ""
"wiki/dnsapi 以獲得每個 API 所需的憑證格式。要提供多個憑證變數,請輸入格式為 " "wiki/dnsapi 以獲得每個 API 所需的憑證格式。要提供多個憑證變數,請輸入格式為 "
"KEY=VAL 的多個項目。" "KEY=VAL 的多個項目。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:132 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
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 "
@ -189,7 +255,11 @@ msgstr ""
"wiki/DNS-alias-mode 以獲得該行程的詳細資訊。LuCI 僅支援每個憑證擁有唯一網域別" "wiki/DNS-alias-mode 以獲得該行程的詳細資訊。LuCI 僅支援每個憑證擁有唯一網域別"
"名。" "名。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:18 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
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 "
@ -203,7 +273,11 @@ msgstr ""
"Let's Encrypt 頒發的憑證。請注意:憑證中的域名必須指向路由器公共 IP 位址。配" "Let's Encrypt 頒發的憑證。請注意:憑證中的域名必須指向路由器公共 IP 位址。配"
"置完成後憑證的頒發需要一段時間,請檢視日誌來取得其進展和任何錯誤。" "置完成後憑證的頒發需要一段時間,請檢視日誌來取得其進展和任何錯誤。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:108 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
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/"
@ -217,54 +291,31 @@ msgstr ""
"單。在DNS 模式下域名不必解析為路由器 IP 位址,該模式也是支援「萬用字元憑證」" "單。在DNS 模式下域名不必解析為路由器 IP 位址,該模式也是支援「萬用字元憑證」"
"的唯一模式。請注意:必須安裝 acme-dnsapi 套件後才能使用該模式。" "的唯一模式。請注意:必須安裝 acme-dnsapi 套件後才能使用該模式。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:82 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid ""
"Update the nginx config with this certificate once issued (only select this "
"for one certificate). Nginx must support ssl, if not it won't start as it "
"needs to be compiled with ssl support to use cert options"
msgstr ""
"頒發後使用該憑證來更新 Nginx 組態(申請多個憑證時,只能選擇其中一個啟用此選"
"項Nginx 必須支援 SSL因為它需要編譯的 SSL 支援才能使用憑證,否則將無法啟"
"動"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid ""
"Update the uhttpd config with this certificate once issued (only select this "
"for one certificate). Is also available luci-app-uhttpd to configure uhttpd "
"form the LuCI interface."
msgstr ""
"頒發後使用該憑證來更新 uHTTPd 組態(申請多個憑證時,只能選擇其中一個啟用此選"
"項);您也可以使用 luci-app-uhttpd 的 LuCI 介面來配置 uHTTPd。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:139
msgid "Use a custom CA instead of Let's Encrypt." msgid "Use a custom CA instead of Let's Encrypt."
msgstr "使用自訂 CA 代替 Let's Encrypt。" msgstr "使用自訂 CA 代替 Let's Encrypt。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use for nginx"
msgstr "用於 Nginx"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Use for uhttpd"
msgstr "用於 uHTTPd"
#: 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/htdocs/luci-static/resources/view/acme.js:90 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method" msgid "Validation method"
msgstr "驗證方法" msgstr "驗證方法"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:95 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot" msgid "Webroot"
msgstr "Webroot" msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:99 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Challenge 驗證"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory" msgid "Webroot directory"
msgstr "Webroot 目錄" msgstr "Webroot 目錄"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:100 #: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
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 "
@ -273,8 +324,5 @@ msgstr ""
"Web 伺服器根目錄;設定 Web 伺服器文件的根目錄以在「Webroot 模式」下執行 " "Web 伺服器根目錄;設定 Web 伺服器文件的根目錄以在「Webroot 模式」下執行 "
"ACME。Web 伺服器的 80 埠必須允許從 Internet 存取。" "ACME。Web 伺服器的 80 埠必須允許從 Internet 存取。"
#~ msgid "State directory" #~ msgid "ACME certs"
#~ msgstr "狀態目錄" #~ msgstr "ACME"
#~ msgid "Where certs and other state files are kept."
#~ msgstr "儲存憑證和其他狀態檔的位置。"

View file

@ -1,6 +1,6 @@
{ {
"admin/services/acme": { "admin/services/acme": {
"title": "ACME certs", "title": "ACME certificates",
"order": 50, "order": 50,
"action": { "action": {
"type": "view", "type": "view",

View file

@ -3,8 +3,7 @@
"description": "Grant UCI access for luci-app-acme", "description": "Grant UCI access for luci-app-acme",
"read": { "read": {
"file": { "file": {
"/usr/sbin/nginx": [ "read" ], "/etc/ssl/acme": [ "list" ]
"/usr/sbin/uhttpd": [ "read" ]
}, },
"uci": [ "acme" ] "uci": [ "acme" ]
}, },