Blame view

src/components/owner/addOwnerMemberLang.js 2.45 KB
c85e0853   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
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
79
80
  export default {
    en: {
      addOwnerMember: {
        title: 'Add Member',
        personRole: 'Person Role',
        name: 'Name',
        link: 'Phone',
        sex: 'Gender',
        concactLink: 'Alternate Phone',
        address: 'Address',
        idCard: 'ID Card',
        remark: 'Remark',
        photo: 'Photo',
        uploadPhoto: 'Upload Photo',
        placeholder: {
          personRole: 'Required, please select person role',
          name: 'Required, please enter name',
          link: 'Required, please enter phone number',
          sex: 'Required, please select gender',
          concactLink: 'Optional, please enter alternate phone',
          address: 'Optional, please enter address',
          idCard: 'Optional, please enter ID card',
          remark: 'Optional, please enter remark'
        },
        role: {
          tenant: 'Tenant',
          family: 'Family Member',
          staff: 'Company Staff',
          other: 'Other'
        },
        validate: {
          nameLength: 'Name length must be between 2 and 64 characters',
          phoneFormat: 'Invalid phone number format',
          idCardFormat: 'Invalid ID card format',
          remarkLength: 'Remark length cannot exceed 200 characters',
          photoSize: 'Photo size cannot exceed 2MB'
        },
        uploadFailed: 'Photo upload failed'
      }
    },
    zh: {
      addOwnerMember: {
        title: '添加成员',
        personRole: '人员角色',
        name: '客户名称',
        link: '联系手机',
        sex: '性别',
        concactLink: '备用手机',
        address: '地址',
        idCard: '身份证',
        remark: '备注',
        photo: '照片',
        uploadPhoto: '上传照片',
        placeholder: {
          personRole: '必填,请选择人员角色',
          name: '必填,请填写客户名称',
          link: '必填,请填写联系方式',
          sex: '必填,请选择性别',
          concactLink: '可选,请填写备用手机',
          address: '可填,请填写地址',
          idCard: '可选,请填写身份证',
          remark: '可填,请填写备注'
        },
        role: {
          tenant: '租客',
          family: '家庭成员',
          staff: '公司员工',
          other: '其他'
        },
        validate: {
          nameLength: '姓名长度必须在2位至64位',
          phoneFormat: '手机号格式错误',
          idCardFormat: '身份证格式不对',
          remarkLength: '备注长度不能超过200位',
          photoSize: '图片大小不能超过2MB'
        },
        uploadFailed: '照片上传失败'
      }
    }
  }