| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
 | | import map from './en-US/map'; |  |   |  | export default { |  |   ...map, |  |   'commont.enter':'Please enter', |  |   'commont.select':'Please select', |  |   'common.submit':'Submit', |  |   'common.cancel':'Cancel', |  |   'common.reset':'Reset', |  |   'common.username':'Username', |  |   'common.nickname':'Nickname', |  |   'common.sex':'Sex', |  |   'common.male':'Male', |  |   'common.female':'Female', |  |   'common.undefined':'Undefined', |  |   'common.phone':'Phone', |  |   'common.email':'Email', |  |   'common.realname':'Real Name', |  |   'common.idcard':'ID Number', |  |   'common.introduction':'Introduction', |  |   'common.execute':'Execute', |  |   'common.success':'Success', |  |   'common.fail':'Fail', |  |   'common.account.logout': 'Logout', |  |   'common.search.placeholder': 'Please enter search content', |  |   'common.loading.api.message': 'Calling Server...', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   'page.table.no': 'No', |  |   'page.add': 'Add New', |  |   'page.adding':'In process of adding', |  |   'page.add.success':'Add Successful', |  |   'page.add.fail':'Add failed, please try again!', |  |   'page.updating':'Updating now', |  |   'page.update.success':'Update Successful', |  |   'page.update.fail':'Update failed, please try again!', |  |   'page.deleting':'In process of deletion', |  |   'page.delete.success':'Deletion Successful', |  |   'page.delete.fail':'Deletion failed, please try again!', |  |   'page.exporting':'Exporting...', |  |   'page.export.success':'Exported successfully', |  |   'page.export.fail':'Export failed, please try again.', |  |   'page.edit':'Edit', |  |   'page.delete':'Delete', |  |   'page.delete.confirm':'Are you sure that you want to delete this item?', |  |   'page.export':'Export', |  |   'page.selected':' has been selected', |  |   'page.delete.batch':'Batch Delete', |  |   'page.assigning':'Assigning', |  |   'page.assign.success':'Assignment Successful', |  |   'page.assign.fail':'Assignment failed, please try again!', |  |   'page.assign.permission':'Assign', |  |   'page.permission.menu':'Menu', |  |   'page.role.assign.ec':'Expand/Collapse', |  |   'page.role.assign.sd':'Select All/Deselect All', |  |   'page.resetting':'Resetting', |  |   'page.reset.success':'Reset Successful', |  |   'page.reset.fail':'Reset failed, please try again!"', |  |   'page.reset.pwd':'Reset Pwd', |  |   'page.assign.role':'Assign Role', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   'personal.base.setting':'Basic Settings', |  |   'personal.security.setting':'Security Settings', |  |   'personal.base.button.name':'Update Basic Information', |  |   'personal.security.button.name':'Update Password', |  |   'personal.security.cur.pwd':'Current Password', |  |   'personal.security.new.pwd':'New Password', |  |   'personal.security.new.pwd.confirm':'Confirm Password', |  |   'personal.security.new.pwd.rule.length':'The new password must be 4 to 16 characters', |  |   'personal.security.new.pwd.rule.check':'The passwords entered twice do not matc', |  |   '':'', |  |   '':'', |  |   '':'', |  |   'login.success':'Login successful!', |  |   'login.failure':'Login failed, please try again!', |  |   'login.accountLogin.tab':'Account Login', |  |   'login.phoneLogin.tab':'Phone Login', |  |   'login.host':'Host:', |  |   'login.rule.host':'Please select host', |  |   'login.username':'Username:', |  |   'login.rule.username':'Please enter your username', |  |   'login.password':'Password:', |  |   'login.rule.password':'Please enter your password', |  |   'login.accountLogin.errorMessage':'Incorrect username/password', |  |   'login.rememberMe':'Remember me', |  |   'login.phoneNumber.placeholder':'Phone Number', |  |   'login.phoneNumber.required':'Please input your phone number!', |  |   'login.phoneNumber.invalid':'Phone number is invalid!', |  |   'login.captcha.placeholder':'Verification Code', |  |   'login.getCaptchaSecondText':'sec(s)', |  |   'login.phoneLogin.getVerificationCode':'Get Code', |  |   'login.captcha.required':'Please input verification code!', |  |   'login.phoneLogin.none':'Mobile phone login is not enabled', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   'system.dept':'Department', |  |   'system.role':'Role', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  |   '':'', |  | }; | 
 |