aslan 充值兑换转账文案修改

This commit is contained in:
tianfeng 2026-04-14 11:40:10 +08:00
parent 757e84b661
commit 931835a4b5
3 changed files with 8 additions and 8 deletions

View File

@ -206,8 +206,8 @@ public class UserBankTransferGoldCmdExe {
long goldCoins = goldQuantity.longValue();
String noticeTemplate = arRegion
? "لقد استلمت %,d عملة. تم تحويل الأموال من المستخدم (ID: %s) إلى محفظة وكالة الشحن الخاصة بك. يرجى تأكيد الاستلام."
: "You have received %,d Coins. The funds have been transferred from user (ID: %s) to your recharge agency wallet. Please confirm receipt.";
? "تم استلام المعاملة\nتم إضافة تحويل بقيمة %,d عملة من المستخدم (ID: %s) إلى محفظة شحن وكالتك بنجاح. يرجى تأكيد الاستلام."
: "Transaction Received\nA transfer of %,d Coins from user (ID: %s) has been successfully credited to your agency recharge wallet. Please confirm receipt.";
return String.format(noticeTemplate, goldCoins, agencyAccount);
}

View File

@ -210,8 +210,8 @@ public class SendFreightShipCmdExe {
long goldCoins = goldQuantity.longValue();
String noticeTemplate = arRegion
? "تم الشحن بنجاح! قام وكيل الشحن (ID: %s) بشحن %,d عملة إلى حسابك. يرجى تأكيد الاستلام."
: "Recharge successful! recharge agency (ID: %s) has recharged %,d Coins to your account. Please confirm receipt.";
? "تم الشحن بنجاح\ام الوكيل (ID: %s) بإضافة %,d عملة إلى حسابك بنجاح. يرجى تأكيد الاستلام."
: "Recharge Successful\nAgency (ID: %s) has successfully credited %,d Coins to your account. Please confirm receipt.";
return String.format(noticeTemplate, agencyAccount, goldCoins);
}
@ -225,8 +225,8 @@ public class SendFreightShipCmdExe {
long goldCoins = goldQuantity.longValue();
String noticeTemplate = arRegion
? "لقد استلمت %,d عملة. تم تحويل الأموال من المستخدم (ID: %s) إلى محفظة وكالة الشحن الخاصة بك. يرجى تأكيد الاستلام."
: "You have received %,d Coins. The funds have been transferred from user (ID: %s) to your recharge agency wallet. Please confirm receipt.";
? "تم استلام المعاملة\nتم إضافة تحويل بقيمة %,d عملة من المستخدم (ID: %s) إلى محفظة شحن وكالتك بنجاح. يرجى تأكيد الاستلام."
: "Transaction Received\nA transfer of %,d Coins from user (ID: %s) has been successfully credited to your agency recharge wallet. Please confirm receipt.";
return String.format(noticeTemplate, goldCoins, agencyAccount);
}

View File

@ -179,8 +179,8 @@ public class SalaryTransferGoldCmdExe {
long goldCoins = goldQuantity.longValue();
String noticeTemplate = arRegion
? "لقد استلمت %,d عملة. تم تحويل الأموال من المستخدم (ID: %s) إلى محفظة وكالة الشحن الخاصة بك. يرجى تأكيد الاستلام."
: "You have received %,d Coins. The funds have been transferred from user (ID: %s) to your recharge agency wallet. Please confirm receipt.";
? "تم استلام المعاملة\nتم إضافة تحويل بقيمة %,d عملة من المستخدم (ID: %s) إلى محفظة شحن وكالتك بنجاح. يرجى تأكيد الاستلام."
: "Transaction Received\nA transfer of %,d Coins from user (ID: %s) has been successfully credited to your agency recharge wallet. Please confirm receipt.";
return String.format(noticeTemplate, goldCoins, agencyAccount);
}