Blame view

src/views/system/systemInfoManageLang.js 1.3 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
  export const messages = {
    en: {
      systemInfo: {
        title: 'System Configuration',
        editTitle: 'Edit System Configuration',
        systemTitle: 'System Title',
        subSystemTitle: 'Sub System Title',
        systemSimpleTitle: 'System Simple Title',
        companyName: 'Company Name',
        logoUrl: 'Logo URL',
        imgUrl: 'Image URL',
        defaultCommunityId: 'Default Community ID',
        ownerTitle: 'Owner Title',
        propertyTitle: 'Property Title',
        qqMapKey: 'QQ Map Key',
        mallUrl: 'Mall URL',
        required: '{field} is required',
        maxLength: '{field} cannot exceed {length} characters',
        fetchError: 'Failed to fetch system information'
      }
    },
    zh: {
      systemInfo: {
        title: '系统配置',
        editTitle: '修改系统配置',
        systemTitle: '标题名称',
        subSystemTitle: '副标题',
        systemSimpleTitle: '简写名称',
        companyName: '公司名称',
        logoUrl: 'logo地址',
        imgUrl: '静态url',
        defaultCommunityId: '默认小区编号',
        ownerTitle: '业主标题',
        propertyTitle: '物业手机标题',
        qqMapKey: 'QQ地图key',
        mallUrl: '商城地址',
        required: '{field}不能为空',
        maxLength: '{field}不能超过{length}个字符',
        fetchError: '获取系统信息失败'
      }
    }
  }