newOaWorkflowLang.js
4.13 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
export const messages = {
en: {
newOaWorkflow: {
processWorkOrder: 'Process Work Order',
draftProcess: 'Draft Process',
processTodo: 'Process Todo',
processDone: 'Process Done'
},
newOaWorkflowPool: {
searchTitle: 'Search Conditions',
enterApplicant: 'Please enter applicant',
enterStartTime: 'Please enter start time',
enterEndTime: 'Please enter end time',
processWorkOrder: 'Process Work Order',
applicant: 'Applicant',
status: 'Status',
createTime: 'Create Time',
operation: 'Operation',
detail: 'Detail',
flowChart: 'Flow Chart',
stateApply: 'Apply',
statePending: 'Pending',
stateReturned: 'Returned',
stateDelegate: 'Delegate',
stateCompleted: 'Completed'
},
newOaWorkflowUndo: {
searchTitle: 'Search Conditions',
enterApplicant: 'Please enter applicant',
enterStartTime: 'Please enter start time',
enterEndTime: 'Please enter end time',
todoProcess: 'Todo Process',
applicant: 'Applicant',
status: 'Status',
createTime: 'Create Time',
operation: 'Operation',
process: 'Process',
detail: 'Detail',
edit: 'Edit',
stateApply: 'Apply',
statePending: 'Pending',
stateReturned: 'Returned',
stateDelegate: 'Delegate',
stateCompleted: 'Completed'
},
newOaWorkflowFinish: {
searchTitle: 'Search Conditions',
enterApplicant: 'Please enter applicant',
enterStartTime: 'Please enter start time',
enterEndTime: 'Please enter end time',
doneProcess: 'Done Process',
applicant: 'Applicant',
status: 'Status',
createTime: 'Create Time',
operation: 'Operation',
detail: 'Detail',
stateApply: 'Apply',
statePending: 'Pending',
stateReturned: 'Returned',
stateDelegate: 'Delegate',
stateCompleted: 'Completed'
},
uploadFile: {
uploadAttachment: 'Upload Attachment',
fileSizeLimit: 'File size cannot exceed 20MB',
uploadSuccess: 'File uploaded successfully',
uploadFailed: 'File upload failed'
}
},
zh: {
newOaWorkflow: {
processWorkOrder: '流程工单',
draftProcess: '起草流程',
processTodo: '流程待办',
processDone: '流程已办'
},
newOaWorkflowPool: {
searchTitle: '查询条件',
enterApplicant: '请输入申请人',
enterStartTime: '请输入开始时间',
enterEndTime: '请输入结束时间',
processWorkOrder: '流程工单',
applicant: '申请人',
status: '状态',
createTime: '创建时间',
operation: '操作',
detail: '详情',
flowChart: '流程图',
stateApply: '申请',
statePending: '待审核',
stateReturned: '退回',
stateDelegate: '委托',
stateCompleted: '办结'
},
newOaWorkflowUndo: {
searchTitle: '查询条件',
enterApplicant: '请输入申请人',
enterStartTime: '请输入开始时间',
enterEndTime: '请输入结束时间',
todoProcess: '待办流程',
applicant: '申请人',
status: '状态',
createTime: '创建时间',
operation: '操作',
process: '办理',
detail: '详情',
edit: '编辑',
stateApply: '申请',
statePending: '待审核',
stateReturned: '退回',
stateDelegate: '委托',
stateCompleted: '办结'
},
newOaWorkflowFinish: {
searchTitle: '查询条件',
enterApplicant: '请输入申请人',
enterStartTime: '请输入开始时间',
enterEndTime: '请输入结束时间',
doneProcess: '已办流程',
applicant: '申请人',
status: '状态',
createTime: '创建时间',
operation: '操作',
detail: '详情',
stateApply: '申请',
statePending: '待审核',
stateReturned: '退回',
stateDelegate: '委托',
stateCompleted: '办结'
},
uploadFile: {
uploadAttachment: '上传附件',
fileSizeLimit: '文件大小不能超过20MB',
uploadSuccess: '文件上传成功',
uploadFailed: '文件上传失败'
}
}
}