diff --git a/src/components/layout/AppLayout.tsx b/src/components/layout/AppLayout.tsx index 39944bcd..e67a67e9 100644 --- a/src/components/layout/AppLayout.tsx +++ b/src/components/layout/AppLayout.tsx @@ -136,14 +136,14 @@ export default function AppLayout({ children }: { children?: React.ReactNode }) onClick={() => setMobileOpen(false)} > - My account + {t('nav.my_account', 'My account')} diff --git a/src/components/layout/Header.tsx b/src/components/layout/Header.tsx index 9d2b28b8..5f548332 100644 --- a/src/components/layout/Header.tsx +++ b/src/components/layout/Header.tsx @@ -187,7 +187,7 @@ export default function Header() { onClick={() => { logout(); navigate('/'); setMobileOpen(false); }} className="w-full px-4 py-2.5 rounded-xl text-sm font-medium border border-border text-muted-foreground hover:text-foreground hover:bg-secondary/50 transition-all" > - Sign out + {t('nav.sign_out', 'Sign out')} ) : ( diff --git a/src/i18n/locales/en/common.json b/src/i18n/locales/en/common.json index 4adb63cc..fdd380f9 100644 --- a/src/i18n/locales/en/common.json +++ b/src/i18n/locales/en/common.json @@ -12,7 +12,8 @@ "app_personas": "Personas", "app_focus_groups": "Focus Groups", "app_billing": "Billing", - "app_admin": "Admin" + "app_admin": "Admin", + "sign_out": "Sign out" }, "hero": { "badge": "Synthetic Research Platform", diff --git a/src/i18n/locales/ru/common.json b/src/i18n/locales/ru/common.json index f00b8856..2515e212 100644 --- a/src/i18n/locales/ru/common.json +++ b/src/i18n/locales/ru/common.json @@ -12,7 +12,8 @@ "app_personas": "Персоны", "app_focus_groups": "Фокус-группы", "app_billing": "Биллинг", - "app_admin": "Админ" + "app_admin": "Админ", + "sign_out": "Выйти" }, "hero": { "badge": "Платформа синтетических исследований", diff --git a/src/i18n/locales/uk/common.json b/src/i18n/locales/uk/common.json index 3feb9196..88609e06 100644 --- a/src/i18n/locales/uk/common.json +++ b/src/i18n/locales/uk/common.json @@ -12,7 +12,8 @@ "app_personas": "Персони", "app_focus_groups": "Фокус-групи", "app_billing": "Білінг", - "app_admin": "Адмін" + "app_admin": "Адмін", + "sign_out": "Вийти" }, "hero": { "badge": "Платформа синтетичних досліджень",