Blame view

src/views/room/ownerCarsLang.js 793 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: {
      ownerCars: {
        title: 'Owner Cars',
        licensePlate: 'License Plate',
        licenseType: 'License Type',
        temporary: 'Temporary Car',
        carType: 'Car Type',
        color: 'Color',
        owner: 'Owner',
        parkingSpace: 'Parking Space',
        park: ' Park',
        space: ' Space',
        released: 'Space Released',
        validity: 'Validity Period'
      }
    },
    zh: {
      ownerCars: {
        title: '业主车辆',
        licensePlate: '车牌号',
        licenseType: '车牌类型',
        temporary: '临时车',
        carType: '车辆类型',
        color: '颜色',
        owner: '业主',
        parkingSpace: '车位',
        park: '车场',
        space: '车位',
        released: '车位已释放',
        validity: '有效期'
      }
    }
  }