aCarDetailApplySpaceLang.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
53
54
55
56
export const messages = {
en: {
carDetailApply: {
applyId: 'Apply ID',
carNum: 'License Plate',
parkingSpace: 'Parking Space',
parkingLot: 'Parking Lot',
space: 'Space',
none: 'None',
carBrand: 'Car Brand',
carType: 'Car Type',
color: 'Color',
startTime: 'Start Time',
endTime: 'End Time',
applicant: 'Applicant',
phone: 'Phone',
result: 'Result',
pendingReview: 'Pending Review',
pendingPayment: 'Pending Payment',
completed: 'Completed',
reviewFailed: 'Review Failed',
abnormalStatus: 'Abnormal Status',
familyCar: 'Family Car',
bus: 'Bus',
truck: 'Truck',
abnormalCar: 'Abnormal Car'
}
},
zh: {
carDetailApply: {
applyId: '申请ID',
carNum: '车牌号',
parkingSpace: '停车位',
parkingLot: '停车场',
space: '停车位',
none: '无',
carBrand: '汽车品牌',
carType: '车辆类型',
color: '颜色',
startTime: '起租时间',
endTime: '结租时间',
applicant: '申请人',
phone: '手机号',
result: '审核结果',
pendingReview: '待审核',
pendingPayment: '待缴费',
completed: '完成',
reviewFailed: '审核失败',
abnormalStatus: '状态异常',
familyCar: '家用小汽车',
bus: '客车',
truck: '货车',
abnormalCar: '异常车辆'
}
}
}