Blame view

src/views/community/CommunityLang.js 747 Bytes
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  export const messages = {
    en: {
      community: {
        addCommunity: 'Add Community',
        province: 'Province',
        city: 'City',
        district: 'District',
        communityName: 'Community Name',
        communityCode: 'Community Code',
        phone: 'Phone',
        area: 'Area(㎡)',
        startTime: 'Start Time',
        endTime: 'End Time',
        status: 'Status'
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
      }
    },
    zh: {
      community: {
        addCommunity: '添加小区',
        province: '省份',
        city: '市/州',
        district: '区/县',
        communityName: '小区名称',
        communityCode: '小区编码',
        phone: '联系电话',
        area: '面积(㎡)',
        startTime: '开始时间',
        endTime: '结束时间',
        status: '状态'
a42b3256   wuxw   HC小区管理系统前段vue版正在开发中
30
31
32
      }
    }
  }