From f97b60e716876cdb9e8b0cb91b2e2454b7b1f85f Mon Sep 17 00:00:00 2001 From: Chris Stroud Date: Thu, 9 May 2024 10:49:39 -0400 Subject: [PATCH] [741] Rectify strings that should not be translated --- Vocable/Features/Settings/SettingsViewController.swift | 2 +- .../Settings/VoiceSettings/PersonalVoiceViewController.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Vocable/Features/Settings/SettingsViewController.swift b/Vocable/Features/Settings/SettingsViewController.swift index 64b27feb..e5d78435 100644 --- a/Vocable/Features/Settings/SettingsViewController.swift +++ b/Vocable/Features/Settings/SettingsViewController.swift @@ -49,7 +49,7 @@ final class SettingsViewController: VocableCollectionViewController, MFMailCompo case .contactDevs: return String(localized: "settings.cell.contact_developers.title") case .pidTuner: - return String(localized: "settings.cell.tune_cursor.title") + return "Tune Cursor" // Debug-only, not localized case .listeningMode: return String(localized: "settings.cell.listening_mode.title") case .voiceConfiguration: diff --git a/Vocable/Features/Settings/VoiceSettings/PersonalVoiceViewController.swift b/Vocable/Features/Settings/VoiceSettings/PersonalVoiceViewController.swift index f7025d41..cb1395cd 100644 --- a/Vocable/Features/Settings/VoiceSettings/PersonalVoiceViewController.swift +++ b/Vocable/Features/Settings/VoiceSettings/PersonalVoiceViewController.swift @@ -176,7 +176,7 @@ enum PersonalVoiceEmptyState: EmptyStateRepresentable { return switch self { case .denied: String(localized: "personal_voices.empty_state.denied.button.title") case .notAuthorized: String(localized: "personal_voices.empty_state.not_authorized.button.title") - case .noContent: String(localized: "personal_voices.empty_state.no_content.button.title") + case .noContent: nil } } }