[Update] i18n添加profile/api key list en翻译

This commit is contained in:
Bai
2020-06-01 15:56:16 +08:00
parent fa1f54b30a
commit 551fc3dfaf
4 changed files with 16 additions and 9 deletions

View File

@@ -634,6 +634,9 @@
"RenameNode": ""
},
"users": {
"OldPassword": "原密码",
"NewPassword": "新密码",
"ConfirmPassword": "确认密码",
"DateJoined": "创建日期",
"MfaLevel": "多因子认证",
"IsActive": "激活",
@@ -802,4 +805,4 @@
"import": ""
},
"": ""
}
}

View File

@@ -224,8 +224,8 @@
"updateErrorMsg": "Update failed",
"updateSelected": "Update selected",
"updateSuccessMsg": "Update success",
"Disable": "",
"Enable": ""
"Disable": "Disable",
"Enable": "Enable"
},
"dashboard": {
"ActiveAsset": "Asset active",
@@ -539,7 +539,7 @@
"terminalSessionKeepDuration": "Units: days, Session, record, command will be delete if more than duration, only in database",
"terminalTelnetRegex": "ex: Last\\\\s*login|success|\\u6210\\u529f",
"userGuideUrl": "User first login update profile done redirect to it",
"ApiKeyList": ""
"ApiKeyList": "The API key is used to sign the request header. The header of each request is different. Please refer to the usage documentation"
},
"helpTip": {
"emailUserSSL": "If SMTP port is 465, may be select",
@@ -599,7 +599,7 @@
"ImportLicense": "Import license",
"AssetCount": "Asset count",
"ImportLicenseTip": "Please Import License",
"ApiKeyList": "",
"ApiKeyList": "Api key list",
"DateCreated": "",
"Create": ""
},
@@ -628,6 +628,9 @@
"RenameNode": ""
},
"users": {
"OldPassword": "Old password",
"NewPassword": "New password",
"ConfirmPassword": "Confirm password",
"Account": "Account",
"Authentication": "Account",
"Email": "Email",

View File

@@ -46,7 +46,8 @@ export default {
width: '80px'
},
date_created: {
label: this.$t('setting.DateCreated'),
label: this.$t('common.dateCreated'),
showOverflowTooltip: true,
formatter: DateFormatter
},
actions: {

View File

@@ -32,19 +32,19 @@ export default {
fields: ['old_password', 'new_password', 'new_password_again'],
fieldsMeta: {
old_password: {
label: '原密码',
label: this.$t('users.OldPassword'),
el: {
type: 'password'
}
},
new_password: {
label: '新密码',
label: this.$t('users.NewPassword'),
el: {
type: 'password'
}
},
new_password_again: {
label: '确认密码',
label: this.$t('users.ConfirmPassword'),
el: {
type: 'password'
}