From 10d3e91bbbec6f8dfa268175766825724d5961e1 Mon Sep 17 00:00:00 2001 From: byGalax Date: Thu, 14 May 2026 06:16:40 +0200 Subject: [PATCH] chore(mobile): restore German umlauts + ellipsis in call screen labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Phase-3 implementer ASCII'd four strings to side-step a Windows console encoding issue during the apply step. The TypeScript / Metro toolchain handles non-ASCII string literals cleanly — the workaround was unnecessary and produced ugly UI labels ("Anruf lauft", "Hoerer", "Verbinde ..."). Restore the originals. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/mobile/app/(app)/call.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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();