Blame view

src/views/room/editRoomLang.js 4.04 KB
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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
  export const messages = {
    en: {
      room: {
        editRoom: {
          title: 'Edit Room',
          roomNum: 'Room Number',
          layer: 'Floor',
          unit: 'Unit',
          roomType: 'Room Type',
          apartment1: 'Bedrooms',
          apartment2: 'Living Rooms',
          builtUpArea: 'Built-up Area (m²)',
          roomArea: 'Indoor Area (m²)',
          feeCoefficient: 'Fee Coefficient',
          roomRent: 'Rent',
          roomState: 'Room State',
          endTime: 'End Time',
          remark: 'Remark',
          placeholder: {
            roomNum: 'Required, please enter room number',
            layer: 'Required, please enter floor',
            unit: 'Required, please select unit',
            roomType: 'Required, please select room type',
            apartment: 'Required, please select apartment layout',
            builtUpArea: 'Required, please enter built-up area! m²',
            roomArea: 'Required, please enter indoor area! m²',
            feeCoefficient: 'Please enter fee coefficient',
            roomRent: 'Required, please enter rent',
            roomState: 'Required, please select room state',
            endTime: 'Required, please select end time',
            remark: 'Please enter remark information'
          },
          apartment1Options: {
            oneRoom: 'One Bedroom',
            twoRooms: 'Two Bedrooms',
            threeRooms: 'Three Bedrooms',
            fourRooms: 'Four Bedrooms',
            fiveRooms: 'Five Bedrooms',
            sixRooms: 'Six Bedrooms',
            sevenRooms: 'Seven Bedrooms',
            eightRooms: 'Eight Bedrooms'
          },
          apartment2Options: {
            oneHall: 'One Living Room',
            twoHalls: 'Two Living Rooms',
            threeHalls: 'Three Living Rooms',
            fourHalls: 'Four Living Rooms',
            fiveHalls: 'Five Living Rooms',
            sixHalls: 'Six Living Rooms',
            sevenHalls: 'Seven Living Rooms',
            eightHalls: 'Eight Living Rooms'
          },
          roomStateOptions: {
            occupied: 'Occupied',
            delivered: 'Delivered',
            decorated: 'Decorated',
            vacant: 'Vacant',
            decorating: 'Decorating'
          }
        }
      }
    },
    zh: {
      room: {
        editRoom: {
          title: '修改房屋',
          roomNum: '房屋编号',
          layer: '房屋楼层',
          unit: '房屋单元',
          roomType: '房屋类型',
          apartment1: '户型室',
          apartment2: '户型厅',
          builtUpArea: '建筑面积(平方)',
          roomArea: '室内面积(平方)',
          feeCoefficient: '算费系数',
          roomRent: '租金',
          roomState: '房屋状态',
          endTime: '结束时间',
          remark: '备注',
          placeholder: {
            roomNum: '必填,请填写房屋编号',
            layer: '必填,请填写房屋楼层',
            unit: '必填,请选择单元',
            roomType: '必填,请选择房屋类型',
            apartment: '必填,请选择房屋户型',
            builtUpArea: '必填,请填写房屋建筑面积! 平方',
            roomArea: '必填,请填写室内面积! 平方',
            feeCoefficient: '请填写算费系数',
            roomRent: '必填,请填写租金',
            roomState: '必填,请选择房屋状态',
            endTime: '必填,请选择结束时间',
            remark: '请填写备注信息'
          },
          apartment1Options: {
            oneRoom: '一室',
            twoRooms: '两室',
            threeRooms: '三室',
            fourRooms: '四室',
            fiveRooms: '五室',
            sixRooms: '六室',
            sevenRooms: '七室',
            eightRooms: '八室'
          },
          apartment2Options: {
            oneHall: '一厅',
            twoHalls: '两厅',
            threeHalls: '三厅',
            fourHalls: '四厅',
            fiveHalls: '五厅',
            sixHalls: '六厅',
            sevenHalls: '七厅',
            eightHalls: '八厅'
          },
          roomStateOptions: {
            occupied: '已入住',
            delivered: '已交房',
            decorated: '已装修',
            vacant: '未入住',
            decorating: '装修中'
          }
        }
      }
    }
  }