inspectionPlanDetailLang.js
3.95 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
export const messages = {
en: {
inspectionPlanDetail: {
title: 'Inspection Plan Detail',
planName: 'Plan Name',
planRoute: 'Plan Route',
planPeriod: 'Plan Period',
signType: 'Sign Type',
dateRange: 'Date Range',
timeRange: 'Time Range',
beforeTime: 'Before Time (min)',
creator: 'Creator',
createTime: 'Create Time',
status: 'Status',
staff: 'Staff',
route: 'Route',
point: 'Point',
task: 'Task',
detail: 'Detail',
staffName: 'Staff Name',
startTime: 'Start Time',
endTime: 'End Time',
routeList: 'Route List',
pointId: 'Point ID',
pointName: 'Point Name',
pointType: 'Point Type',
pointLocation: 'Location',
pointTimeRange: 'Time Range',
sortNumber: 'Sort Number',
operation: 'Operation',
choosePoint: 'Choose Inspection Point',
pointNamePlaceholder: 'Enter point name',
deletePointConfirm: 'Are you sure to delete this inspection point?',
editPoint: 'Edit Inspection Point',
startTimePlaceholder: 'Select start time',
endTimePlaceholder: 'Select end time',
sortNumberPlaceholder: 'Enter sort number',
startTimeRequired: 'Start time is required',
endTimeRequired: 'End time is required',
sortNumberRequired: 'Sort number is required',
sortNumberMustBeNumber: 'Sort number must be a number',
choosePointWarning: 'Please select at least one inspection point',
taskList: 'Task List',
taskDetailId: 'Task Detail ID',
taskStatus: 'Task Status',
planUser: 'Plan User',
actualUser: 'Actual User',
signStatus: 'Sign Status',
pointStatus: 'Point Status',
inspectionDesc: 'Description',
inspectionPhoto: 'Photos',
planTimeRange: 'Plan Time',
actualTime: 'Actual Time',
searchPlanUser: 'Search by user',
searchStartTime: 'Start time',
searchEndTime: 'End time'
}
},
zh: {
inspectionPlanDetail: {
title: '巡检计划详情',
planName: '计划名称',
planRoute: '计划路线',
planPeriod: '计划周期',
signType: '签到方式',
dateRange: '日期范围',
timeRange: '时间范围',
beforeTime: '任务提前(分钟)',
creator: '制定人',
createTime: '制定时间',
status: '状态',
staff: '巡检人员',
route: '巡检路线',
point: '巡检点',
task: '巡检任务',
detail: '巡检明细',
staffName: '巡检人员',
startTime: '开始时间',
endTime: '结束时间',
routeList: '路线列表',
pointId: '巡检点ID',
pointName: '巡检点名称',
pointType: '巡检点类型',
pointLocation: '巡检位置',
pointTimeRange: '时间范围',
sortNumber: '排序',
operation: '操作',
choosePoint: '选择巡检点',
pointNamePlaceholder: '输入巡检点名称',
deletePointConfirm: '确定删除该巡检点吗?',
editPoint: '修改巡检点',
startTimePlaceholder: '请填写开始时间',
endTimePlaceholder: '请填写结束时间',
sortNumberPlaceholder: '请填写排序值',
startTimeRequired: '开始时间不能为空',
endTimeRequired: '结束时间不能为空',
sortNumberRequired: '排序不能为空',
sortNumberMustBeNumber: '顺序必须是数字',
choosePointWarning: '请选择巡检点',
taskList: '任务列表',
taskDetailId: '任务详情ID',
taskStatus: '任务状态',
planUser: '计划巡检人',
actualUser: '实际巡检人',
signStatus: '实际签到状态',
pointStatus: '巡检点状态',
inspectionDesc: '巡检情况',
inspectionPhoto: '巡检照片',
planTimeRange: '计划时间',
actualTime: '实际巡检时间',
searchPlanUser: '请输入巡检人',
searchStartTime: '实际巡检开始时间',
searchEndTime: '实际巡检结束时间'
}
}
}