auditParkingSpaceApplyLang.js
2.58 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: {
auditParkingSpaceApply: {
applyInfo: 'Application Information',
back: 'Back',
licensePlate: 'License Plate',
carBrand: 'Car Brand',
carType: 'Car Type',
color: 'Color',
startRentTime: 'Start Rent Time',
endRentTime: 'End Rent Time',
applicant: 'Applicant',
applicantPhone: 'Applicant Phone',
applicantId: 'Applicant ID',
remark: 'Remark',
auditInfo: 'Audit Information',
auditResult: 'Audit Result',
selectResult: 'Please select audit result',
pass: 'Pass',
reject: 'Reject',
selectParkingSpace: 'Select Parking Space',
select: 'Select',
auditOpinion: 'Audit Opinion',
optional: 'Optional',
submit: 'Submit',
requiredField: 'Required field',
parkingLot: 'Parking Lot',
parkingSpace: 'Parking Space',
parkingStatus: 'Parking Status',
parkingType: 'Parking Type',
area: 'Area',
operation: 'Operation',
choose: 'Choose',
parkingLotCode: 'Parking Lot Code',
parkingSpaceCode: 'Parking Space Code',
parkingLotType: 'Parking Lot Type',
groundParking: 'Ground Parking',
undergroundParking: 'Underground Parking',
free: 'Free',
sold: 'Sold',
rented: 'Rented',
unknown: 'Unknown'
}
},
zh: {
auditParkingSpaceApply: {
applyInfo: '申请信息',
back: '返回',
licensePlate: '车牌号',
carBrand: '汽车品牌',
carType: '车辆类型',
color: '颜色',
startRentTime: '起租时间',
endRentTime: '结租时间',
applicant: '申请人',
applicantPhone: '申请人电话',
applicantId: '申请人ID',
remark: '备注',
auditInfo: '审核信息',
auditResult: '审核结果',
selectResult: '请选择审核结果',
pass: '通过',
reject: '不通过',
selectParkingSpace: '选择车位',
select: '选择',
auditOpinion: '审核意见',
optional: '选填',
submit: '提交',
requiredField: '必填',
parkingLot: '停车场',
parkingSpace: '车位',
parkingStatus: '车位状态',
parkingType: '车位类型',
area: '面积',
operation: '操作',
choose: '选择',
parkingLotCode: '停车场编码',
parkingSpaceCode: '停车位编码',
parkingLotType: '停车场类型',
groundParking: '地上停车位',
undergroundParking: '地下停车位',
free: '空闲',
sold: '已售卖',
rented: '已出租',
unknown: '未知'
}
}
}