roomContractsLang.js
1.01 KB
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: {
roomContracts: {
title: 'Room Contracts',
contractName: 'Contract Name',
contractCode: 'Contract Code',
parentContractCode: 'Parent Contract Code',
contractType: 'Contract Type',
operator: 'Operator',
amount: 'Contract Amount',
startTime: 'Start Time',
endTime: 'End Time',
createTime: 'Draft Time',
state: 'Status'
},
roomContractsDemo: {
openByOwner: 'Open by Owner',
openByRoom: 'Open by Room'
}
},
zh: {
roomContracts: {
title: '房屋合同',
contractName: '合同名称',
contractCode: '合同编号',
parentContractCode: '父合同编号',
contractType: '合同类型',
operator: '经办人',
amount: '合同金额',
startTime: '开始时间',
endTime: '结束时间',
createTime: '起草时间',
state: '状态'
},
roomContractsDemo: {
openByOwner: '按业主打开',
openByRoom: '按房屋打开'
}
}
}