1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| import enLocale from 'element-ui/lib/locale/lang/en'
| import busEnLocale from 'el-business/src/locale/lang/en'
| export default {
| ...enLocale,
| ...busEnLocale,
| nav: {
| layoutSize: 'Layout size',
| language: 'Language',
| changePassword: 'Change password',
| logout: 'Logout',
| oldPassword: 'Old password',
| newPassword: 'New password',
| confirmPassword: 'Confirm password',
| passwordPattern:
| '8-20 characters, including at least 1 uppercase letter, lowercase letter, number, special character',
| passwordInconsistent: 'The passwords entered twice are inconsistent',
| passwordSucceeded: 'Password modification successful',
| },
| }
|
|