Blame view

src/views/room/searchFloorLang.js 910 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
35
36
37
38
39
40
  export const messages = {
    en: {
      room: {
        searchFloor: {
          title: 'Building Search',
          placeholder: {
            floorId: 'Please enter building ID',
            floorName: 'Please enter building name',
            floorNum: 'Please enter building number'
          },
          table: {
            floorId: 'Building ID',
            floorName: 'Name',
            floorNum: 'Number',
            creator: 'Creator',
            actions: 'Actions'
          }
        }
      }
    },
    zh: {
      room: {
        searchFloor: {
          title: '小区楼',
          placeholder: {
            floorId: '请输入楼栋ID',
            floorName: '请输入楼栋名称',
            floorNum: '请输入楼栋编号'
          },
          table: {
            floorId: '楼ID',
            floorName: '名称',
            floorNum: '编号',
            creator: '创建人',
            actions: '操作'
          }
        }
      }
    }
  }