Blame view

src/views/inspection/editMaintainancePlanLang.js 2.14 KB
daaebda8   wuxw   开发保养计划功能
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: {
      editMaintainancePlan: {
        title: 'Edit Maintenance Plan',
        planName: 'Plan Name',
        planNamePlaceholder: 'Required, please enter plan name',
        standard: 'Maintenance Standard',
        standardPlaceholder: 'Required, please select maintenance standard',
        period: 'Inspection Cycle',
        periodPlaceholder: 'Required, please select inspection cycle',
        month: 'Month',
        monthUnit: 'Month',
        day: 'Day',
        dayUnit: 'Day',
        fixedDay: 'Fixed Days',
        fixedDayPlaceholder: 'Required, please enter days',
        startDate: 'Start Date',
        startDatePlaceholder: 'Required, please select start date',
        endDate: 'End Date',
        endDatePlaceholder: 'Required, please select end date',
        selectStaff: 'Select Staff',
        saveSuccess: 'Save successfully',
        saveError: 'Save failed',
        fetchStandardError: 'Failed to get maintenance standards',
        fetchPlanError: 'Failed to get maintenance plan',
        fetchStaffError: 'Failed to get staff list'
      },
      orgTree: {
        fetchError: 'Failed to get organization tree'
      }
    },
    zh: {
      editMaintainancePlan: {
        title: '修改保养计划',
        planName: '计划名称',
        planNamePlaceholder: '必填,请填写计划名称',
        standard: '保养标准',
        standardPlaceholder: '必填,请选择保养标准',
        period: '巡检周期',
        periodPlaceholder: '必填,请选择巡检周期',
        month: '月',
        monthUnit: '月',
        day: '日',
        dayUnit: '日',
        fixedDay: '固定天数',
        fixedDayPlaceholder: '必填,请填写多少天后保养一次',
        startDate: '开始日期',
        startDatePlaceholder: '必填,请填写开始日期',
        endDate: '结束日期',
        endDatePlaceholder: '必填,请填写结束日期',
        selectStaff: '选择员工',
        saveSuccess: '保存成功',
        saveError: '保存失败',
        fetchStandardError: '获取保养标准失败',
        fetchPlanError: '获取保养计划失败',
        fetchStaffError: '获取员工列表失败'
      },
      orgTree: {
        fetchError: '获取组织树失败'
      }
    }
  }