mirror of
https://github.com/kiwix/kiwix-apple.git
synced 2025-09-25 21:05:09 -04:00
Fix double localizations
This commit is contained in:
parent
9a629b4718
commit
0265d6eb2a
@ -31,7 +31,7 @@ struct ReadingSettings: View {
|
||||
SettingSection(name: "reading_settings.external_link.title".localized) {
|
||||
Picker(selection: $externalLinkLoadingPolicy) {
|
||||
ForEach(ExternalLinkLoadingPolicy.allCases) { loadingPolicy in
|
||||
Text(loadingPolicy.name.localized).tag(loadingPolicy)
|
||||
Text(loadingPolicy.name).tag(loadingPolicy)
|
||||
}
|
||||
} label: { }
|
||||
}
|
||||
@ -40,7 +40,7 @@ struct ReadingSettings: View {
|
||||
SettingSection(name: "reading_settings.search_snippet.title".localized) {
|
||||
Picker(selection: $searchResultSnippetMode) {
|
||||
ForEach(SearchResultSnippetMode.allCases) { snippetMode in
|
||||
Text(snippetMode.name.localized).tag(snippetMode)
|
||||
Text(snippetMode.name).tag(snippetMode)
|
||||
}
|
||||
} label: { }
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user