From aa1a86eda1551396e86411290e220e8200371344 Mon Sep 17 00:00:00 2001 From: Dan Ditomaso Date: Fri, 23 May 2025 13:08:11 -0400 Subject: [PATCH] fix: missing translations --- src/components/Sidebar.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index cc81c05d..d93c8538 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -90,24 +90,24 @@ export const Sidebar = ({ children }: SidebarProps) => { const pages: NavLink[] = [ { - name: t("navigation.title_messages"), + name: t("navigation_title_messages"), icon: MessageSquareIcon, page: "messages", count: numUnread ? numUnread : undefined, }, - { name: t("navigation.title_map"), icon: MapIcon, page: "map" }, + { name: t("navigation_title_map"), icon: MapIcon, page: "map" }, { - name: t("navigation.title_radioConfig"), + name: t("navigation_title_radioConfig"), icon: SettingsIcon, page: "config", }, { - name: t("navigation.title_channels"), + name: t("navigation_title_channels"), icon: LayersIcon, page: "channels", }, { - name: `${t("navigation.title_nodes")} (${ + name: `${t("navigation_title_nodes")} (${ Math.max(getNodesLength() - 1, 0) })`, icon: UsersIcon, @@ -150,7 +150,7 @@ export const Sidebar = ({ children }: SidebarProps) => { - + {pages.map((link) => (