|
|
@@ -311,7 +311,7 @@ class QianBaoWithdrawService
|
|
|
if ($amount > $temp) {
|
|
|
return [
|
|
|
'chat_id' => $chatId,
|
|
|
- 'text' => "⚠️可用余额不足,请重试",
|
|
|
+ 'text' => lang("可用余额不足,请重试"),
|
|
|
'reply_to_message_id' => $messageId
|
|
|
];
|
|
|
}
|
|
|
@@ -320,14 +320,14 @@ class QianBaoWithdrawService
|
|
|
if ($amount < 100) {
|
|
|
return [
|
|
|
'chat_id' => $chatId,
|
|
|
- 'text' => "⚠️提现不能少于100 RMB,请重试",
|
|
|
+ 'text' => lang("提现不能少于100 RMB,请重试"),
|
|
|
'reply_to_message_id' => $messageId
|
|
|
];
|
|
|
}
|
|
|
if ($amount > 49999) {
|
|
|
return [
|
|
|
'chat_id' => $chatId,
|
|
|
- 'text' => "⚠️最多提现 49999 RMB,请重试",
|
|
|
+ 'text' => lang("最多提现 49999 RMB,请重试"),
|
|
|
'reply_to_message_id' => $messageId
|
|
|
];
|
|
|
}
|