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 @@