ac96f86e29
Task #9 — the admin page used a horizontal Tabs bar across the top. User wanted an OS-style admin shell with a vertical side menu that sits on the right in Arabic and on the left in English. Changes (artifacts/teaboy-os/src/pages/admin.tsx): - Removed the Tabs/TabsList/TabsTrigger/TabsContent layout - Added local section state ("dashboard" | "apps" | "services" | "users" | "settings"), defaulting to dashboard - Desktop (>=md): vertical sidebar (240px wide) with icon + label for each section, glass-style highlighted active item. Sidebar is the first DOM child of the flex row, so under dir="rtl" it naturally appears on the right; under dir="ltr" on the left. - Mobile (<md): sidebar hidden; hamburger button added in the header opens a Sheet drawer (right side in RTL, left in LTR) with the same nav items. Selecting an item closes the drawer. - Added a placeholder Dashboard panel ("Dashboard widgets coming soon.") so the new default section has content. - Added bilingual locale keys: admin.nav.{dashboard,apps,services, users,settings,menu} and admin.dashboardSoon in en.json/ar.json. - All existing CRUD (apps/services/users) and Site Settings panel preserved untouched inside their new section blocks. Verified: pnpm --filter @workspace/teaboy-os run typecheck passes.
128 lines
3.6 KiB
JSON
128 lines
3.6 KiB
JSON
{
|
|
"nav": {
|
|
"home": "Home",
|
|
"services": "Services",
|
|
"chat": "Chat",
|
|
"notifications": "Notifications",
|
|
"admin": "Admin Dashboard",
|
|
"logout": "Logout"
|
|
},
|
|
"auth": {
|
|
"login": "Login",
|
|
"register": "Register",
|
|
"username": "Username",
|
|
"email": "Email",
|
|
"password": "Password",
|
|
"loginButton": "Login",
|
|
"registerButton": "Register",
|
|
"welcomeBack": "Welcome Back",
|
|
"createAccount": "Create Account",
|
|
"registrationClosed": "Public registration is currently closed. Please contact the administrator.",
|
|
"displayNameAr": "Name (Arabic)",
|
|
"displayNameEn": "Name (English)"
|
|
},
|
|
"home": {
|
|
"myApps": "My Apps"
|
|
},
|
|
"services": {
|
|
"title": "Services",
|
|
"available": "Available",
|
|
"unavailable": "Unavailable",
|
|
"price": "Price",
|
|
"noServices": "No services available",
|
|
"category": "Category",
|
|
"free": "Free"
|
|
},
|
|
"chat": {
|
|
"title": "Chat",
|
|
"newMessage": "New Message",
|
|
"typeMessage": "Type a message...",
|
|
"send": "Send",
|
|
"noConversations": "No conversations",
|
|
"createConversation": "New Conversation",
|
|
"groupChat": "Group Chat",
|
|
"directMessage": "Direct Message",
|
|
"participants": "Participants",
|
|
"searchUsers": "Search users"
|
|
},
|
|
"notifications": {
|
|
"title": "Notifications",
|
|
"markAllRead": "Mark All Read",
|
|
"noNotifications": "No new notifications",
|
|
"unread": "Unread"
|
|
},
|
|
"admin": {
|
|
"title": "Admin Dashboard",
|
|
"manageApps": "Manage Apps",
|
|
"manageServices": "Manage Services",
|
|
"manageUsers": "Manage Users",
|
|
"addApp": "Add App",
|
|
"addService": "Add Service",
|
|
"addUser": "Add User",
|
|
"editApp": "Edit App",
|
|
"editService": "Edit Service",
|
|
"editUser": "Edit User",
|
|
"deleteConfirm": "Are you sure you want to delete?",
|
|
"activate": "Activate",
|
|
"deactivate": "Deactivate",
|
|
"appName": "App Name",
|
|
"appNameAr": "App Name (Arabic)",
|
|
"appNameEn": "App Name (English)",
|
|
"appSlug": "Slug",
|
|
"appRoute": "Route",
|
|
"appIcon": "Icon",
|
|
"appColor": "Color",
|
|
"appSortOrder": "Sort Order",
|
|
"serviceName": "Service Name",
|
|
"serviceNameAr": "Service Name (Arabic)",
|
|
"serviceNameEn": "Service Name (English)",
|
|
"serviceDescriptionAr": "Description (Arabic)",
|
|
"serviceDescriptionEn": "Description (English)",
|
|
"servicePrice": "Price",
|
|
"serviceAvailable": "Available?",
|
|
"serviceImageUrl": "Image URL",
|
|
"serviceImage": "Service Image",
|
|
"uploadImage": "Upload Image",
|
|
"replaceImage": "Replace Image",
|
|
"uploading": "Uploading...",
|
|
"uploadFailed": "Image upload failed",
|
|
"users": "Users",
|
|
"username": "Username",
|
|
"email": "Email",
|
|
"password": "Password",
|
|
"roles": "Roles",
|
|
"active": "Active",
|
|
"siteSettings": "Site Settings",
|
|
"siteNameAr": "Site Name (Arabic)",
|
|
"siteNameEn": "Site Name (English)",
|
|
"registrationOpen": "Allow public registration",
|
|
"registrationOpenHint": "When off, only admins can create new users.",
|
|
"nav": {
|
|
"dashboard": "Dashboard",
|
|
"apps": "Apps",
|
|
"services": "Services",
|
|
"users": "Users",
|
|
"settings": "Settings",
|
|
"menu": "Menu"
|
|
},
|
|
"dashboardSoon": "Dashboard widgets coming soon."
|
|
},
|
|
"notFound": {
|
|
"title": "404 — Page Not Found",
|
|
"description": "The page you are looking for does not exist."
|
|
},
|
|
"common": {
|
|
"save": "Save",
|
|
"cancel": "Cancel",
|
|
"delete": "Delete",
|
|
"edit": "Edit",
|
|
"add": "Add",
|
|
"close": "Close",
|
|
"loading": "Loading...",
|
|
"error": "An error occurred",
|
|
"success": "Success",
|
|
"language": "العربية",
|
|
"appName": "TeaBoy OS"
|
|
}
|
|
}
|