Blame view

src/views/mall/shopManageLang.js 2.03 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
  export const messages = {
    en: {
      shopManage: {
        search: {
          title: 'Search Conditions',
          shopName: 'Shop Name',
          storeType: 'Shop Type',
          state: 'State'
        },
        list: {
          title: 'Shop Information'
        },
        table: {
          shopLogo: 'Shop Logo',
          shopName: 'Shop Name',
          shopType: 'Shop Type',
          storeName: 'Store Name',
          storeAddress: 'Store Address',
          storeTel: 'Store Tel',
          state: 'State',
          createTime: 'Create Time'
        },
        state: {
          passed: 'Approved',
          rejected: 'Rejected'
        },
        fetchError: 'Failed to fetch shop list',
        fetchStoreTypesError: 'Failed to fetch shop types'
      },
      shopWithdraw: {
        title: 'Please confirm your operation',
        remark: 'Withdraw Remark',
        remarkPlaceholder: 'Required, please fill in the withdraw reason',
        submit: 'Confirm Withdraw',
        remarkRequired: 'Withdraw remark is required',
        success: 'Withdraw successfully',
        error: 'Withdraw failed'
      }
    },
    zh: {
      shopManage: {
        search: {
          title: '查询条件',
          shopName: '店铺名称',
          storeType: '店铺类型',
          state: '状态'
        },
        list: {
          title: '店铺信息'
        },
        table: {
          shopLogo: '店铺logo',
          shopName: '店铺名称',
          shopType: '店铺类型',
          storeName: '商家名称',
          storeAddress: '商家地址',
          storeTel: '联系电话',
          state: '店铺状态',
          createTime: '创建时间'
        },
        state: {
          passed: '审核通过',
          rejected: '审核不通过'
        },
        fetchError: '获取店铺列表失败',
        fetchStoreTypesError: '获取店铺类型失败'
      },
      shopWithdraw: {
        title: '请确认您的操作',
        remark: '撤回说明',
        remarkPlaceholder: '必填,请填写撤回意见',
        submit: '确认撤回',
        remarkRequired: '撤回说明必填',
        success: '撤回成功',
        error: '撤回失败'
      }
    }
  }