mirror of
https://github.com/certd/certd.git
synced 2026-05-17 13:57:31 +08:00
First translation step
This commit is contained in:
@@ -0,0 +1,153 @@
|
||||
export default {
|
||||
app: {
|
||||
crud: {
|
||||
i18n: {
|
||||
name: "name", city: "city", status: "status"
|
||||
}
|
||||
}
|
||||
},
|
||||
fs: {
|
||||
rowHandle: {
|
||||
title: "Operation"
|
||||
}
|
||||
},
|
||||
order: {
|
||||
confirmTitle: 'Order Confirmation',
|
||||
package: 'Package',
|
||||
description: 'Description',
|
||||
specifications: 'Specifications',
|
||||
pipeline: 'Pipeline',
|
||||
domain: 'Domain',
|
||||
deployTimes: 'Deployments',
|
||||
duration: 'Duration',
|
||||
price: 'Price',
|
||||
paymentMethod: 'Payment Method',
|
||||
free: 'Free',
|
||||
unit: {
|
||||
pieces: 'pieces',
|
||||
count: 'count',
|
||||
times: 'times',
|
||||
},
|
||||
},
|
||||
framework: {
|
||||
title: "Framework",
|
||||
home: "Home",
|
||||
},
|
||||
title: "Certificate Automation",
|
||||
pipeline: "Pipeline",
|
||||
pipelineEdit: "Edit Pipeline",
|
||||
history: "Execution History",
|
||||
certStore: "Certificate Repository",
|
||||
siteMonitor: "Site Certificate Monitor",
|
||||
settings: "Settings",
|
||||
accessManager: "Access Management",
|
||||
cnameRecord: "CNAME Record Management",
|
||||
subDomain: "Subdomain Delegation Settings",
|
||||
pipelineGroup: "Pipeline Group Management",
|
||||
openKey: "Open API Key",
|
||||
notification: "Notification Settings",
|
||||
siteMonitorSetting: "Site Monitor Settings",
|
||||
userSecurity: "Security Settings",
|
||||
userProfile: "Account Info",
|
||||
suite: "Suite",
|
||||
mySuite: "My Suite",
|
||||
suiteBuy: "Suite Purchase",
|
||||
myTrade: "My Orders",
|
||||
paymentReturn: "Payment Return",
|
||||
user: {
|
||||
greeting: "Hello",
|
||||
profile: "Account Info",
|
||||
logout: "Logout",
|
||||
},
|
||||
dashboard: {
|
||||
greeting: "Hello, {name}, welcome to 【{site}】",
|
||||
latestVersion: "Latest version: {version}",
|
||||
validUntil: "Valid until:",
|
||||
tutorialTooltip: "Click to view detailed tutorial",
|
||||
tutorialText: "Only 3 steps to automatically apply and deploy certificates",
|
||||
alertMessage: "Certificates and credentials are sensitive. Do not use untrusted online Certd services or images. Always self-host and use official release channels:",
|
||||
helpDoc: "Help Docs",
|
||||
pipelineCount: "Number of Certificate Pipelines",
|
||||
noPipeline: "You have no certificate pipelines yet",
|
||||
createNow: "Create Now",
|
||||
managePipeline: "Manage Pipelines",
|
||||
pipelineStatus: "Pipeline Status",
|
||||
recentRun: "Recent Run Statistics",
|
||||
runCount: "Run Count",
|
||||
expiringCerts: "Soon-to-Expire Certificates",
|
||||
supportedTasks: "Overview of Supported Deployment Tasks",
|
||||
},
|
||||
steps: {
|
||||
createPipeline: "Create Certificate Pipeline",
|
||||
addTask: "Add Deployment Task",
|
||||
scheduledRun: "Scheduled Run"
|
||||
},
|
||||
customPipeline: "Custom Pipeline",
|
||||
createCertdPipeline: "Create Certificate Pipeline",
|
||||
commercialCertHosting: "Commercial Certificate Hosting",
|
||||
tooltip: {
|
||||
manualUploadOwnCert: "Manually upload your own certificate for automatic deployment",
|
||||
noAutoApplyCommercialCert: "Does not automatically apply for commercial certificates",
|
||||
manualUploadOnUpdate: "Must manually upload once when the certificate is updated",
|
||||
},
|
||||
table: {
|
||||
confirmDeleteTitle: "Are you sure you want to delete?",
|
||||
confirmDeleteMessage: "This will delete all data related to the pipeline, including execution history, certificate files, and certificate repository records.",
|
||||
},
|
||||
play: {
|
||||
runPipeline: "Run Pipeline",
|
||||
confirm: "Confirm",
|
||||
confirmTrigger: "Are you sure you want to trigger the run?",
|
||||
pipelineStarted: "Pipeline has started running",
|
||||
},
|
||||
actions: {
|
||||
editPipeline: "Edit Pipeline",
|
||||
editConfigGroup: "Modify Configuration/Group",
|
||||
viewCertificate: "View Certificate",
|
||||
downloadCertificate: "Download Certificate",
|
||||
},
|
||||
fields: {
|
||||
userId: "User ID",
|
||||
pipelineName: "Pipeline Name",
|
||||
keyword: "Keyword",
|
||||
required: "This field is required",
|
||||
pipelineContent: "Pipeline Content",
|
||||
scheduledTaskCount: "Scheduled Task Count",
|
||||
deployTaskCount: "Deployment Task Count",
|
||||
remainingValidity: "Remaining Validity",
|
||||
expiryTime: "Expiry Time",
|
||||
status: "Status",
|
||||
lastRun: "Last Run",
|
||||
enabled: "Enabled",
|
||||
enabledLabel: "Enabled",
|
||||
disabledLabel: "Disabled",
|
||||
group: "Group",
|
||||
type: "Type",
|
||||
order: "Order Number",
|
||||
keepHistoryCount: "History Record Retention Count",
|
||||
keepHistoryHelper: "Number of history records to keep; excess will be deleted",
|
||||
createTime: "Creation Time",
|
||||
updateTime: "Update Time",
|
||||
triggerType: "Trigger Type",
|
||||
pipelineId: "Pipeline Id",
|
||||
},
|
||||
types: {
|
||||
certApply: "Certificate Application",
|
||||
certUpload: "Certificate Upload",
|
||||
custom: "Custom",
|
||||
},
|
||||
myPipelines: "My Pipelines",
|
||||
selectedCount: "Selected {count} items",
|
||||
batchDelete: "Batch Delete",
|
||||
batchForceRerun: "Force Rerun",
|
||||
applyCertificate: "Apply for Certificate",
|
||||
pipelineExecutionRecords: "Pipeline Execution Records",
|
||||
confirm: "Confirm",
|
||||
confirmBatchDeleteContent: "Are you sure you want to batch delete these {count} records?",
|
||||
deleteSuccess: "Delete successful",
|
||||
pleaseSelectRecords: "Please select records first",
|
||||
triggerTypes: {
|
||||
manual: "Manual Execution",
|
||||
timer: "Scheduled Execution",
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user