mirror of
https://github.com/certd/certd.git
synced 2026-05-16 05:07:32 +08:00
b5cc794061
- 新增监控任务执行记录页面及相关API - 添加数据库表结构及多数据库支持 - 完善国际化翻译 - 实现批量删除功能 - 优化站点监控服务逻辑
105 lines
4.1 KiB
TypeScript
105 lines
4.1 KiB
TypeScript
export default {
|
|
ipAddress: "IP地址",
|
|
ipAddressHelper: "填写则固定检查此IP,不从DNS获取域名的IP地址",
|
|
remark: "Remark",
|
|
title: "Site Certificate Monitoring",
|
|
description: "Check website certificates' expiration at 0:00 daily; reminders sent 10 days before expiration (using default notification channel);",
|
|
settingLink: "Site Monitoring Settings",
|
|
limitInfo: "Basic edition limited to 1, professional and above unlimited, current",
|
|
checkAll: "Check All",
|
|
confirmTitle: "Confirm",
|
|
confirmContent: "Confirm to trigger check for all site certificates?",
|
|
checkSubmitted: "Check task submitted",
|
|
pleaseRefresh: "Please refresh the page later to see the results",
|
|
siteName: "Site Name",
|
|
enterSiteName: "Please enter the site name",
|
|
domain: "Domain",
|
|
enterDomain: "Please enter the domain",
|
|
enterValidDomain: "Please enter a valid domain",
|
|
httpsPort: "HTTPS Port",
|
|
enterPort: "Please enter the port",
|
|
certInfo: "Certificate Info",
|
|
issuer: "Issuer",
|
|
certDomains: "Certificate Domains",
|
|
certProvider: "Issuer",
|
|
certStatus: "Certificate Status",
|
|
error: "Error",
|
|
status: {
|
|
ok: "Valid",
|
|
expired: "Expired",
|
|
},
|
|
certEffectiveTime: "Certificate Effective",
|
|
certExpiresTime: "Certificate Expiration",
|
|
remainingValidity: "Remaining Validity",
|
|
expired: "expired",
|
|
days: "days",
|
|
lastCheckTime: "Last Check Time",
|
|
disabled: "Enable/Disable",
|
|
ipCheck: "Enable IP Check",
|
|
ipCheckHelper: "Enable to check certificate expiration time on each IP (or source site domain) ",
|
|
ipSyncAuto: "Enable IP Sync Auto",
|
|
ipSyncMode: "IP Sync Mode",
|
|
ipIgnoreCoherence: "Ignore Certificate Coherence",
|
|
ipIgnoreCoherenceHelper: "Enable to ignore certificate coherence check, only check certificate expiration time",
|
|
selectRequired: "Please select",
|
|
ipCheckConfirm: "Are you sure to {status} IP check?",
|
|
ipCount: "IP Count",
|
|
checkStatus: "Check Status",
|
|
pipelineId: "Linked Pipeline ID",
|
|
certInfoId: "Certificate ID",
|
|
checkSubmittedRefresh: "Check task submitted. Please refresh later to view the result.",
|
|
ipManagement: "IP Management",
|
|
bulkImport: "Bulk Import",
|
|
basicLimitError: "Basic version allows only one monitoring site. Please upgrade to the Pro version.",
|
|
limitExceeded: "Sorry, you can only create up to {max} monitoring records. Please purchase or upgrade your plan.",
|
|
setting: {
|
|
siteMonitorSettings: "Site Monitor Settings",
|
|
notificationChannel: "Notification Channel",
|
|
setNotificationChannel: "Set the notification channel",
|
|
retryTimes: "Retry Times",
|
|
monitorRetryTimes: "Number of retry attempts for monitoring requests",
|
|
monitorCronSetting: "Monitoring Schedule",
|
|
cronTrigger: "Scheduled trigger for monitoring",
|
|
dnsServer: "DNS Server",
|
|
dnsServerHelper: "Use a custom domain name resolution server, such as: 1.1.1.1 , support multiple",
|
|
certValidDays: "Certificate Valid Days",
|
|
certValidDaysHelper: "Number of days before expiration to send a notification",
|
|
|
|
domain: {
|
|
monitorSettings: "Domain Monitor Settings",
|
|
enabled: "Enable Domain Monitor",
|
|
enabledHelper: "Enable to monitor all domain registration expiration time",
|
|
notificationChannel: "Notification Channel",
|
|
setNotificationChannel: "Set the notification channel",
|
|
willExpireDays: "Will Expire Days",
|
|
willExpireDaysHelper: "Number of days before expiration to send a notification",
|
|
monitorCronSetting: "Monitoring Schedule",
|
|
cronTrigger: "Scheduled trigger for monitoring",
|
|
},
|
|
},
|
|
cert: {
|
|
expired: "Expired",
|
|
expiring: "Expiring",
|
|
noExpired: "Not Expired",
|
|
},
|
|
history: {
|
|
title: "Monitoring Execution Records",
|
|
description: "Monitoring execution records",
|
|
resultTitle: "Status",
|
|
contentTitle: "Content",
|
|
titleTitle: "Title",
|
|
jobTypeTitle: "Job Type",
|
|
startAtTitle: "Start Time",
|
|
endAtTitle: "End Time",
|
|
jobResultTitle: "Result",
|
|
jobResult: {
|
|
done: "Done",
|
|
start: "Start",
|
|
},
|
|
jobType: {
|
|
domainExpirationCheck: "Domain Expiration Check",
|
|
siteCertMonitor: "Site Certificate Monitor",
|
|
},
|
|
},
|
|
};
|