deleteOwnerRoomLang.js
2.02 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
export const messages = {
en: {
viewOwnerInfo: {
title: 'Owner Information',
ownerId: 'Owner ID',
name: 'Name',
sex: 'Gender',
age: 'Age',
idCard: 'ID Card',
link: 'Contact',
userName: 'Created By',
remark: 'Remark',
chooseOwner: 'Select Owner',
loadError: 'Failed to load owner information'
},
showOwnerRoom: {
info: 'Room Information',
propertyFee: 'Property Fee',
exitRoom: 'I want to exit the room',
shopNum: 'Shop Number',
roomNum: 'Room Number',
floor: 'Floor',
shopId: 'Shop ID',
roomId: 'Room ID',
builtUpArea: 'Built-up Area',
squareMeters: 'Square Meters',
apartmentLayout: 'Apartment Layout',
roomCount: 'Number of Rooms',
layer: 'layer'
},
ownerExitRoom: {
confirmOperation: 'Please confirm your operation',
confirmExit: 'Confirm to exit the room?',
confirmExitTip: 'After exiting, it can be sold again',
cancel: 'Cancel',
confirmExitBtn: 'Confirm Exit'
}
},
zh: {
viewOwnerInfo: {
title: '业主信息',
ownerId: '业主ID',
name: '名称',
sex: '性别',
age: '年龄',
idCard: '身份证',
link: '联系方式',
userName: '创建员工',
remark: '备注',
chooseOwner: '选择业主',
loadError: '加载业主信息失败'
},
showOwnerRoom: {
info: '房屋信息',
propertyFee: '物业费',
exitRoom: '我要退房',
shopNum: '商铺编号',
roomNum: '房屋编号',
floor: '楼层',
shopId: '商铺ID',
roomId: '房屋ID',
builtUpArea: '建筑面积',
squareMeters: '平方米',
apartmentLayout: '户型',
roomCount: '房间数',
layer: '层'
},
ownerExitRoom: {
confirmOperation: '请确认您的操作',
confirmExit: '确认是否退房?',
confirmExitTip: '退房后可以再次售卖',
cancel: '点错了',
confirmExitBtn: '确认退出'
}
}
}