a2547628
wuxw
运营加入房屋详情页面
|
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
|
export const messages = {
en: {
aRoomDetailCar: {
placeholderCarNum: 'Please enter license plate number',
carNum: 'License Plate',
leaseType: 'Plate Type',
tempCar: 'Temporary Car',
carType: 'Vehicle Type',
color: 'Color',
owner: 'Owner',
parkingSpace: 'Parking Space',
released: 'Released',
validity: 'Validity'
}
},
zh: {
aRoomDetailCar: {
placeholderCarNum: '请填写车牌号',
carNum: '车牌号',
leaseType: '车牌类型',
tempCar: '临时车',
carType: '车辆类型',
color: '颜色',
owner: '业主',
parkingSpace: '车位',
released: '车位已释放',
validity: '有效期'
}
}
}
|