uodoComplaintsLang.js
1.73 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
export const messages = {
en: {
uodoComplaints: {
title: 'Pending Complaints',
back: 'Back',
refresh: 'Refresh',
orderNumber: 'Order Number',
complaintType: 'Complaint Type',
house: 'House',
complainant: 'Complainant',
complaintPhone: 'Complaint Phone',
complaintStatus: 'Complaint Status',
createTime: 'Create Time',
operation: 'Operation',
process: 'Process',
detail: 'Detail',
fetchError: 'Failed to fetch complaints data'
},
doingComplaint: {
title: 'Process Complaint',
description: 'Description',
required: 'Required, please fill in the reply content',
maxLength: 'Reply content exceeds 500 characters',
placeholder: 'Required, please fill in the reply content',
cancel: 'Cancel',
submit: 'Submit',
success: 'Processed successfully',
error: 'Failed to process complaint'
}
},
zh: {
uodoComplaints: {
title: '待办投诉单',
back: '返回',
refresh: '刷新',
orderNumber: '订单编号',
complaintType: '投诉类型',
house: '房屋',
complainant: '投诉人',
complaintPhone: '投诉电话',
complaintStatus: '投诉状态',
createTime: '创建时间',
operation: '操作',
process: '办理',
detail: '详情',
fetchError: '获取投诉数据失败'
},
doingComplaint: {
title: '办理投诉',
description: '说明',
required: '必填,请填写回复内容',
maxLength: '回复内容超过500个字',
placeholder: '必填,请填写回复内容',
cancel: '取消',
submit: '提交',
success: '办理成功',
error: '办理投诉失败'
}
}
}