Blame view

src/views/system/feePrintSpecManageLang.js 2.18 KB
ce5e1a2a   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
63
64
65
66
67
68
  export const messages = {
    en: {
      feePrintSpecManage: {
        title: 'Print Configuration',
        add: 'Add',
        edit: 'Edit',
        delete: 'Delete',
        image: 'Image',
        name: 'Name',
        spec: 'Specification',
        code: 'Code',
        operation: 'Operation',
        reminderPrint: 'Reminder Print',
        receiptPrint: 'Receipt Print',
        addTitle: 'Add Print Configuration',
        editTitle: 'Edit Print Configuration',
        deleteTitle: 'Delete Confirmation',
        deleteConfirm: 'Are you sure to delete this print configuration?',
        deleteSuccess: 'Delete successfully',
        deleteFailed: 'Delete failed',
        addSuccess: 'Add successfully',
        addFailed: 'Add failed',
        editSuccess: 'Edit successfully',
        editFailed: 'Edit failed',
        fetchError: 'Failed to fetch data',
        specPlaceholder: 'Please select specification',
        namePlaceholder: 'Please enter name',
        contentPlaceholder: 'Optional, please enter content',
        specRequired: 'Specification is required',
        nameRequired: 'Name is required',
        nameMaxLength: 'Name cannot exceed 128 characters',
        content: 'Content'
      }
    },
    zh: {
      feePrintSpecManage: {
        title: '打印配置信息',
        add: '添加',
        edit: '修改',
        delete: '删除',
        image: '图片',
        name: '名称',
        spec: '规格',
        code: '编码',
        operation: '操作',
        reminderPrint: '催缴打印说明',
        receiptPrint: '收据打印说明',
        addTitle: '添加打印配置',
        editTitle: '修改打印配置',
        deleteTitle: '删除确认',
        deleteConfirm: '确定删除打印配置吗?',
        deleteSuccess: '删除成功',
        deleteFailed: '删除失败',
        addSuccess: '添加成功',
        addFailed: '添加失败',
        editSuccess: '修改成功',
        editFailed: '修改失败',
        fetchError: '获取数据失败',
        specPlaceholder: '请选择规格',
        namePlaceholder: '请输入名称',
        contentPlaceholder: '选填,请输入内容',
        specRequired: '规格不能为空',
        nameRequired: '名称不能为空',
        nameMaxLength: '名称不能超过128个字符',
        content: '内容'
      }
    }
  }