Ken 2 săptămâni în urmă
părinte
comite
e92ad6c9ef

+ 4 - 4
app/Services/SanJinRechargeService.php

@@ -162,15 +162,15 @@ class SanJinRechargeService extends BaseService
             ->count();
 
 
-        $text = "👤 {$firstName}({$chatId})    第三方订单记录\n\n";
+        $text = "👤 {$firstName}({$chatId})    ".lang('第三方订单记录')."\n\n";
         foreach ($list as $item) {
             $amount = floatval($item->amount);
 
             $amount = $item->type == 2 ? "➖ {$amount}" : "➕ $amount";
             $text .= "-------------------------------------\n";
-            $text .= "订单类型:".($item->type == 1?"充值":"提现")." \n";
-            $text .= "订单金额:{$amount} \n";
-            $text .= "订单号:{$item->order_no}\n";
+            $text .= lang('订单类型').":".($item->type == 1?lang("充值"):lang("提现"))." \n";
+            $text .= lang('订单金额').":{$amount} \n";
+            $text .= lang('订单号').":{$item->order_no}\n";
             if($item->type == 2){
                 $text .= "银行:{$item->bank_name}\n";
                 $text .= "姓名:{$item->account}\n";

+ 5 - 0
lang/en/messages.php

@@ -146,6 +146,11 @@ return [
     "请输入充值的金额" => "Please enter the recharge amount",
     "🔔 提示:请选择下方充值的金额" => "🔔 Tip: Please select the recharge amount below",
     "🔔 提示:请务必核对(充值最大金额和最小金额,账号信息一致),若不一致无法到账。" => "🔔 Tip: Please ensure that (the maximum and minimum recharge amounts, and account information are consistent), if not, the funds will not be credited.",
+    "第三方订单记录" => "Third-Party Order Records",
+    "订单类型" => "Order Type",
+    "充值" => "Recharge",
+    "提现" => "Withdraw",
+    "订单金额" => "Order Amount",
 
 
 

+ 5 - 0
lang/vi/messages.php

@@ -146,6 +146,11 @@ return [
     "请输入充值的金额" => "Vui lòng nhập số tiền nạp",
     "🔔 提示:请选择下方充值的金额" => "🔔 Lưu ý: Vui lòng chọn số tiền nạp dưới đây",
     "🔔 提示:请务必核对(充值最大金额和最小金额,账号信息一致),若不一致无法到账。" => "🔔 Lưu ý: Vui lòng kiểm tra kỹ (số tiền nạp tối đa và tối thiểu, thông tin tài khoản chính xác), nếu không khớp sẽ không thể chuyển tiền vào tài khoản.",
+    "第三方订单记录" => "Lịch sử đơn hàng bên thứ ba",
+    "订单类型" => "Loại đơn hàng",
+    "充值" => "Nạp tiền",
+    "提现" => "Rút tiền",
+    "订单金额" => "Số tiền đơn hàng",
 
 
 

+ 8 - 3
lang/zh/messages.php

@@ -143,8 +143,13 @@ return [
     "金额输入不正确,请发送预充值数字" => "金额输入不正确,请发送预充值数字",
     "💳️ 银行卡管理" => "💳️ 银行卡管理",
     "充值金额" => "充值金额",
-    "请输入充值的金额"=>"请输入充值的金额",
-    "🔔 提示:请选择下方充值的金额"=>"🔔 提示:请选择下方充值的金额",
-    "🔔 提示:请务必核对(充值最大金额和最小金额,账号信息一致),若不一致无法到账。"=>"🔔 提示:请务必核对(充值最大金额和最小金额,账号信息一致),若不一致无法到账。",
+    "请输入充值的金额" => "请输入充值的金额",
+    "🔔 提示:请选择下方充值的金额" => "🔔 提示:请选择下方充值的金额",
+    "🔔 提示:请务必核对(充值最大金额和最小金额,账号信息一致),若不一致无法到账。" => "🔔 提示:请务必核对(充值最大金额和最小金额,账号信息一致),若不一致无法到账。",
+    "第三方订单记录" => "第三方订单记录",
+    "订单类型"=>"订单类型",
+    "充值"=>"充值",
+    "提现"=>"提现",
+    "订单金额"=>"订单金额",
 
 ];