adminInspectionPlanLang.js
2.42 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
export const messages = {
en: {
adminInspectionPlan: {
search: {
title: 'Search Conditions',
inspectionPlanId: 'Please enter plan ID',
inspectionPlanName: 'Please enter plan name',
staffName: 'Please enter inspector',
state: 'Please select status'
},
list: {
title: 'Inspection Plan'
},
table: {
planName: 'Plan Name',
communityName: 'Community Name',
inspectionRoute: 'Plan Route',
planPeriod: 'Plan Period',
signType: 'Sign Type',
dateRange: 'Date Range',
timeRange: 'Time Range',
beforeTime: 'Before Time (minutes)',
creator: 'Creator',
createTime: 'Create Time',
state: 'Status',
inspectionStaff: 'Inspection Staff'
},
tip: {
ensureValid: 'Please ensure the plan start time and end time are valid time ranges and inspectors are set, otherwise inspection tasks cannot be generated'
},
community: {
all: 'All Communities'
},
error: {
fetchListFailed: 'Failed to fetch inspection plan list',
fetchCommunityFailed: 'Failed to fetch community list',
fetchStateFailed: 'Failed to fetch status options'
}
}
},
zh: {
adminInspectionPlan: {
search: {
title: '查询条件',
inspectionPlanId: '请输入计划ID',
inspectionPlanName: '请输入计划名称',
staffName: '请输入巡检人',
state: '请选择状态'
},
list: {
title: '巡检计划'
},
table: {
planName: '计划名称',
communityName: '小区名称',
inspectionRoute: '计划路线',
planPeriod: '计划周期',
signType: '签到方式',
dateRange: '日期范围',
timeRange: '时间范围',
beforeTime: '任务提前(分钟)',
creator: '制定人',
createTime: '制定时间',
state: '状态',
inspectionStaff: '巡检人员'
},
tip: {
ensureValid: '请确保计划开始时间和计划结束时间是有效时间范围,并且设置了巡检人,不然无法生成巡检任务'
},
community: {
all: '全部小区'
},
error: {
fetchListFailed: '获取巡检计划列表失败',
fetchCommunityFailed: '获取小区列表失败',
fetchStateFailed: '获取状态选项失败'
}
}
}
}