best-unit 2.0.13 → 2.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/best-unit.cjs +7 -7
- package/dist/best-unit.js +361 -354
- package/package.json +1 -1
- package/src/components/business/payment-sdk/offline-detail/index.tsx +7 -12
- package/src/components/business/payment-sdk/online-payment/index.tsx +21 -9
- package/src/components/common/date-picker/index.tsx +1 -1
- package/src/local/en.ts +14 -13
- package/src/local/zh.ts +8 -11
package/package.json
CHANGED
|
@@ -77,18 +77,13 @@ export function OfflineDetail({ onConfirm, channelCode }: OfflineDetailProps) {
|
|
|
77
77
|
|
|
78
78
|
<div style={theme.reminderTitle}>{t("温馨提示")}</div>
|
|
79
79
|
<ul style={theme.reminderList}>
|
|
80
|
-
<li>{t("
|
|
81
|
-
<li>{t("
|
|
82
|
-
<li>{t("
|
|
83
|
-
<li>{t("
|
|
84
|
-
<li>{t("
|
|
85
|
-
<li>
|
|
86
|
-
|
|
87
|
-
<a href="#" style={theme.link}>
|
|
88
|
-
{t("费用政策")}
|
|
89
|
-
</a>{" "}
|
|
90
|
-
{t("详情")}
|
|
91
|
-
</li>
|
|
80
|
+
<li>{t("创建付款时请勿填写敏感备注,例如:topup ads、order等、建议填写数字代码")}</li>
|
|
81
|
+
<li>{t("请填写正确的支付金额、币种、支付时间,相同的交易请勿重复提交。")}</li>
|
|
82
|
+
<li>{t("请上传交易凭证,否则无法核验并及时添加余额。")}</li>
|
|
83
|
+
<li>{t("提交成功后根据实际到账金额添加余额。工作时间提交的转账当日处理,非工作时间提交的转账将在下一个工作日处理。")}</li>
|
|
84
|
+
<li>{t("通过平台互转(例如payoneer转payoneer)付款方式可能会有10分钟延迟,请耐心等待。")}</li>
|
|
85
|
+
<li>{t("广告款项若入账金额为美金外其他币种额外扣除0.6%手续费,其中PayPal支付方式额外扣除2.5%手续费。")}</li>
|
|
86
|
+
<li>{t("如有问题,请联系客服。")}</li>
|
|
92
87
|
</ul>
|
|
93
88
|
</div>
|
|
94
89
|
);
|
|
@@ -146,19 +146,31 @@ export function OnlinePayment({
|
|
|
146
146
|
|
|
147
147
|
<div style={theme.reminderTitle}>{t("温馨提示")}</div>
|
|
148
148
|
<ul style={theme.reminderList}>
|
|
149
|
-
<li
|
|
150
|
-
{t(
|
|
149
|
+
<li>
|
|
150
|
+
{t(
|
|
151
|
+
"创建付款时请勿填写敏感备注,例如:topup ads、order等、建议填写数字代码"
|
|
152
|
+
)}
|
|
151
153
|
</li>
|
|
152
|
-
<li
|
|
153
|
-
{t("
|
|
154
|
+
<li>
|
|
155
|
+
{t("请填写正确的支付金额、币种、支付时间,相同的交易请勿重复提交。")}
|
|
154
156
|
</li>
|
|
155
|
-
<li
|
|
156
|
-
|
|
157
|
+
<li>{t("请上传交易凭证,否则无法核验并及时添加余额。")}</li>
|
|
158
|
+
<li>
|
|
159
|
+
{t(
|
|
160
|
+
"提交成功后根据实际到账金额添加余额。工作时间提交的转账当日处理,非工作时间提交的转账将在下一个工作日处理。"
|
|
161
|
+
)}
|
|
157
162
|
</li>
|
|
158
|
-
<li
|
|
159
|
-
|
|
160
|
-
|
|
163
|
+
<li>
|
|
164
|
+
{t(
|
|
165
|
+
"通过平台互转(例如payoneer转payoneer)付款方式可能会有10分钟延迟,请耐心等待。"
|
|
166
|
+
)}
|
|
161
167
|
</li>
|
|
168
|
+
<li>
|
|
169
|
+
{t(
|
|
170
|
+
"广告款项若入账金额为美金外其他币种额外扣除0.6%手续费,其中PayPal支付方式额外扣除2.5%手续费。"
|
|
171
|
+
)}
|
|
172
|
+
</li>
|
|
173
|
+
<li>{t("如有问题,请联系客服。")}</li>
|
|
162
174
|
</ul>
|
|
163
175
|
|
|
164
176
|
{formState.error && <div style={theme.error}>{formState.error}</div>}
|
|
@@ -258,7 +258,7 @@ export function DatePicker({
|
|
|
258
258
|
style={theme.monthYear}
|
|
259
259
|
onClick={() => setShowYearPicker(!showYearPicker)}
|
|
260
260
|
>
|
|
261
|
-
{currentMonth.getFullYear()}年
|
|
261
|
+
{currentMonth.getFullYear()} {t("年")}{" "}
|
|
262
262
|
{monthNames[currentMonth.getMonth()]}
|
|
263
263
|
</span>
|
|
264
264
|
<button
|
package/src/local/en.ts
CHANGED
|
@@ -8,6 +8,7 @@ export const en: Record<string, string> = {
|
|
|
8
8
|
"Note: Region/currency/card type may affect handling fees, subject to the platform.",
|
|
9
9
|
确定: "Confirm",
|
|
10
10
|
提交成功: "Submit Success",
|
|
11
|
+
年:"Year",
|
|
11
12
|
// 余额相关
|
|
12
13
|
余额详情: "Balance Details",
|
|
13
14
|
真实金额: "Real Balance",
|
|
@@ -102,19 +103,19 @@ export const en: Record<string, string> = {
|
|
|
102
103
|
转账后提交银行回单提示:
|
|
103
104
|
"Please make sure to submit the bank transaction slip after the transfer, otherwise the payment may not be verified in time",
|
|
104
105
|
温馨提示: "Friendly Reminder",
|
|
105
|
-
|
|
106
|
-
"
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
106
|
+
"创建付款时请勿填写敏感备注,例如:topup ads、order等、建议填写数字代码":
|
|
107
|
+
"Do not include sensitive notes when creating a payment (e.g., “topup ads”, “order”). We recommend using a numeric code instead.",
|
|
108
|
+
"请填写正确的支付金额、币种、支付时间,相同的交易请勿重复提交。":
|
|
109
|
+
"Enter the correct amount, currency, and payment time. Please do not submit the same transaction more than once.",
|
|
110
|
+
"请上传交易凭证,否则无法核验并及时添加余额。":
|
|
111
|
+
"Upload the payment proof/receipt. Without it, we can’t verify the transfer or credit your balance in time.",
|
|
112
|
+
"提交成功后根据实际到账金额添加余额。工作时间提交的转账当日处理,非工作时间提交的转账将在下一个工作日处理。":
|
|
113
|
+
"After submission, your balance will be credited based on the actual received amount. Transfers submitted during business hours are processed the same day; those submitted outside business hours will be processed on the next business day.",
|
|
114
|
+
"通过平台互转(例如payoneer转payoneer)付款方式可能会有10分钟延迟,请耐心等待。":
|
|
115
|
+
"For platform-to-platform transfers (e.g., Payoneer → Payoneer), there may be a ~10-minute delay. Please wait patiently.",
|
|
116
|
+
"广告款项若入账金额为美金外其他币种额外扣除0.6%手续费,其中PayPal支付方式额外扣除2.5%手续费。":
|
|
117
|
+
"For advertising funds: if the received currency is non-USD, an additional 0.6% fee applies. PayPal payments incur an additional 2.5% fee. ",
|
|
118
|
+
"如有问题,请联系客服。": "If you have any questions, please contact Customer Support.",
|
|
118
119
|
|
|
119
120
|
// Bank Transfer Receipt Upload Related
|
|
120
121
|
返回账户信息: "Return to Account Information",
|
package/src/local/zh.ts
CHANGED
|
@@ -8,6 +8,7 @@ export const zh: Record<string, string> = {
|
|
|
8
8
|
"注:地区/币种/卡类型可能影响手续费,最终以平台为准。",
|
|
9
9
|
确定: "确定",
|
|
10
10
|
提交成功: "提交成功",
|
|
11
|
+
年:"年",
|
|
11
12
|
// 余额相关
|
|
12
13
|
余额详情: "余额详情",
|
|
13
14
|
真实金额: "真实金额",
|
|
@@ -72,17 +73,13 @@ export const zh: Record<string, string> = {
|
|
|
72
73
|
确认转账详情: "确认转账详情",
|
|
73
74
|
转账后提交银行回单提示: "请在转账后提交银行回单,否则可能无法及时核验",
|
|
74
75
|
温馨提示: "温馨提示",
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
P卡转账延迟提醒: "P卡转账可能会有最多10分钟的延迟,请耐心等待。",
|
|
83
|
-
平台服务费说明: "预付充值将收取1%的平台服务费,详情请参考",
|
|
84
|
-
费用政策: "费用政策",
|
|
85
|
-
详情: "。",
|
|
76
|
+
"创建付款时请勿填写敏感备注,例如:topup ads、order等、建议填写数字代码": "创建付款时请勿填写敏感备注,例如:topup ads、order等、建议填写数字代码",
|
|
77
|
+
"请填写正确的支付金额、币种、支付时间,相同的交易请勿重复提交。": "请填写正确的支付金额、币种、支付时间,相同的交易请勿重复提交。",
|
|
78
|
+
"请上传交易凭证,否则无法核验并及时添加余额。": "请上传交易凭证,否则无法核验并及时添加余额。",
|
|
79
|
+
"提交成功后根据实际到账金额添加余额。工作时间提交的转账当日处理,非工作时间提交的转账将在下一个工作日处理。": "提交成功后根据实际到账金额添加余额。工作时间提交的转账当日处理,非工作时间提交的转账将在下一个工作日处理。",
|
|
80
|
+
"通过平台互转(例如payoneer转payoneer)付款方式可能会有10分钟延迟,请耐心等待。": "通过平台互转(例如payoneer转payoneer)付款方式可能会有10分钟延迟,请耐心等待。",
|
|
81
|
+
"广告款项若入账金额为美金外其他币种额外扣除0.6%手续费,其中PayPal支付方式额外扣除2.5%手续费。": "广告款项若入账金额为美金外其他币种额外扣除0.6%手续费,其中PayPal支付方式额外扣除2.5%手续费。",
|
|
82
|
+
"如有问题,请联系客服。": "如有问题,请联系客服。",
|
|
86
83
|
|
|
87
84
|
// 银行转账回单上传相关
|
|
88
85
|
返回账户信息: "返回账户信息",
|