Blame view

src/views/resource/storehouseManageLang.js 2.27 KB
66eb78ed   wuxw   开发采购功能
1
2
3
4
5
6
7
8
  export const messages = {
    en: {
      storehouseManage: {
        searchTitle: 'Query Conditions',
        listTitle: 'Warehouse Information',
        placeholders: {
          shName: 'Please enter warehouse name',
          shId: 'Please enter warehouse ID',
47b8eddb   wuxw   优化完成 平凉客户反馈bug
9
          isShow: 'Please select whether it is open to the public',
19bafb73   wuxw   v1.9 优化采购相关bug
10
11
          shDesc: 'Please enter warehouse description',
          selectFlow: 'Please select flow'
66eb78ed   wuxw   开发采购功能
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
        },
        options: {
          all: 'All',
          yes: 'Yes',
          no: 'No',
          noAudit: 'No audit'
        },
        buttons: {
          search: 'Search',
          reset: 'Reset',
          add: 'Add',
          edit: 'Edit',
          delete: 'Delete',
          detail: 'Details'
        },
        table: {
          shId: 'Warehouse ID',
          shName: 'Warehouse Name',
          isShow: 'Open to Public',
          allowPurchase: 'Allow Purchase',
          allowUse: 'Allow Use',
          purchaseSwitch: 'Purchase Audit',
          useSwitch: 'Use Audit',
          allocationSwitch: 'Allocation Audit',
          createTime: 'Creation Time',
          shDesc: 'Description',
          operations: 'Operations'
        },
        messages: {
          fetchError: 'Failed to fetch warehouse data'
        }
      }
    },
    zh: {
      storehouseManage: {
        searchTitle: '查询条件',
        listTitle: '仓库信息',
        placeholders: {
          shName: '请输入仓库名称',
          shId: '请输入仓库编号',
47b8eddb   wuxw   优化完成 平凉客户反馈bug
52
          isShow: '请选择是否对外开放',
19bafb73   wuxw   v1.9 优化采购相关bug
53
54
          shDesc: '请输入仓库描述',
          selectFlow: '请选择流程'
66eb78ed   wuxw   开发采购功能
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
        },
        options: {
          all: '全部',
          yes: '是',
          no: '否',
          noAudit: '不审核'
        },
        buttons: {
          search: '查询',
          reset: '重置',
          add: '添加',
          edit: '修改',
          delete: '删除',
          detail: '详情'
        },
        table: {
          shId: '仓库编号',
          shName: '仓库名称',
          isShow: '对外开放',
          allowPurchase: '允许采购',
          allowUse: '允许领用',
          purchaseSwitch: '采购审核',
          useSwitch: '领用审核',
          allocationSwitch: '调拨审核',
          createTime: '创建时间',
          shDesc: '描述',
          operations: '操作'
        },
        messages: {
          fetchError: '获取仓库数据失败'
        }
      }
    }
  }