mirror of
https://github.com/certd/certd.git
synced 2026-05-17 13:57:31 +08:00
9d2937dd4b
添加同步进度对话框,展示同步任务的实时进度和状态 更新中英文翻译文件,添加相关文案 修改AGENTS.md文档中的格式化命令说明
111 lines
4.9 KiB
TypeScript
111 lines
4.9 KiB
TypeScript
export default {
|
|
domain: {
|
|
domainManager: "Domain Manager",
|
|
domainDescription: "used to auto apply for certificate", //管理域名的校验方式,用于申请证书时自动选择验证方式
|
|
domain: "Domain",
|
|
challengeType: "Challenge Type",
|
|
dnsProviderType: "DNS Provider Type",
|
|
dnsProviderAccess: "DNS Provider Access",
|
|
httpUploaderType: "HTTP Uploader Type",
|
|
httpUploaderAccess: "HTTP Uploader Access",
|
|
httpUploadRootDir: "HTTP Upload Root Dir",
|
|
disabled: "Disabled",
|
|
challengeSetting: "Challenge Setting",
|
|
gotoCnameTip: "Please go to CNAME Record Page",
|
|
fromType: "From Type",
|
|
expirationDate: "Expiration Date",
|
|
cnameManagedInCnamePage: "For CNAME mode, please manage records on the CNAME Records page.",
|
|
subdomainConfirmTitle: "Subdomain Confirmation",
|
|
subdomainConfirmContent: "{domain} appears to be a subdomain. Only delegated subdomains and free second-level subdomains need to be maintained here. Otherwise certificate application may fail. Continue?",
|
|
importFromProvider: "Import from Domain Provider",
|
|
syncExpirationDate: "Sync Domain Expiration Time",
|
|
syncTaskSubmitted: "Sync task submitted",
|
|
syncExpirationProgress: "Sync Domain Expiration Progress",
|
|
expirationMonitorSetting: "Domain Expiration Monitor Settings",
|
|
subdomainDnsHelper: "Note: In DNS validation mode, subdomains do not need to be maintained here, otherwise certificate application may be affected (except delegated subdomains or free second-level domains).",
|
|
path: "Path",
|
|
addImportTask: "Add Import Task",
|
|
refresh: "Refresh",
|
|
progress: "Progress",
|
|
operation: "Operation",
|
|
total: "Total",
|
|
current: "Current",
|
|
running: "Running",
|
|
done: "Done",
|
|
skipped: "Skipped",
|
|
failed: "Failed",
|
|
notExecuted: "Not executed",
|
|
execute: "Run",
|
|
delete: "Delete",
|
|
confirmDelete: "Confirm deletion?",
|
|
domainProvider: "Domain Provider",
|
|
domainProviderAccessType: "Domain Provider Access Type",
|
|
domainProviderAccess: "Domain Provider Access",
|
|
},
|
|
verifyPlan: {
|
|
expandTip: "Click to enlarge",
|
|
mainDomain: "Main Domain",
|
|
challengeType: "Challenge Method",
|
|
challengePlan: "Challenge Plan",
|
|
dnsType: "DNS Type",
|
|
dnsProvider: "DNS Provider",
|
|
dnsAccess: "DNS Access",
|
|
pleaseSelect: "Please select",
|
|
httpHelper: "The CA will request https://yourdomain/.well-known/acme-challenge/xxxxxx to verify domain ownership.",
|
|
dnsChallenge: "DNS Challenge",
|
|
cnameChallenge: "CNAME Challenge",
|
|
cnameProxyChallenge: "CNAME Proxy Challenge",
|
|
httpChallenge: "HTTP Challenge",
|
|
domainTitle: "Domain: {domain}",
|
|
resetStatusTooltip: "Reset validation status and validate again",
|
|
clickToValidate: "Validate",
|
|
keepCnameTitle: "Required for future automatic certificate applications",
|
|
keepCname: "Do not delete CNAME",
|
|
resetStatus: "Reset Status",
|
|
confirmResetStatus: "Are you sure you want to reset the validation status?",
|
|
hostRecord: "Host Record",
|
|
recordType: "Record Type",
|
|
setCnameRecord: "Set the CNAME record. Do not delete it after validation succeeds.",
|
|
operation: "Operation",
|
|
websiteDomain: "Website Domain",
|
|
uploadMethod: "Upload Method",
|
|
uploadAccess: "Upload Access",
|
|
websiteRootPath: "Website Root Path",
|
|
websiteRootPlaceholder: "Website root path, e.g. /www/wwwroot",
|
|
status: {
|
|
pendingCname: "Pending CNAME Setup",
|
|
validating: "Validating",
|
|
valid: "Validation Successful",
|
|
failed: "Validation Failed",
|
|
timeout: "Validation Timed Out",
|
|
},
|
|
cnameTip: {
|
|
intro: "Try a few more times. If validation still fails, troubleshoot with these steps:",
|
|
step1: "1. The DNS record should be added under {domain}.",
|
|
step2: "2. Add a CNAME record, not a TXT record.",
|
|
step3: "3. Check whether the record value is: {value}",
|
|
step4: "4. While validating, run the command below to check whether CNAME and TXT resolution are correct.",
|
|
or: "or",
|
|
step5: "5. If all checks pass, DNS propagation may be slow. Some providers can take several hours.",
|
|
},
|
|
errors: {
|
|
cnameNotValid: "The CNAME for domain {domain} has not been validated. Set the CNAME record first, then click Validate.",
|
|
wildcardNotSupportHttp: "Domain {domain} is a wildcard domain and does not support HTTP validation.",
|
|
uploadMethodRequired: "The upload method for domain {domain} is required.",
|
|
uploadAccessRequired: "The upload access for domain {domain} is required.",
|
|
websiteRootRequired: "The website root path for domain {domain} is required.",
|
|
dnsProviderRequired: "In DNS mode, the DNS type and access information for domain {domain} are required.",
|
|
},
|
|
uploader: {
|
|
aliyunOss: "Alibaba Cloud OSS",
|
|
tencentCos: "Tencent Cloud COS",
|
|
qiniuOss: "Qiniu OSS",
|
|
sshDeprecated: "SSH (deprecated, use SFTP instead)",
|
|
},
|
|
domainFrom: {
|
|
manual: "Manual",
|
|
auto: "Automatic",
|
|
},
|
|
},
|
|
};
|