maintainancePlanManageLang.js
2.62 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
export const messages = {
en: {
maintainancePlanManage: {
search: {
title: 'Search Conditions',
planName: 'Plan Name',
state: 'Status',
allState: 'All Status'
},
list: {
title: 'Maintenance Plan (Generate Tasks on Maintenance Day)'
},
table: {
planName: 'Plan Name',
standardName: 'Maintenance Standard',
planPeriod: 'Plan Cycle',
dateRange: 'Date Range',
machineCount: 'Equipment Count',
machine: 'Equipment',
staffCount: 'Maintenance Staff Count',
createUser: 'Creator',
createTime: 'Creation Time',
state: 'Status'
},
button: {
enable: 'Enable',
disable: 'Disable'
},
tip: 'Please ensure the plan start time and end time are valid and maintenance staff are assigned, otherwise maintenance tasks cannot be generated',
fetchError: 'Failed to fetch maintenance plans'
},
deleteMaintainancePlan: {
title: 'Please confirm your operation',
confirm: 'Are you sure to delete this maintenance plan?',
success: 'Delete successfully',
error: 'Failed to delete'
},
maintainancePlanState: {
title: 'Please confirm your operation',
confirm: 'Are you sure to',
plan: 'this maintenance plan?',
success: 'Operation successful',
error: 'Operation failed'
}
},
zh: {
maintainancePlanManage: {
search: {
title: '查询条件',
planName: '计划名称',
state: '状态',
allState: '全部状态'
},
list: {
title: '保养计划(保养日生成任务)'
},
table: {
planName: '计划名称',
standardName: '保养标准',
planPeriod: '计划周期',
dateRange: '日期范围',
machineCount: '设备数',
machine: '设备',
staffCount: '保养人数',
createUser: '制定人',
createTime: '制定时间',
state: '状态'
},
button: {
enable: '启用',
disable: '停用'
},
tip: '请确保计划开始时间和计划结束时间是有效时间范围,并且设置了保养人,不然无法生成保养任务',
fetchError: '获取保养计划失败'
},
deleteMaintainancePlan: {
title: '请确认您的操作',
confirm: '确定删除保养计划?',
success: '删除成功',
error: '删除失败'
},
maintainancePlanState: {
title: '请确认您的操作',
confirm: '确定',
plan: '保养计划?',
success: '操作成功',
error: '操作失败'
}
}
}