|
|
@@ -236,24 +236,24 @@ class WalletService extends BaseService
|
|
|
|
|
|
|
|
|
$balance = number_format($selfInfo->available_balance, 2, '.', '');
|
|
|
- $text = '';
|
|
|
- $text .= "用户ID:{$memberId} \n";
|
|
|
- $text .= "用户名:{$userInfo->username} \n";
|
|
|
- $text .= "昵称:{$userInfo->first_name} \n";
|
|
|
- $text .= "当前余额:{$balance} RMB\n";
|
|
|
+
|
|
|
+ $text = lang("用户ID") . ":{$memberId} \n";
|
|
|
+ $text .= lang('用户名') . ":{$userInfo->username} \n";
|
|
|
+ $text .= lang('昵称') . ":{$userInfo->first_name} \n";
|
|
|
+ $text .= lang('当前余额') . ":{$balance} RMB\n";
|
|
|
|
|
|
$keyboard = [
|
|
|
[
|
|
|
- // ['text' => '➕充值', 'callback_data' => "topup@@topup"],
|
|
|
- ['text' => '➕充值', 'callback_data' => "topup@@sj_apply"],
|
|
|
- ['text' => '🧾账单', 'callback_data' => "topup@@bill"],
|
|
|
+ // ['text' => lang('➕充值'), 'callback_data' => "topup@@topup"],
|
|
|
+ ['text' => lang('➕充值'), 'callback_data' => "topup@@sj_apply"],
|
|
|
+ ['text' => lang('🧾账单'), 'callback_data' => "topup@@bill"],
|
|
|
],
|
|
|
[
|
|
|
- ['text' => '➕ 提现', 'callback_data' => "withdraw@@qb_show_channel"],
|
|
|
- ['text' => '🧾 提现账单', 'callback_data' => "withdraw@@bill"]
|
|
|
+ ['text' => lang('➕ 提现'), 'callback_data' => "withdraw@@qb_show_channel"],
|
|
|
+ ['text' => lang('🧾 提现账单'), 'callback_data' => "withdraw@@bill"]
|
|
|
],
|
|
|
[
|
|
|
- ['text'=>'🔑秘钥管理','callback_data'=>'secret@@index'],
|
|
|
+ ['text' => lang('🔑秘钥管理'), 'callback_data' => 'secret@@index'],
|
|
|
],
|
|
|
|
|
|
|