diff --git a/apps/mobile/app/(app)/call.tsx b/apps/mobile/app/(app)/call.tsx index 525f4e9..79a6ec2 100644 --- a/apps/mobile/app/(app)/call.tsx +++ b/apps/mobile/app/(app)/call.tsx @@ -50,13 +50,13 @@ export default function CallScreen() { return ( - {connecting ? 'Verbinde ...' : 'Anruf lauft'} + {connecting ? 'Verbinde …' : 'Anruf läuft'} {state.kind === 'connected' && {duration}} {participants.length === 0 && ( - Warten auf Teilnehmer ... + Warten auf Teilnehmer … )} {participants.map((p) => ( @@ -64,7 +64,7 @@ export default function CallScreen() { {p.name} - {p.speaking ? 'Spricht ...' : 'Stumm'} + {p.speaking ? 'Spricht …' : 'Stumm'} @@ -80,7 +80,7 @@ export default function CallScreen() { }} /> { void toggleSpeaker();