Skip to content

Commit

Permalink
[741] Rectify strings that should not be translated
Browse files Browse the repository at this point in the history
  • Loading branch information
Clstroud committed May 9, 2024
1 parent 5e2bd43 commit f97b60e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vocable/Features/Settings/SettingsViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}

0 comments on commit f97b60e

Please sign in to comment.