addExamineStaffLang.js
1.58 KB
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
export const messages = {
en: {
addExamineStaff: {
title: 'Add Examine Staff',
staffName: 'Staff Name',
staffNamePlaceholder: 'Required, please fill in staff name',
select: 'Select',
projects: 'Examine Projects',
staffAvatar: 'Staff Avatar',
staffPost: 'Staff Post',
staffPostPlaceholder: 'Required, please fill in staff post',
staffIntroduction: 'Staff Introduction',
staffIntroductionPlaceholder: 'Required, please fill in staff introduction'
},
selectStaff: {
title: 'Select Staff',
orgInfo: 'Organization Information',
staffInfo: 'Staff Information',
submitter: 'Submitter',
dynamicAssign: 'Dynamic Assignment'
},
uploadImage: {
imageSizeLimit: 'Image size cannot exceed 2MB',
uploadFailed: 'Upload failed'
}
},
zh: {
addExamineStaff: {
title: '添加考核员工',
staffName: '员工名称',
staffNamePlaceholder: '必填,请填写员工名称',
select: '选择',
projects: '考核项目',
staffAvatar: '员工头像',
staffPost: '员工岗位',
staffPostPlaceholder: '必填,请填写员工岗位',
staffIntroduction: '员工简介',
staffIntroductionPlaceholder: '必填,请输入员工简介'
},
selectStaff: {
title: '选择员工',
orgInfo: '组织信息',
staffInfo: '员工信息',
submitter: '提交者',
dynamicAssign: '动态指定'
},
uploadImage: {
imageSizeLimit: '图片大小不能超过2MB',
uploadFailed: '上传失败'
}
}
}