From ba657dcbbc00ddd4e6f2d4611263956677bcb2aa Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 30 Oct 2025 11:46:35 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=B8=BB=E6=92=AD=E8=BD=AC=E8=B4=A6?= =?UTF-8?q?=E9=A1=B5=E3=80=81=E9=80=89=E6=8B=A9=E8=BD=AC=E8=B4=A6=E5=AF=B9?= =?UTF-8?q?=E8=B1=A1=E9=A1=B5):=20=E4=BD=BF=E7=94=A8=E6=96=B0=E7=9A=84?= =?UTF-8?q?=E5=A4=B4=E9=83=A8=E7=BB=84=E4=BB=B6=EF=BC=8C=E5=AF=B9=E6=8E=A5?= =?UTF-8?q?=E8=AF=AD=E8=A8=80=E5=88=87=E6=8D=A2=E5=8A=9F=E8=83=BD=E5=B9=B6?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/ar.json | 16 ++++++ src/locales/en.json | 16 ++++++ src/locales/zh.json | 16 ++++++ src/views/SearchPayeeView.vue | 60 +++++++++++++++------ src/views/TransferView.vue | 98 ++++++++++++++++++++++++++--------- 5 files changed, 167 insertions(+), 39 deletions(-) diff --git a/src/locales/ar.json b/src/locales/ar.json index 5f36998..210263e 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -148,6 +148,22 @@ "exchange_failed": "فشل التبادل، يرجى المحاولة لاحقًا.", "exchange_error_occurred": "حدث خطأ أثناء عملية التبادل. يرجى المحاولة لاحقًا.", + "please_select_amount": "يرجى اختيار المبلغ أولاً", + "please_select_payee": "يرجى اختيار المستلم أولاً", + "enter_payment_password": "يرجى إدخال كلمة مرور الدفع الخاصة بك:", + "payment_password_required": "كلمة مرور الدفع مطلوبة", + "transfer_success": "تم تحويل ${price} دولارًا إلى ${name} بنجاح", + "transfer_failed": "فشل تحويل ${price} دولارًا", + "payment_password_error": "خطأ في كلمة مرور الدفع", + "transfer_error": "فشل التحويل، يرجى المحاولة لاحقًا", + + "search_payee": "البحث عن المستلم", + "checking_permissions": "جارٍ التحقق من الأذونات", + "searching": "جارٍ البحث", + "confirm_transfer_to_user": "هل أنت متأكد من أنك تريد تحويل العملات إلى هذا المستخدم؟", + "user_not_found_or_search_failed": "لم يتم العثور على المستخدم أو فشل البحث", + "add_recharge_agent": "إضافة وكيل إعادة الشحن", + "application_record_not_found": "Application record not found", "application_processed_cannot_cancel": "Application has been processed and cannot be canceled", "cancellation_failed_try_again": "Cancellation failed, please try again", diff --git a/src/locales/en.json b/src/locales/en.json index 9ba5b2c..5c9ede0 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -148,6 +148,22 @@ "exchange_failed": "Exchange failed, please try again later.", "exchange_error_occurred": "An error occurred during the exchange process. Please try again later.", + "please_select_amount": "Please select an amount first", + "please_select_payee": "Please select a payee first", + "enter_payment_password": "Please enter your payment password:", + "payment_password_required": "Payment password is required", + "transfer_success": "Successfully transferred $${price} to ${name}", + "transfer_failed": "Failed to transfer $${price}", + "payment_password_error": "Payment password error", + "transfer_error": "Transfer failed, please try again later", + + "search_payee": "Search Payee", + "checking_permissions": "Checking permissions", + "searching": "Searching", + "confirm_transfer_to_user": "Are you sure you want to transfer coins to this user?", + "user_not_found_or_search_failed": "User not found or search failed", + "add_recharge_agent": "Add recharge agent", + "application_record_not_found": "Application record not found", "application_processed_cannot_cancel": "Application has been processed and cannot be canceled", "cancellation_failed_try_again": "Cancellation failed, please try again", diff --git a/src/locales/zh.json b/src/locales/zh.json index 3019060..abeb19a 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -148,6 +148,22 @@ "exchange_failed": "兑换失败,请稍后重试。", "exchange_error_occurred": "兑换过程中发生错误,请稍后重试。", + "please_select_amount": "请先选择金额", + "please_select_payee": "请选择收款人", + "enter_payment_password": "请输入支付密码:", + "payment_password_required": "需要支付密码", + "transfer_success": "成功转账${price}美元给${name}", + "transfer_failed": "转账${price}美元失败", + "payment_password_error": "支付密码错误", + "transfer_error": "转账失败,请稍后重试", + + "search_payee": "搜索收款人", + "checking_permissions": "正在检查权限", + "searching": "搜索中", + "confirm_transfer_to_user": "您确定要转账给这个用户吗?", + "user_not_found_or_search_failed": "未找到用户或搜索失败", + "add_recharge_agent": "添加充值代理", + "application_record_not_found": "申请记录未找到", "application_processed_cannot_cancel": "申请已被处理,无法取消", "cancellation_failed_try_again": "取消失败,请重试", diff --git a/src/views/SearchPayeeView.vue b/src/views/SearchPayeeView.vue index 37022be..96402a8 100644 --- a/src/views/SearchPayeeView.vue +++ b/src/views/SearchPayeeView.vue @@ -1,6 +1,13 @@