Blame view

src/views/staff/staffDetailLang.js 1.35 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
  export const messages = {
    en: {
      staffDetailInfo: {
        title: 'Staff Information',
        staffId: 'ID:',
        userName: 'Name:',
        email: 'Email:',
        tel: 'Phone:',
        sex: 'Gender:',
        male: 'Male',
        female: 'Female',
        address: 'Address:',
        relatedOrg: 'Related Organization',
        relatedRoleCommunity: 'Related Roles & Communities',
        staffPrivilege: 'Staff Privileges',
        staffTrack: 'Staff Track',
        org: 'Organization',
        fetchError: 'Failed to fetch staff details',
        fetchOrgError: 'Failed to fetch organization information',
        fetchRoleError: 'Failed to fetch role information',
        fetchPrivilegeError: 'Failed to fetch privilege information'
      }
    },
    zh: {
      staffDetailInfo: {
        title: '员工信息',
        staffId: '编号:',
        userName: '名称:',
        email: '邮箱:',
        tel: '手机:',
        sex: '性别:',
        male: '男',
        female: '女',
        address: '住址:',
        relatedOrg: '关联组织',
        relatedRoleCommunity: '关联角色及小区',
        staffPrivilege: '员工权限',
        staffTrack: '员工轨迹',
        org: '组织',
        fetchError: '获取员工详情失败',
        fetchOrgError: '获取组织信息失败',
        fetchRoleError: '获取角色信息失败',
        fetchPrivilegeError: '获取权限信息失败'
      }
    }
  }