Blame view

src/views/room/ownerRoomsLang.js 841 Bytes
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
  export const messages = {
    en: {
      ownerRooms: {
        title: 'Owner Rooms',
        roomId: 'Room ID',
        layer: 'Floor',
        type: 'Type',
        area: 'Built/Indoor Area',
        rent: 'Rent',
        status: 'Room Status',
        oweFee: 'Owed Fee',
        updateDaily: 'Updated daily',
        subtotal: 'Subtotal of owed fees',
        successMessage: 'Data loaded successfully',
        errorMessage: 'Failed to load data'
      }
    },
    zh: {
      ownerRooms: {
        title: '业主房屋',
        roomId: '房屋ID',
        layer: '楼层',
        type: '类型',
        area: '建筑/室内面积',
        rent: '租金',
        status: '房屋状态',
        oweFee: '房屋欠费',
        updateDaily: '按天更新',
        subtotal: '欠费小计',
        successMessage: '数据加载成功',
        errorMessage: '加载数据失败'
      }
    }
  }