reportNoFeeRoomLang.js
1.27 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
export const messages = {
en: {
reportNoFeeRoom: {
search: {
title: 'Search Conditions',
floor: 'Select Building',
unit: 'Select Unit',
room: 'Select Room',
ownerName: 'Owner Name',
link: 'Owner Phone'
},
list: {
title: 'No Fee Rooms',
tooltip: 'Rooms not associated with fee items'
},
table: {
index: 'No.',
floor: 'Building',
unit: 'Unit',
room: 'Room',
ownerName: 'Owner Name',
link: 'Owner Phone'
},
exportSuccess: 'Export started successfully',
exportFailed: 'Export failed'
}
},
zh: {
reportNoFeeRoom: {
search: {
title: '查询条件',
floor: '请选择楼栋',
unit: '请选择单元',
room: '请选择房屋',
ownerName: '业主名称',
link: '业主电话'
},
list: {
title: '未收费房屋',
tooltip: '未关联收费项的房屋信息'
},
table: {
index: '序号',
floor: '楼栋',
unit: '单元',
room: '房屋',
ownerName: '业主名称',
link: '业主电话'
},
exportSuccess: '导出任务已开始',
exportFailed: '导出失败'
}
}
}