We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3593f commit 42b850bCopy full SHA for 42b850b
1 file changed
Copilot for Xcode/OpenAIView.swift
@@ -61,8 +61,8 @@ struct OpenAIView: View {
61
}
62
63
Picker(selection: $settings.chatGPTLanguage) {
64
- ForEach(ChatGPTLanguage.allCases, id: \.self) { language in
65
- Text(language.fullName).tag(language.rawValue)
+ ForEach(Locale.availableLocales, id: \.identifier) { locale in
+ Text(locale.languageName).tag(locale.languageName)
66
67
} label: {
68
Text("Reply in Language")
0 commit comments