101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
export default {
|
|
// 语言
|
|
i18n: 'English',
|
|
hello: 'Hello',
|
|
|
|
// 通用
|
|
common: {
|
|
title: 'Core network management system',
|
|
desc: '',
|
|
loading: 'Please wait...',
|
|
tipTitle: 'Prompt',
|
|
msgSuccess: 'Success {msg}',
|
|
errorFields: 'Please fill in the required information in {num} correctly!',
|
|
ok: "Ok",
|
|
cancel: "Cancel",
|
|
search: "Search",
|
|
reset: "Reset",
|
|
addText: 'Add',
|
|
editText: 'Edit',
|
|
deleteText: 'Delete',
|
|
searchBarText: 'Search bar',
|
|
reloadText: 'Refresh',
|
|
sizeText: 'Density',
|
|
size: {
|
|
default: 'Default',
|
|
middle: 'Medium',
|
|
small: 'Compact',
|
|
},
|
|
switch: {
|
|
show: 'Show',
|
|
hide: 'Hidden',
|
|
open: 'Open',
|
|
shut: 'Shut',
|
|
launch: 'Launch',
|
|
fold: 'Fold',
|
|
},
|
|
},
|
|
|
|
// 全局页脚
|
|
globalFooter: {
|
|
help: 'Help',
|
|
privacy: 'Privacy',
|
|
term: 'Term',
|
|
},
|
|
|
|
// 校验
|
|
valid: {
|
|
userNameReg:
|
|
'The account cannot start with a number and can contain uppercase and lowercase letters, numbers, and no less than 5 digits.',
|
|
userNamePlease: 'Please enter the correct login account',
|
|
userNameHit: 'Login account',
|
|
passwordReg:
|
|
'The password should contain at least uppercase and lowercase letters, numbers, special symbols, and no less than 6 digits.',
|
|
passwordPlease: 'Please enter the correct login password',
|
|
passwordHit: 'Login password',
|
|
passwordConfirmHit: 'Confirm login password',
|
|
phoneReg: 'Incorrect phone number',
|
|
phonePlease: 'Please enter the correct phone number',
|
|
phoneHit: 'Mobile number',
|
|
codePlease: 'Please enter the correct verification code',
|
|
codeHit: 'Verification code',
|
|
codeText: 'Obtain verification code',
|
|
codeSmsSend: 'Successfully sent, please pay attention to checking the SMS',
|
|
},
|
|
|
|
// 页面
|
|
views: {
|
|
index:{
|
|
hostName:"hostName",
|
|
osInfo:"osInfo",
|
|
dbInfo:"dbInfo",
|
|
ipAddress:"ipAddress",
|
|
port:"port",
|
|
version: "version",
|
|
cpuUse: "CPU Usage",
|
|
memoryUse:"memoryUse",
|
|
capability:"capability" ,
|
|
serialNum: "serialNum",
|
|
expiryDate:"expiryDate",
|
|
},
|
|
login: {
|
|
tabPane1: 'Account password login',
|
|
tabPane2: 'Login with phone number',
|
|
registerBtn: 'Register an account',
|
|
loginBtn: 'Login',
|
|
loginSuccess: 'Login successful',
|
|
loginMethod: 'Other login methods:',
|
|
loginMethodWX: 'WeChat Scan Login',
|
|
loginMethodQQ: 'QQ Scan Code Login',
|
|
},
|
|
register: {
|
|
registerBtn: 'Register',
|
|
loginBtn: 'Log in with an existing account',
|
|
passwordErr: 'Please enter the correct confirmation password',
|
|
passwordConfirmErr: 'The two passwords entered do not match',
|
|
tipContent: 'Congratulations, {username} account registration succeeded!',
|
|
tipBtn: 'Go to login',
|
|
},
|
|
},
|
|
};
|