Blame view

src/views/room/addRoomViewLang.js 3.89 KB
737b703c   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
  export const messages = {
    en: {
      addRoomView: {
        title: 'Add Room',
        building: 'Building',
        unit: 'Unit',
        roomNumber: 'Room Number',
        roomFloor: 'Room Floor',
        roomType: 'Room Type',
        rent: 'Rent',
        builtUpArea: 'Built-up Area (㎡)',
        roomArea: 'Room Area (㎡)',
        feeCoefficient: 'Fee Coefficient',
        roomStatus: 'Room Status',
        owner: 'Owner',
        remark: 'Remark',
        selectOwner: 'Select Owner',
        requiredRoomNumber: 'Required, please enter room number',
        requiredRoomFloor: 'Required, please enter room floor',
        requiredRent: 'Required, please enter rent',
        requiredBuiltUpArea: 'Required, please enter built-up area',
        requiredRoomArea: 'Required, please enter room area',
        requiredFeeCoefficient: 'Required, please enter fee coefficient',
        requiredOwner: 'Required, please select owner',
        optionalRemark: 'Optional, please enter remark',
        notSold: 'Not Sold',
        living: 'Living',
        delivered: 'Delivered',
        decorated: 'Decorated',
        notLived: 'Not Lived',
        decorating: 'Decorating',
        saveSuccess: 'Room added successfully',
        saveError: 'Failed to add room',
        validate: {
          roomNumRequired: 'Room number is required',
          roomNumMaxLength: 'Room number cannot exceed 64 characters',
          layerRequired: 'Room floor is required',
          builtUpAreaRequired: 'Built-up area is required',
          builtUpAreaFormat: 'Invalid built-up area format, e.g. 300.00',
          roomAreaRequired: 'Room area is required',
          roomAreaFormat: 'Invalid room area format, e.g. 300.00',
          feeCoefficientRequired: 'Fee coefficient is required',
          feeCoefficientFormat: 'Invalid fee coefficient format, e.g. 1.00',
          stateRequired: 'Room status is required',
          stateMaxLength: 'Room status cannot exceed 12 characters',
          roomSubTypeRequired: 'Room type is required',
          remarkMaxLength: 'Remark cannot exceed 200 characters'
        }
      },
737b703c   wuxw   添加房屋页面开发完成
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
    },
    zh: {
      addRoomView: {
        title: '添加房屋',
        building: '楼栋',
        unit: '单元',
        roomNumber: '房屋编号',
        roomFloor: '房屋楼层',
        roomType: '房屋类型',
        rent: '租金',
        builtUpArea: '建筑面积(平方)',
        roomArea: '室内面积(平方)',
        feeCoefficient: '算费系数',
        roomStatus: '房屋状态',
        owner: '业主',
        remark: '备注',
        selectOwner: '选择业主',
        requiredRoomNumber: '必填,请填写房屋编号',
        requiredRoomFloor: '必填,请填写房屋楼层',
        requiredRent: '必填,请填写租金',
        requiredBuiltUpArea: '必填,请填写建筑面积',
        requiredRoomArea: '必填,请填写室内面积',
        requiredFeeCoefficient: '必填,请填写算费系数',
        requiredOwner: '必填,请选择业主',
        optionalRemark: '选填,请填写备注',
        notSold: '未销售',
        living: '已入住',
        delivered: '已交房',
        decorated: '已装修',
        notLived: '未入住',
        decorating: '装修中',
        saveSuccess: '房屋添加成功',
        saveError: '房屋添加失败',
        validate: {
          roomNumRequired: '房屋编号不能为空',
          roomNumMaxLength: '房屋编号长度不能超过64位',
          layerRequired: '房屋楼层不能为空',
          builtUpAreaRequired: '建筑面积不能为空',
          builtUpAreaFormat: '建筑面积错误,如 300.00',
          roomAreaRequired: '室内面积不能为空',
          roomAreaFormat: '室内面积错误,如 300.00',
          feeCoefficientRequired: '算费系数不能为空',
          feeCoefficientFormat: '算费系数错误,如 1.00',
          stateRequired: '房屋状态不能为空',
          stateMaxLength: '房屋状态不能超过12位',
          roomSubTypeRequired: '房屋类型不能为空',
          remarkMaxLength: '备注内容不能超过200'
        }
      },
737b703c   wuxw   添加房屋页面开发完成
99
100
    }
  }