goldLang.js
3.61 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
export const messages = {
en: {
gold: {
title: 'Community Gold',
withdraw: 'Withdraw',
transactionDetails: 'Transaction Details',
goldWithdrawal: 'Gold Withdrawal'
},
goldInfo: {
accountId: 'Account ID:',
accountName: 'Account Name:',
accountBalance: 'Account Balance:',
communityName: 'Community Name:'
},
goldDetail: {
id: 'ID',
goldAccount: 'Gold Account',
type: 'Type',
transferIn: 'Transfer In',
transferOut: 'Transfer Out',
communityName: 'Community Name',
communityId: 'Community ID',
transactionAmount: 'Transaction Amount',
currentAmount: 'Current Amount',
transactionNo: 'Transaction No',
remark: 'Remark',
time: 'Time'
},
applyWithholdGold: {
id: 'ID',
goldId: 'Gold ID',
accountName: 'Account Name',
communityId: 'Community ID',
withdrawAmount: 'Withdraw Amount',
applicant: 'Applicant',
applicantPhone: 'Applicant Phone',
bankAccount: 'Bank Account',
bankName: 'Bank Name',
applicationNote: 'Application Note',
status: 'Status',
reviewNote: 'Review Note'
},
deleteApplyWithholdGold: {
confirmTitle: 'Confirm Operation',
confirmText: 'Are you sure to delete this gold withdrawal application?',
deleteSuccess: 'Delete successfully',
deleteFailed: 'Delete failed'
},
withholdGold: {
applyWithdraw: 'Apply Withdraw',
goldAmount: 'Gold Amount',
withdrawAmount: 'Withdraw Amount',
applicant: 'Applicant',
applicantPhone: 'Applicant Phone',
bankAccount: 'Bank Account',
accountName: 'Account Name',
bankName: 'Bank Name',
applicationNote: 'Application Note',
required: 'Required',
submitSuccess: 'Submit successfully',
submitFailed: 'Submit failed'
}
},
zh: {
gold: {
title: '小区金币',
withdraw: '提现',
transactionDetails: '交易明细',
goldWithdrawal: '金币提现'
},
goldInfo: {
accountId: '账户ID:',
accountName: '账户名称:',
accountBalance: '账户余额:',
communityName: '小区名称:'
},
goldDetail: {
id: '编号',
goldAccount: '金币账户',
type: '类型',
transferIn: '转入',
transferOut: '转出',
communityName: '小区名称',
communityId: '小区编号',
transactionAmount: '交易金额',
currentAmount: '当前金额',
transactionNo: '交易单号',
remark: '备注',
time: '时间'
},
applyWithholdGold: {
id: '编号',
goldId: '金币ID',
accountName: '账户名称',
communityId: '小区编号',
withdrawAmount: '提现金额',
applicant: '申请人',
applicantPhone: '申请人电话',
bankAccount: '银行账户',
bankName: '开户行',
applicationNote: '申请说明',
status: '状态',
reviewNote: '审核说明'
},
deleteApplyWithholdGold: {
confirmTitle: '请确认您的操作!',
confirmText: '确定删除金币提现',
deleteSuccess: '删除成功',
deleteFailed: '删除失败'
},
withholdGold: {
applyWithdraw: '申请提现',
goldAmount: '金币金额',
withdrawAmount: '提现金额',
applicant: '申请人',
applicantPhone: '申请人电话',
bankAccount: '银行账户',
accountName: '账号名称',
bankName: '开户行',
applicationNote: '申请说明',
required: '必填',
submitSuccess: '提交成功',
submitFailed: '提交失败'
}
}
}