2022-08-16 23:30:23 +08:00
|
|
|
export default {
|
|
|
|
commons: {
|
|
|
|
button: {
|
|
|
|
create: 'Create',
|
2022-08-29 18:44:35 +08:00
|
|
|
add: 'Add',
|
2022-08-16 23:30:23 +08:00
|
|
|
delete: 'Delete',
|
|
|
|
edit: 'Edit',
|
|
|
|
confirm: 'Confirm',
|
|
|
|
cancel: 'Cancel',
|
|
|
|
reset: 'Reset',
|
|
|
|
login: 'Login',
|
2022-08-19 18:12:12 +08:00
|
|
|
conn: 'Connect',
|
2022-08-16 23:30:23 +08:00
|
|
|
},
|
|
|
|
table: {
|
|
|
|
name: 'Name',
|
|
|
|
createdAt: 'Creation Time',
|
|
|
|
updatedAt: 'Update Time',
|
|
|
|
operate: 'Operations',
|
|
|
|
message: 'message',
|
|
|
|
},
|
|
|
|
msg: {
|
|
|
|
delete: 'This operation cannot be rolled back. Do you want to continue',
|
|
|
|
title: 'Delete',
|
|
|
|
deleteSuccess: 'Delete Success',
|
|
|
|
loginSuccess: 'Login Success',
|
|
|
|
requestTimeout: 'The request timed out, please try again later',
|
|
|
|
deleteTitle: 'Delete',
|
|
|
|
operationSuccess: 'Successful operation',
|
|
|
|
infoTitle: 'Hint',
|
|
|
|
sureLogOut: 'Are you sure you want to log out?',
|
|
|
|
createSuccess: 'Create Success',
|
|
|
|
updateSuccess: 'Update Success',
|
|
|
|
},
|
|
|
|
login: {
|
|
|
|
captchaHelper: 'Please enter the verification code',
|
|
|
|
},
|
|
|
|
rule: {
|
|
|
|
username: 'Please enter a username',
|
|
|
|
password: 'Please enter a password',
|
2022-08-18 18:51:27 +08:00
|
|
|
requiredInput: 'Please enter the required fields',
|
|
|
|
requiredSelect: 'Please select the required fields',
|
2022-08-16 23:30:23 +08:00
|
|
|
commonName: 'Support English, Chinese, numbers, .-_, length 1-30',
|
|
|
|
email: 'Email format error',
|
2022-08-18 18:51:27 +08:00
|
|
|
ip: 'Please enter the correct IP address',
|
|
|
|
port: 'Please enter the correct port',
|
2022-08-16 23:30:23 +08:00
|
|
|
},
|
2022-08-17 11:47:56 +08:00
|
|
|
res: {
|
|
|
|
paramError: 'The request failed, please try again later!',
|
|
|
|
forbidden: 'The current user has no permission',
|
|
|
|
serverError: 'Service exception',
|
|
|
|
notFound: 'The resource does not exist',
|
|
|
|
commonError: 'The request failed',
|
|
|
|
},
|
2022-08-16 23:30:23 +08:00
|
|
|
},
|
|
|
|
business: {
|
|
|
|
user: {
|
|
|
|
username: 'Username',
|
|
|
|
email: 'Email',
|
|
|
|
password: 'Password',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
menu: {
|
|
|
|
home: 'Dashboard',
|
|
|
|
demo: 'Demo',
|
|
|
|
terminal: 'Terminal',
|
|
|
|
operations: 'Operation logs',
|
|
|
|
},
|
|
|
|
home: {
|
|
|
|
welcome: 'Welcome',
|
|
|
|
},
|
|
|
|
tabs: {
|
|
|
|
more: 'More',
|
|
|
|
closeCurrent: 'Close current',
|
|
|
|
closeOther: 'Close other',
|
|
|
|
closeAll: 'Close All',
|
|
|
|
},
|
|
|
|
header: {
|
|
|
|
componentSize: 'Component size',
|
|
|
|
language: 'Language',
|
|
|
|
theme: 'theme',
|
|
|
|
layoutConfig: 'Layout config',
|
|
|
|
primary: 'primary',
|
|
|
|
darkMode: 'Dark Mode',
|
|
|
|
greyMode: 'Grey mode',
|
|
|
|
weakMode: 'Weak mode',
|
|
|
|
fullScreen: 'Full Screen',
|
|
|
|
exitFullScreen: 'Exit Full Screen',
|
|
|
|
personalData: 'Personal Data',
|
|
|
|
changePassword: 'Change Password',
|
|
|
|
logout: 'Logout',
|
|
|
|
},
|
2022-08-19 18:12:12 +08:00
|
|
|
terminal: {
|
2022-09-01 10:25:38 +08:00
|
|
|
conn: 'connection',
|
|
|
|
testConn: 'Test connection',
|
2022-09-01 16:52:58 +08:00
|
|
|
saveAndConn: 'Save and Connect',
|
2022-09-01 10:25:38 +08:00
|
|
|
connTestOk: 'Connection information available',
|
|
|
|
hostList: 'Host information',
|
|
|
|
createConn: 'Create a connection',
|
|
|
|
createGroup: 'Create a group',
|
|
|
|
expand: 'Expand all',
|
|
|
|
fold: 'All contract',
|
2022-09-01 16:52:58 +08:00
|
|
|
batchInput: 'Batch input',
|
|
|
|
quickCommand: 'quick command',
|
2022-09-01 10:25:38 +08:00
|
|
|
groupDeleteHelper:
|
|
|
|
'After the group is removed, all connections in the group will be migrated to the default group. Confirm the information',
|
2022-08-19 18:12:12 +08:00
|
|
|
addHost: 'Add Host',
|
2022-08-23 15:21:08 +08:00
|
|
|
localhost: 'Localhost',
|
2022-08-19 18:12:12 +08:00
|
|
|
name: 'Name',
|
|
|
|
port: 'Port',
|
|
|
|
user: 'User',
|
|
|
|
authMode: 'Auth Mode',
|
|
|
|
passwordMode: 'password',
|
|
|
|
keyMode: 'PrivateKey',
|
|
|
|
password: 'Password',
|
|
|
|
key: 'Private Key',
|
2022-08-23 15:21:08 +08:00
|
|
|
emptyTerminal: 'No terminal is currently connected',
|
2022-08-19 18:12:12 +08:00
|
|
|
},
|
2022-08-16 23:30:23 +08:00
|
|
|
operations: {
|
|
|
|
detail: {
|
|
|
|
users: 'User',
|
2022-08-18 18:51:27 +08:00
|
|
|
hosts: 'Host',
|
2022-09-01 10:25:38 +08:00
|
|
|
groups: 'Group',
|
|
|
|
commands: 'Command',
|
2022-08-16 23:30:23 +08:00
|
|
|
auth: 'User',
|
|
|
|
login: ' login',
|
|
|
|
logout: ' logout',
|
|
|
|
post: ' create',
|
|
|
|
put: ' update',
|
|
|
|
update: ' update',
|
|
|
|
delete: ' delete',
|
|
|
|
del: 'delete',
|
|
|
|
},
|
|
|
|
operatoin: 'operatoin',
|
|
|
|
status: 'status',
|
|
|
|
request: 'request',
|
|
|
|
response: 'response',
|
|
|
|
},
|
|
|
|
};
|