From d0a4d13eacc5f5eb138988b9fcc9800ff1f61ab1 Mon Sep 17 00:00:00 2001 From: Taksh Date: Fri, 7 Aug 2026 20:58:05 +0530 Subject: [PATCH] l10n: localize the voice-recording cancel button the icon-only cancel button in the recording HUD used a raw "Cancel" literal instead of the common.cancel catalog key, so VoiceOver announced it in English regardless of locale. reuse the key already used for every other cancel button in the app. --- bitchat/Views/ContentComposerView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitchat/Views/ContentComposerView.swift b/bitchat/Views/ContentComposerView.swift index 64021d52..1742df22 100644 --- a/bitchat/Views/ContentComposerView.swift +++ b/bitchat/Views/ContentComposerView.swift @@ -238,7 +238,7 @@ private extension ContentComposerView { } Spacer() Button(action: voiceRecordingVM.cancel) { - Label("Cancel", systemImage: "xmark.circle") + Label("common.cancel", systemImage: "xmark.circle") .labelStyle(.iconOnly) .font(.bitchatSystem(size: 18)) .foregroundColor(.red)