locationManageLang.js
3.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
export const messages = {
en: {
locationManage: {
queryCondition: 'Query Conditions',
deviceLocation: 'Device Location',
enterLocationCode: 'Enter location code',
enterLocationName: 'Enter location name',
selectLocationType: 'Select location type',
locationCode: 'Location Code',
locationName: 'Location Name',
locationType: 'Location Type',
locationObject: 'Location Object',
operation: 'Operation',
add: 'Add',
edit: 'Edit',
delete: 'Delete',
confirmOperation: 'Please confirm your operation',
confirmDeleteLocation: 'Confirm to delete this location?',
selectBuilding: 'Select building',
selectUnit: 'Select unit',
selectRoom: 'Select room',
selectGuardBox: 'Select guard box',
selectParkingArea: 'Select parking area',
selectCompany: 'Select company',
selectDepartment: 'Select department',
selectOrg: 'Select organization',
selectOrgRequired: 'Please select related organization',
selectOrgFirst: 'Please select an organization first',
belongBuilding: 'Belong Building',
belongUnit: 'Belong Unit',
belongGuardBox: 'Belong Guard Box',
belongDepartment: 'Belong Department',
modifyBuilding: 'Modify Building',
modifyUnit: 'Modify Unit',
modifyGuardBox: 'Modify Guard Box',
modifyParkingLot: 'Modify Parking Lot',
community: 'Community',
building: 'Building',
unit: 'Unit',
room: 'Room',
guardBox: 'Guard Box',
department: 'Department',
parkingLot: 'Parking Lot',
buildingUnit: 'Building',
noOwner: 'No Owner',
locationNameRequired: 'Location name is required',
locationNameMaxLength: 'Location name cannot exceed 100 characters',
locationTypeRequired: 'Location type is required',
fetchError: 'Failed to fetch location data'
}
},
zh: {
locationManage: {
queryCondition: '查询条件',
deviceLocation: '设备位置',
enterLocationCode: '请输入位置编码',
enterLocationName: '请输入位置名称',
selectLocationType: '请选择位置类型',
locationCode: '位置编码',
locationName: '位置名称',
locationType: '位置类型',
locationObject: '位置对象',
operation: '操作',
add: '添加',
edit: '修改',
delete: '删除',
confirmOperation: '请确认您的操作',
confirmDeleteLocation: '确定删除该位置管理?',
selectBuilding: '请选择楼栋',
selectUnit: '请选择单元',
selectRoom: '请选择房屋',
selectGuardBox: '请选择岗亭',
selectParkingArea: '请选择停车场',
selectCompany: '请选择公司',
selectDepartment: '选择部门',
selectOrg: '选择组织',
selectOrgRequired: '必填,请填写关联组织',
selectOrgFirst: '请先选择组织',
belongBuilding: '归属楼栋',
belongUnit: '归属单元',
belongGuardBox: '归属岗亭',
belongDepartment: '归属部门',
modifyBuilding: '修改楼栋',
modifyUnit: '修改单元',
modifyGuardBox: '修改岗亭',
modifyParkingLot: '修改停车场',
community: '小区',
building: '楼栋',
unit: '单元',
room: '房屋',
guardBox: '岗亭',
department: '部门',
parkingLot: '停车场',
buildingUnit: '号楼',
noOwner: '无业主',
locationNameRequired: '位置名称不能为空',
locationNameMaxLength: '位置名称不能超过100位',
locationTypeRequired: '位置类型不能为空',
fetchError: '获取位置数据失败'
}
}
}