carDetailFeeLang.js
1.45 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
41
42
43
44
45
46
47
48
49
50
51
52
export const messages = {
en: {
carDetailFee: {
createFee: 'Create Fee',
feeItem: 'Fee Item',
feeFlag: 'Fee Flag',
feeType: 'Fee Type',
amountReceivable: 'Amount Receivable',
accountingTime: 'Accounting Time',
receivablePeriod: 'Receivable Period',
remark: 'Remark',
status: 'Status',
operation: 'Operation',
previousReading: 'Previous Reading',
currentReading: 'Current Reading',
unitPrice: 'Unit Price',
additionalFee: 'Additional Fee',
fixedFee: 'Fixed Fee',
payment: 'Payment',
history: 'History',
cancel: 'Cancel',
change: 'Change',
detail: 'Detail',
paymentNotice: 'Please go to the business acceptance page for payment'
}
},
zh: {
carDetailFee: {
createFee: '创建费用',
feeItem: '费用项目',
feeFlag: '费用标识',
feeType: '费用类型',
amountReceivable: '应收金额',
accountingTime: '建账时间',
receivablePeriod: '应收时间段',
remark: '说明',
status: '状态',
operation: '操作',
previousReading: '上期度数',
currentReading: '本期度数',
unitPrice: '单价',
additionalFee: '附加费',
fixedFee: '固定费',
payment: '缴费',
history: '历史',
cancel: '取消',
change: '变更',
detail: '详情',
paymentNotice: '缴费请到业务受理页面缴费'
}
}
}