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