simplifyNotepadManageLang.js
2.55 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
export const messages = {
en: {
simplifyNotepadManage: {
title: 'Owner Feedback',
back: 'Back',
register: 'Register',
type: 'Type',
room: 'Room',
contact: 'Contact',
phone: 'Phone',
status: 'Status',
recordTime: 'Record Time',
registrant: 'Registrant',
content: 'Content',
operation: 'Operation',
completed: 'Completed',
following: 'Following',
transferred: 'Transferred to repair',
follow: 'Follow up',
progress: 'Progress',
transferRepair: 'Transfer to repair',
repairDetail: 'Repair Detail',
edit: 'Edit',
delete: 'Delete',
tip: 'Tip: Please register at the business acceptance page'
},
addNotepad: {
title: 'Register',
room: 'Room',
contact: 'Contact',
phone: 'Phone',
type: 'Type',
content: 'Content',
roomRequired: 'Room is required',
contactRequired: 'Contact is required',
phoneRequired: 'Phone is required',
phoneFormat: 'Invalid phone format',
typeRequired: 'Type is required',
contentRequired: 'Content is required',
contentMaxLength: 'Content cannot exceed 256 characters',
typePlaceholder: 'Please select feedback type',
contentPlaceholder: 'Please enter content'
},
},
zh: {
simplifyNotepadManage: {
title: '业主反馈',
back: '返回',
register: '登记',
type: '类型',
room: '房屋',
contact: '联系人',
phone: '联系电话',
status: '状态',
recordTime: '记录时间',
registrant: '登记人',
content: '登记内容',
operation: '操作',
completed: '完成',
following: '跟进中',
transferred: '已转报修单',
follow: '跟进',
progress: '进度',
transferRepair: '转报修单',
repairDetail: '报修详情',
edit: '修改',
delete: '删除',
tip: '温馨提示:请到业务受理页面登记'
},
addNotepad: {
title: '登记',
room: '房屋',
contact: '联系人',
phone: '联系电话',
type: '类型',
content: '内容',
roomRequired: '房屋不能为空',
contactRequired: '联系人不能为空',
phoneRequired: '联系电话不能为空',
phoneFormat: '联系电话格式错误',
typeRequired: '类型不能为空',
contentRequired: '内容不能为空',
contentMaxLength: '内容不能超过256字符',
typePlaceholder: '请选择反馈类型',
contentPlaceholder: '请填写内容'
}
}
}