diff --git a/src/frontend/src/features/rooms/livekit/components/SidePanel.tsx b/src/frontend/src/features/rooms/livekit/components/SidePanel.tsx index 3ca50e6e..542b1e2b 100644 --- a/src/frontend/src/features/rooms/livekit/components/SidePanel.tsx +++ b/src/frontend/src/features/rooms/livekit/components/SidePanel.tsx @@ -16,6 +16,7 @@ import { Info } from './Info' type StyledSidePanelProps = { title: string + ariaLabel: string children: ReactNode onClose: () => void isClosed: boolean @@ -26,6 +27,7 @@ type StyledSidePanelProps = { const StyledSidePanel = ({ title, + ariaLabel, children, onClose, isClosed, @@ -33,7 +35,7 @@ const StyledSidePanel = ({ isSubmenu = false, onBack, }: StyledSidePanelProps) => ( -
{children} - + ) type PanelProps = { @@ -144,6 +148,7 @@ export const SidePanel = () => { return ( { layoutStore.activePanelId = null layoutStore.activeSubPanelId = null diff --git a/src/frontend/src/locales/de/rooms.json b/src/frontend/src/locales/de/rooms.json index 19f823e5..102d30b9 100644 --- a/src/frontend/src/locales/de/rooms.json +++ b/src/frontend/src/locales/de/rooms.json @@ -270,6 +270,7 @@ } }, "sidePanel": { + "ariaLabel": "Seitenleiste", "heading": { "participants": "Teilnehmer", "effects": "Effekte", diff --git a/src/frontend/src/locales/en/rooms.json b/src/frontend/src/locales/en/rooms.json index 7f1b32d9..cda662e1 100644 --- a/src/frontend/src/locales/en/rooms.json +++ b/src/frontend/src/locales/en/rooms.json @@ -270,6 +270,7 @@ } }, "sidePanel": { + "ariaLabel": "Sidepanel", "heading": { "participants": "Participants", "effects": "Backgrounds and Effects", diff --git a/src/frontend/src/locales/fr/rooms.json b/src/frontend/src/locales/fr/rooms.json index 2adcc6ba..4f102435 100644 --- a/src/frontend/src/locales/fr/rooms.json +++ b/src/frontend/src/locales/fr/rooms.json @@ -270,6 +270,7 @@ } }, "sidePanel": { + "ariaLabel": "Panneau latéral", "heading": { "participants": "Participants", "effects": "Arrière-plans et effets", diff --git a/src/frontend/src/locales/nl/rooms.json b/src/frontend/src/locales/nl/rooms.json index be7c0f25..eff87701 100644 --- a/src/frontend/src/locales/nl/rooms.json +++ b/src/frontend/src/locales/nl/rooms.json @@ -270,6 +270,7 @@ } }, "sidePanel": { + "ariaLabel": "Zijbalk", "heading": { "participants": "Deelnemers", "effects": "Effecten",