communityPaymentLang.js
2.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
export const messages = {
en: {
communityPayment: {
title: 'Community Payment',
search: 'Search',
add: 'Add',
edit: 'Edit',
delete: 'Delete',
confirmDelete: 'Confirm Delete',
paymentName: 'Name',
communityName: 'Community',
paymentVendor: 'Payment Vendor',
paymentScope: 'Payment Scope',
status: 'Status',
createTime: 'Create Time',
instruction: 'Instruction',
operation: 'Operation',
communityFee: 'Community Fee',
tempParkingFee: 'Temporary Parking Fee',
specificFee: 'Specific Fee Item',
enabled: 'Enabled',
disabled: 'Disabled',
selectCommunity: 'Select Community',
selectStatus: 'Select Status',
selectVendor: 'Select Vendor',
selectScope: 'Select Scope',
selectFeeItem: 'Select Fee Item',
merchantCert: 'Merchant Certificate (.p12)',
uploadFile: 'Upload Attachment',
cancel: 'Cancel',
save: 'Save',
requiredField: 'Required field'
},
addCommunityPayment: {
title: 'Add Payment',
namePlaceholder: 'Please enter name',
vendorPlaceholder: 'Please select vendor',
scopePlaceholder: 'Please select scope',
remarkPlaceholder: 'Optional, usage instructions'
},
editCommunityPayment: {
title: 'Edit Payment',
statusPlaceholder: 'Please select status'
},
deleteCommunityPayment: {
title: 'Delete Confirmation',
message: 'Are you sure to delete this payment configuration?'
}
},
zh: {
communityPayment: {
title: '小区支付',
search: '查询',
add: '添加',
edit: '修改',
delete: '删除',
confirmDelete: '确认删除',
paymentName: '名称',
communityName: '小区名称',
paymentVendor: '支付厂家',
paymentScope: '支付范围',
status: '状态',
createTime: '创建时间',
instruction: '使用说明',
operation: '操作',
communityFee: '小区费用',
tempParkingFee: '临时停车费',
specificFee: '指定费用项',
enabled: '启用',
disabled: '停用',
selectCommunity: '请选择小区',
selectStatus: '请选择状态',
selectVendor: '请选择厂家',
selectScope: '请选择范围',
selectFeeItem: '请选择费用项',
merchantCert: '商户证书(.p12)',
uploadFile: '上传附件',
cancel: '取消',
save: '保存',
requiredField: '必填项'
},
addCommunityPayment: {
title: '添加支付',
namePlaceholder: '必填,请填写名称',
vendorPlaceholder: '必填,请选择支付厂家',
scopePlaceholder: '必填,请选择支付范围',
remarkPlaceholder: '选填,请填写使用说明'
},
editCommunityPayment: {
title: '修改支付',
statusPlaceholder: '必填,请选择状态'
},
deleteCommunityPayment: {
title: '删除确认',
message: '确定删除支付配置'
}
}
}