We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7758ab commit e5a1bb4Copy full SHA for e5a1bb4
Geranium/SettingsView.swift
@@ -25,7 +25,7 @@ struct SettingsView: View {
25
// i made catgpt work for me on this one
26
"zh-Hans": "Chinese (Simplified)", //
27
"zh-Hant": "Chinese (Traditional)", //
28
- "en": "English",
+ "en-US": "English",
29
"es": "Spanish", //
30
"es-419": "Spanish (Latin America)", //
31
"fr": "French", //
@@ -73,7 +73,7 @@ struct SettingsView: View {
73
}
74
if DebugStuff {
75
Button("Set language to English") {
76
- UserDefaults.standard.set(["en"], forKey: "AppleLanguages")
+ UserDefaults.standard.set(["en-US"], forKey: "AppleLanguages")
77
exitGracefully()
78
79
Text("UUID : \(appSettings.usrUUID)")
0 commit comments