feat: implement i18n localization for exam components and detail page commit

This commit is contained in:
mengstabketemaw
2026-06-30 16:46:19 +03:00
parent 9fd59f52ed
commit 7f76c862fb
9 changed files with 721 additions and 243 deletions

View File

@@ -103,7 +103,7 @@ export function AppSidebar({
if (collapsed) {
return (
<Tooltip key={item.label} label={item.label} position="right" withArrow>
<Tooltip key={item.label} label={t(item.label)} position="right" withArrow>
<UnstyledButton
onClick={() => onNavigate(item)}
style={{
@@ -127,7 +127,7 @@ export function AppSidebar({
<NavLink
key={item.label}
active={active}
label={item.label}
label={t(item.label)}
leftSection={<ItemIcon size={19} stroke={1.6} />}
onClick={() => onNavigate(item)}
variant="light"