Blame view

src/views/room/ownerMembersLang.js 576 Bytes
af1bcbd6   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
  export const messages = {
    en: {
      ownerMembers: {
        title: 'Owner Members',
        name: 'Name',
        sex: 'Gender',
        male: 'Male',
        female: 'Female',
        age: 'Age',
        type: 'Type',
        idCard: 'ID Card',
        contact: 'Contact',
        address: 'Address'
      }
    },
    zh: {
      ownerMembers: {
        title: '业主成员',
        name: '名称',
        sex: '性别',
        male: '男',
        female: '女',
        age: '年龄',
        type: '类型',
        idCard: '身份证',
        contact: '联系方式',
        address: '家庭住址'
      }
    }
  }