Blame view

src/views/project/projectLang.js 2.39 KB
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
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
  export const messages = {
    en: {
      project: {
        search: {
          title: 'Search Condition',
          placeholder: 'Please enter project name'
        },
        list: {
          title: 'Project List'
        },
        dialog: {
          addTitle: 'Add Project',
          editTitle: 'Edit Project',
          delTitle: 'Delete Project',
          cancel: 'Cancel',
          confirm: 'Confirm'
        },
        form: {
          projectName: 'Project Name',
          personName: 'Contact Person',
          personLink: 'Contact Phone',
          remark: 'Remark'
        },
        table: {
          projectId: 'Project ID',
          projectName: 'Project Name',
          personName: 'Contact Person',
          personLink: 'Contact Phone',
          createTime: 'Create Time',
          remark: 'Remark'
        },
        validate: {
          projectName: 'Please enter project name',
          personName: 'Please enter contact person',
          personLink: 'Please enter contact phone'
        },
        add: {
          success: 'Add project success'
        },
        edit: {
          success: 'Edit project success'
        },
        delete: {
          success: 'Delete project success',
          confirm: 'Are you sure to delete this project?'
        },
        fetchError: 'Failed to fetch project list'
      }
    },
    zh: {
      project: {
        search: {
          title: '查询条件',
          placeholder: '请输入项目名称'
        },
        list: {
          title: '项目列表'
        },
        dialog: {
          addTitle: '添加项目',
          editTitle: '编辑项目',
          delTitle: '删除项目',
          cancel: '取消',
          confirm: '确定'
        },
        form: {
          projectName: '项目名称',
          personName: '联系人',
          personLink: '联系电话',
          remark: '备注'
        },
        table: {
          projectId: '项目ID',
          projectName: '项目名称',
          personName: '联系人',
          personLink: '联系电话',
          createTime: '创建时间',
          remark: '备注'
        },
        validate: {
          projectName: '请输入项目名称',
          personName: '请输入联系人',
          personLink: '请输入联系电话'
        },
        add: {
          success: '添加项目成功'
        },
        edit: {
          success: '编辑项目成功'
        },
        delete: {
          success: '删除项目成功',
          confirm: '确认删除该项目吗?'
        },
        fetchError: '获取项目列表失败'
      }
    }
  }