paymentPoolLang.js
5.99 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
export const messages = {
en: {
paymentPool: {
search: {
title: 'Search Conditions',
paymentName: 'Payment Name',
paymentType: 'Payment Vendor',
state: 'Status',
allStatus: 'All Status',
enable: 'Enable',
disable: 'Disable'
},
list: {
title: 'Payment Configuration'
},
table: {
paymentName: 'Name',
paymentType: 'Payment Vendor',
payRange: 'Payment Range',
communityFee: 'Community Fee',
tempCarFee: 'Temporary Car Fee',
specifiedFee: 'Specified Fee',
state: 'Status',
createTime: 'Create Time',
remark: 'Instruction',
enable: 'Enable',
disable: 'Disable'
},
add: {
title: 'Add Payment',
paymentName: 'Name',
paymentNamePlaceholder: 'Required, please enter name',
paymentType: 'Payment Vendor',
paymentTypePlaceholder: 'Required, please select payment vendor',
certFile: 'Merchant Certificate(.p12)',
payRange: 'Payment Range',
payRangePlaceholder: 'Required, please select payment range',
communityFee: 'Community Fee',
tempCarFee: 'Temporary Car Fee',
specifiedFee: 'Specified Fee',
feeItems: 'Fee Items',
remark: 'Instruction',
remarkPlaceholder: 'Optional, please enter instruction',
success: 'Add payment successfully',
error: 'Failed to add payment'
},
edit: {
title: 'Edit Payment',
paymentName: 'Name',
paymentNamePlaceholder: 'Required, please enter name',
paymentType: 'Payment Vendor',
paymentTypePlaceholder: 'Required, please select payment vendor',
certFile: 'Merchant Certificate(.p12)',
currentCert: 'Current Certificate',
payRange: 'Payment Range',
payRangePlaceholder: 'Required, please select payment range',
communityFee: 'Community Fee',
tempCarFee: 'Temporary Car Fee',
specifiedFee: 'Specified Fee',
feeItems: 'Fee Items',
state: 'Status',
statePlaceholder: 'Required, please select status',
enable: 'Enable',
disable: 'Disable',
remark: 'Instruction',
remarkPlaceholder: 'Optional, please enter instruction',
success: 'Edit payment successfully',
error: 'Failed to edit payment'
},
delete: {
title: 'Delete Confirmation',
confirmText: 'Are you sure to delete this payment configuration?',
success: 'Delete payment successfully',
error: 'Failed to delete payment'
},
validate: {
paymentNameRequired: 'Name is required',
paymentNameMaxLength: 'Name cannot exceed 64 characters',
paymentTypeRequired: 'Payment vendor is required',
payTypeRequired: 'Payment range is required',
stateRequired: 'Status is required'
},
fetchError: 'Failed to fetch payment data'
},
uploadFile: {
sizeLimit: 'File size cannot exceed 20MB',
success: 'File uploaded successfully',
error: 'Failed to upload file'
}
},
zh: {
paymentPool: {
search: {
title: '查询条件',
paymentName: '支付名称',
paymentType: '支付厂家',
state: '状态',
allStatus: '全部状态',
enable: '启用',
disable: '停用'
},
list: {
title: '支付配置'
},
table: {
paymentName: '名称',
paymentType: '支付厂家',
payRange: '支付范围',
communityFee: '小区费用',
tempCarFee: '临时停车费',
specifiedFee: '指定费用项',
state: '状态',
createTime: '创建时间',
remark: '使用说明',
enable: '启用',
disable: '停用'
},
add: {
title: '添加支付',
paymentName: '名称',
paymentNamePlaceholder: '必填,请填写名称',
paymentType: '支付厂家',
paymentTypePlaceholder: '必填,请选择支付厂家',
certFile: '商户证书(.p12)',
payRange: '支付范围',
payRangePlaceholder: '必填,请选择支付范围',
communityFee: '小区费用',
tempCarFee: '临时停车费',
specifiedFee: '指定费用项',
feeItems: '费用项',
remark: '使用说明',
remarkPlaceholder: '选填,请填写使用说明',
success: '添加支付成功',
error: '添加支付失败'
},
edit: {
title: '修改支付',
paymentName: '名称',
paymentNamePlaceholder: '必填,请填写名称',
paymentType: '支付厂家',
paymentTypePlaceholder: '必填,请选择支付厂家',
certFile: '商户证书(.p12)',
currentCert: '当前证书',
payRange: '支付范围',
payRangePlaceholder: '必填,请选择支付范围',
communityFee: '小区费用',
tempCarFee: '临时停车费',
specifiedFee: '指定费用项',
feeItems: '费用项',
state: '状态',
statePlaceholder: '必填,请选择状态',
enable: '启用',
disable: '停用',
remark: '使用说明',
remarkPlaceholder: '选填,请填写使用说明',
success: '修改支付成功',
error: '修改支付失败'
},
delete: {
title: '删除确认',
confirmText: '确定删除该支付配置吗?',
success: '删除支付成功',
error: '删除支付失败'
},
validate: {
paymentNameRequired: '名称不能为空',
paymentNameMaxLength: '名称不能超过64个字符',
paymentTypeRequired: '支付厂家不能为空',
payTypeRequired: '支付范围不能为空',
stateRequired: '状态不能为空'
},
fetchError: '获取支付数据失败'
},
uploadFile: {
sizeLimit: '文件大小不能超过20MB',
success: '文件上传成功',
error: '文件上传失败'
}
}
}