From 59b9c7f406ea93192f0f87c47f59e90928b0217c Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Thu, 30 Oct 2025 16:28:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=85=85=E5=80=BC=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E9=A1=B5):=20=E4=BD=BF=E7=94=A8=E6=96=B0?= =?UTF-8?q?=E7=9A=84=E5=A4=B4=E9=83=A8=E7=BB=84=E4=BB=B6=EF=BC=8C=E5=AF=B9?= =?UTF-8?q?=E6=8E=A5=E8=AF=AD=E8=A8=80=E5=88=87=E6=8D=A2=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=B9=B6=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 | 11 ++++- src/locales/en.json | 11 ++++- src/locales/zh.json | 11 ++++- src/views/MessageView.vue | 90 ++++++++++++++++++++++++++++++++------- 4 files changed, 104 insertions(+), 19 deletions(-) diff --git a/src/locales/ar.json b/src/locales/ar.json index 2a4b101..1472ca5 100644 --- a/src/locales/ar.json +++ b/src/locales/ar.json @@ -196,5 +196,14 @@ "total_recharge": "إجمالي إعادة الشحن", "total_expenditure": "إجمالي الإنفاق", "coins": "عملات", - "no_selling_records_yet": "لا توجد سجلات بيع حتى الآن" + "no_selling_records_yet": "لا توجد سجلات بيع حتى الآن", + + "users_message": "رسالة المستخدم", + "no_messages": "لا توجد رسائل", + "agree": "موافقة", + "refuse": "رفض", + "unknown_user": "مستخدم غير معروف", + "approved_application": "تمت الموافقة على طلب {name}", + "rejected_application": "تم رفض طلب {name}", + "operation_failed": "فشلت العملية، يرجى المحاولة مرة أخرى" } diff --git a/src/locales/en.json b/src/locales/en.json index 42c1cd5..e43e3b1 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -196,5 +196,14 @@ "total_recharge": "Total recharge", "total_expenditure": "Total expenditure", "coins": "coins", - "no_selling_records_yet": "No selling records yet" + "no_selling_records_yet": "No selling records yet", + + "users_message": "User's message", + "no_messages": "No messages", + "agree": "Agree", + "refuse": "Refuse", + "unknown_user": "Unknown User", + "approved_application": "Approved {name}'s application", + "rejected_application": "Rejected {name}'s application", + "operation_failed": "Operation failed, please try again" } diff --git a/src/locales/zh.json b/src/locales/zh.json index 701e8e6..975f85f 100644 --- a/src/locales/zh.json +++ b/src/locales/zh.json @@ -196,5 +196,14 @@ "total_recharge": "总充值", "total_expenditure": "总支出", "coins": "金币", - "no_selling_records_yet": "暂无销售记录" + "no_selling_records_yet": "暂无销售记录", + + "users_message": "用户消息", + "no_messages": "暂无消息", + "agree": "同意", + "refuse": "拒绝", + "unknown_user": "未知用户", + "approved_application": "已批准 {name} 的申请", + "rejected_application": "已拒绝 {name} 的申请", + "operation_failed": "操作失败,请重试" } diff --git a/src/views/MessageView.vue b/src/views/MessageView.vue index 87aa836..c438cb0 100644 --- a/src/views/MessageView.vue +++ b/src/views/MessageView.vue @@ -1,11 +1,18 @@