Blame view

src/views/mall/shopCommunityLang.js 1.29 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
  export const messages = {
    en: {
      shopCommunity: {
        search: {
          title: 'Search Conditions',
          shopName: 'Shop Name',
          communityName: 'Community Name',
          state: 'Status'
        },
        list: {
          title: 'Community Shops'
        },
        table: {
          communityId: 'Community ID',
          communityName: 'Community Name',
          shopName: 'Shop Name',
          createTime: 'Entry Time',
          startTime: 'Start Time',
          endTime: 'End Time',
          state: 'Status'
        },
        state: {
          passed: 'Approved',
          rejected: 'Rejected'
        },
        fetchError: 'Failed to fetch shop community data'
      }
    },
    zh: {
      shopCommunity: {
        search: {
          title: '查询条件',
          shopName: '店铺名称',
          communityName: '小区名称',
          state: '状态'
        },
        list: {
          title: '小区商铺'
        },
        table: {
          communityId: '小区编码',
          communityName: '小区名称',
          shopName: '商铺名称',
          createTime: '入驻时间',
          startTime: '开始时间',
          endTime: '结束时间',
          state: '状态'
        },
        state: {
          passed: '审核通过',
          rejected: '审核不通过'
        },
        fetchError: '获取小区商铺数据失败'
      }
    }
  }