You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.5 KiB
123 lines
3.5 KiB
export default class English { |
|
title = 'XXX SYSTEM'; |
|
|
|
base = { |
|
color: 'Color', |
|
add: 'Add', |
|
delete: 'Delete', |
|
modify: 'Modify', |
|
stop: 'Stop', |
|
select: 'Select', |
|
refresh: 'Refresh', |
|
save: 'Save', |
|
confirm: 'Confirm', |
|
cancel: 'Cancel', |
|
loading: 'Loading...', |
|
active: 'Active', |
|
inactive: 'Inactive', |
|
key: 'Key', |
|
value: 'Value', |
|
import: 'Import', |
|
export: 'Export' |
|
}; |
|
|
|
pwd = { |
|
login: 'login', |
|
userId: 'User name', |
|
changePwd: 'Change password', |
|
pwd: 'Password', |
|
oldPwd: 'Old password', |
|
newPwd: 'New password', |
|
rePwd: 'Repeat password', |
|
plsRePwd: 'Please enter the new password again', |
|
rePwdError: 'The password is entered twice inconsistently', |
|
length: 'The password length is: {0}~{1} characters', |
|
noSpace: 'The password cannot contain spaces', |
|
required: 'The password contains at least uppercase and lowercase letters and numbers', |
|
}; |
|
|
|
head = { |
|
center: 'Personal center', |
|
logout: 'Logout', |
|
fullScreen: 'Toggle full screen', |
|
changeStyle: 'Switch themes', |
|
default: 'Default', |
|
light: 'Lignt', |
|
dark: 'Dark', |
|
language: 'Language', |
|
zh: 'Chinese', |
|
en: 'English', |
|
size: 'Size', |
|
normal: 'Normal', |
|
small: 'Small', |
|
large: 'Large', |
|
}; |
|
|
|
tool = { |
|
colorCpar: 'Color Comparator', |
|
connect: 'Desperately connected', |
|
}; |
|
|
|
rule = { |
|
pleaseEnter: 'Please enter ', |
|
notNull: 'There cannot be empty', |
|
pleaseSelect: 'Please select', |
|
formatErr: 'The input format is incorrect', |
|
int: 'Number', |
|
max: 'The max value is {0}', |
|
min: 'The min value is {0}', |
|
maxLen: 'Enter up to {0} character', |
|
minLen: 'Enter a minimum of {0} character', |
|
hexadecimal: 'Please enter hexadecimal digits', |
|
idCard: { |
|
format: 'The ID card is wrong in length or format', |
|
area: 'The ID area is illegal', |
|
birth: 'The date of birth on the ID card is illegal', |
|
error: 'The ID number is illegal', |
|
}, |
|
}; |
|
|
|
http = { |
|
unPermission: 'You do not have access yet, please contact your administrator to add it', |
|
noPermission: 'This permission is not yet open, do not access without permission', |
|
error: 'Network error', |
|
downFail: 'Download failed with network abnormality!', |
|
}; |
|
|
|
preMenu = { |
|
operator: ['Buffer', 'Config', 'Dictionary', 'Permission', 'Role', 'Status', 'Log'], |
|
}; |
|
|
|
log = { |
|
title: 'Action log list', |
|
prop: ['Sequence', 'Action user', 'Log module', 'Action type', 'Action time', 'Login IP', 'Log content'], |
|
start: 'Start time', |
|
stop: 'Stop time', |
|
}; |
|
|
|
dict = { |
|
title: 'Dictionary manage', |
|
name: ' type/dictionary', |
|
prop: ['Name', 'Code', 'Description', 'Status', 'Action'], |
|
example: ['Type name(Fuzzy queries)', 'Type code', 'Status'], |
|
delete: ['Confirm whether to delete the dictionary/dictionary type (deleting a dictionary type deletes all dictionaries under that type)?', 'Tips'], |
|
}; |
|
|
|
permission = { |
|
title: 'Permission manage', |
|
name: 'permission', |
|
parent: 'Permission parent', |
|
prop: ['Name', 'Code', 'Icon', 'Level', 'Priority', 'Status', 'Content', 'Action'], |
|
example: ['Permission code'], |
|
delete: ['Are you sure you want to remove the permission?', 'Tips'], |
|
}; |
|
|
|
buffer = { |
|
title: '缓存管理', |
|
clean: '清空失效缓存', |
|
modify: '修改有效期', |
|
prop: ['缓存值', '唯一键', '是否有效', '失效时间', '操作'], |
|
delete: ['确定要删除此条缓存吗?', '提示'], |
|
delay: ['请输入失效时间(yyyy-MM-dd HH:mm:ss)', '修改'], |
|
}; |
|
}
|
|
|