complaintTypeLang.js
1.43 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: {
complaintType: {
title: 'Complaint Type',
add: 'Add',
typeName: 'Type Name',
notifyWay: 'Notification Method',
sms: 'SMS',
wechat: 'WeChat',
wechatWorkLicense: 'WeChat + Work License',
appraiseReply: 'Evaluation Reply',
autoReply: 'Auto Reply',
manualReply: 'Manual Reply',
handler: 'Handler',
createTime: 'Create Time',
fetchError: 'Failed to fetch complaint types'
},
deleteComplaintType: {
confirmTitle: 'Confirm Operation',
confirmText: 'Are you sure to delete this complaint type?',
confirm: 'Confirm Delete',
cancel: 'Cancel',
success: 'Delete successfully',
error: 'Delete failed'
}
},
zh: {
complaintType: {
title: '投诉类型',
add: '添加',
typeName: '类型名称',
notifyWay: '通知方式',
sms: '短信',
wechat: '微信',
wechatWorkLicense: '微信+员工工牌',
appraiseReply: '评价回复',
autoReply: '自动回复',
manualReply: '人工回复',
handler: '处理人',
createTime: '创建时间',
fetchError: '获取投诉类型失败'
},
deleteComplaintType: {
confirmTitle: '请确认您的操作',
confirmText: '确定删除投诉类型',
confirm: '确认删除',
cancel: '点错了',
success: '删除成功',
error: '删除失败'
}
}
}