feat: localize dashboard shell

This commit is contained in:
poyrazavsever
2026-07-19 03:07:10 +03:00
parent 5d3e720280
commit c7a4f3de51
11 changed files with 303 additions and 77 deletions
+26 -9
View File
@@ -13,6 +13,7 @@ import {
export type SidebarNavItem = {
title: string;
titleKey: string;
href?: string;
icon?: LucideIcon;
items?: SidebarNavItem[];
@@ -20,33 +21,49 @@ export type SidebarNavItem = {
export type SidebarNavGroup = {
title: string;
titleKey: string;
items: SidebarNavItem[];
};
export const sidebarData: SidebarNavGroup[] = [
{
title: "GENEL BAKIŞ",
titleKey: "navigation.groups.overview",
items: [
{ title: "Dashboard", href: "/", icon: Sparkles },
{ title: "Takvim", href: "/calendar", icon: Calendar },
{ title: "Analizler", href: "/analytics", icon: BarChart3 },
{ title: "Dashboard", titleKey: "navigation.items.dashboard", href: "/", icon: Sparkles },
{ title: "Takvim", titleKey: "navigation.items.calendar", href: "/calendar", icon: Calendar },
{ title: "Analizler", titleKey: "navigation.items.analytics", href: "/analytics", icon: BarChart3 },
],
},
{
title: "OPERASYON",
titleKey: "navigation.groups.operations",
items: [
{ title: "Müşteriler", href: "/clients", icon: Building2 },
{ title: "Projeler", href: "/projects", icon: FolderKanban },
{ title: "Görevler", href: "/tasks", icon: CheckSquare2 },
{ title: "Finans", href: "/finance", icon: Wallet },
{ title: "Müşteriler", titleKey: "navigation.items.clients", href: "/clients", icon: Building2 },
{ title: "Projeler", titleKey: "navigation.items.projects", href: "/projects", icon: FolderKanban },
{ title: "Görevler", titleKey: "navigation.items.tasks", href: "/tasks", icon: CheckSquare2 },
{ title: "Finans", titleKey: "navigation.items.finance", href: "/finance", icon: Wallet },
],
},
{
title: "KİŞİSEL",
items: [{ title: "Günlük", href: "/journal", icon: BookOpenText }],
titleKey: "navigation.groups.personal",
items: [{ title: "Günlük", titleKey: "navigation.items.journal", href: "/journal", icon: BookOpenText }],
},
{
title: "AI ASİSTAN",
items: [{ title: "Sohbet", href: "/chat", icon: MessageCircleHeart }],
titleKey: "navigation.groups.ai",
items: [{ title: "Sohbet", titleKey: "navigation.items.chat", href: "/chat", icon: MessageCircleHeart }],
},
];
export function localizeSidebarData(t: (key: string) => string): SidebarNavGroup[] {
return sidebarData.map((group) => ({
...group,
title: t(group.titleKey),
items: group.items.map((item) => ({
...item,
title: t(item.titleKey),
})),
}));
}