feat: Apply localization to Login, Dashboard, and Navigation (Phase 9 - Batch 1)

**Pages Localized:**
- Login page: All UI strings (titles, labels, buttons, links)
- Dashboard page: Welcome message, quick actions, daily summary, predictions
- AppShell: Connection status and presence indicators
- MobileNav: Menu items and app branding
- TabBar: Bottom navigation labels

**Translation Files:**
- Created dashboard.json for all 5 languages (en, es, fr, pt, zh)
- Enhanced common.json with navigation and connection strings
- Updated i18n config to include dashboard namespace

**Languages Supported:**
- English, Spanish, French, Portuguese, Chinese (Simplified)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-03 11:17:47 +00:00
parent de691525fb
commit acadfe7905
16 changed files with 289 additions and 54 deletions

View File

@@ -28,19 +28,21 @@ import {
Group,
Logout,
} from '@mui/icons-material';
import { useTranslation } from '@/hooks/useTranslation';
export const MobileNav = () => {
const { t } = useTranslation('common');
const [drawerOpen, setDrawerOpen] = useState(false);
const router = useRouter();
const menuItems = [
{ label: 'Dashboard', icon: <Home />, path: '/' },
{ label: 'Track Activity', icon: <Timeline />, path: '/track' },
{ label: 'AI Assistant', icon: <Chat />, path: '/ai-assistant' },
{ label: 'Insights', icon: <Insights />, path: '/insights' },
{ label: 'Children', icon: <ChildCare />, path: '/children' },
{ label: 'Family', icon: <Group />, path: '/family' },
{ label: 'Settings', icon: <Settings />, path: '/settings' },
{ label: t('navigation.dashboard'), icon: <Home />, path: '/' },
{ label: t('navigation.trackActivity'), icon: <Timeline />, path: '/track' },
{ label: t('navigation.ai'), icon: <Chat />, path: '/ai-assistant' },
{ label: t('navigation.insights'), icon: <Insights />, path: '/insights' },
{ label: t('navigation.children'), icon: <ChildCare />, path: '/children' },
{ label: t('navigation.family'), icon: <Group />, path: '/family' },
{ label: t('navigation.settings'), icon: <Settings />, path: '/settings' },
];
const handleNavigate = (path: string) => {
@@ -61,7 +63,7 @@ export const MobileNav = () => {
<MenuIcon />
</IconButton>
<Typography variant="h6" component="div" sx={{ flexGrow: 1, color: '#DB7093', fontWeight: 600 }}>
Maternal
{t('appName')}
</Typography>
<IconButton
color="primary"
@@ -113,7 +115,7 @@ export const MobileNav = () => {
<ListItemIcon sx={{ color: 'error.main' }}>
<Logout />
</ListItemIcon>
<ListItemText primary="Logout" />
<ListItemText primary={t('navigation.logout')} />
</ListItemButton>
</ListItem>
</List>