6d21390a
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: {
carDetailTransactionCar: {
syncId: 'Sync ID',
deviceCode: 'Device Code',
objectType: 'Object Type',
objectName: 'Object Name',
command: 'Command',
status: 'Status',
remark: 'Remark',
syncTime: 'Sync Time',
operation: 'Operation',
resync: 'Resync'
}
},
zh: {
carDetailTransactionCar: {
syncId: '同步ID',
deviceCode: '设备编码',
objectType: '对象类型',
objectName: '对象名称',
command: '指令',
status: '状态',
remark: '说明',
syncTime: '同步时间',
operation: '操作',
resync: '重新同步'
}
}
}
|