Skip to content

Commit

Permalink
Adds missing label
Browse files Browse the repository at this point in the history
  • Loading branch information
vishnuravi committed Apr 4, 2024
1 parent 99be463 commit 0890915
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HealthGPT/Onboarding/LLMSourceSelection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct LLMSourceSelection: View {
}

private var sourceSelector: some View {
Picker("", selection: $llmSource) {
Picker("LLM_SOURCE_PICKER_LABEL", selection: $llmSource) {
ForEach(LLMSource.allCases) { source in
Text(source.localizedDescription)
.tag(source)
Expand Down
13 changes: 10 additions & 3 deletions HealthGPT/Supporting Files/Localizable.xcstrings
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"sourceLanguage" : "en",
"strings" : {
"" : {

},
"API_KEY_SUBTITLE" : {
"extractionState" : "manual",
"localizations" : {
Expand Down Expand Up @@ -222,6 +219,16 @@
}
}
},
"LLM_SOURCE_PICKER_LABEL" : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Choose an LLM source"
}
}
}
},
"LLM_SOURCE_SELECTION_BUTTON" : {
"localizations" : {
"en" : {
Expand Down

0 comments on commit 0890915

Please sign in to comment.