diff options
Diffstat (limited to 'Sora/Views/Settings')
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsSectionProviderView.swift | 2 | ||||
| -rw-r--r-- | Sora/Views/Settings/SettingsView.swift | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Sora/Views/Settings/Section/SettingsSectionProviderView.swift b/Sora/Views/Settings/Section/SettingsSectionProviderView.swift index 9ba7610..cbfae37 100644 --- a/Sora/Views/Settings/Section/SettingsSectionProviderView.swift +++ b/Sora/Views/Settings/Section/SettingsSectionProviderView.swift @@ -107,7 +107,7 @@ struct SettingsSectionProviderView: View { TextField("Domain", text: $newDomain) .autocorrectionDisabled(true) - Picker("Flavor", selection: $newFlavor) { + Picker("Provider Type", selection: $newFlavor) { ForEach(BooruProviderFlavor.allCases, id: \.self) { flavor in Text(flavor.rawValue).tag(flavor) } diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift index 3f1d309..814a303 100644 --- a/Sora/Views/Settings/SettingsView.swift +++ b/Sora/Views/Settings/SettingsView.swift @@ -4,7 +4,7 @@ struct SettingsView: View { var body: some View { NavigationStack { Form { - Section(header: Text("Appearance & Behavior")) { + Section(header: Text("Appearance and Behavior")) { NavigationLink(destination: SettingsSectionProviderView()) { Text("Provider Settings") } @@ -32,7 +32,7 @@ struct SettingsView: View { SettingsSectionSettingsView() } - Section(header: Text("Import & Export")) { + Section(header: Text("Import and Export")) { SettingsSectionImportExportView() } |