adminBarrierLang.js
1.49 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
export const messages = {
en: {
adminBarrier: {
allCommunities: 'All Communities',
search: {
title: 'Search Conditions',
machineCode: 'Please enter device code',
machineName: 'Please enter device name'
},
list: {
title: 'Barrier Devices'
},
table: {
communityName: 'Community Name',
machineCode: 'Device Code',
machineName: 'Device Name',
machineIp: 'Device IP',
direction: 'Direction',
implBeanName: 'Manufacturer',
boxName: 'Box',
stateName: 'Status',
monitorName: 'Monitor',
heartbeatTime: 'Heartbeat Time',
createTime: 'Create Time'
},
direction: {
in: 'In',
out: 'Out'
}
}
},
zh: {
adminBarrier: {
allCommunities: '全部小区',
search: {
title: '查询条件',
machineCode: '请输入设备编码',
machineName: '请输入设备名称'
},
list: {
title: '道闸设备'
},
table: {
communityName: '小区名称',
machineCode: '设备编码',
machineName: '设备名称',
machineIp: '设备IP',
direction: '设备方向',
implBeanName: '道闸厂家',
boxName: '岗亭',
stateName: '状态',
monitorName: '监控',
heartbeatTime: '心跳时间',
createTime: '创建时间'
},
direction: {
in: '进',
out: '出'
}
}
}
}