diff options
| author | Fuwn <[email protected]> | 2026-03-24 07:52:49 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-24 07:52:49 +0000 |
| commit | cfaca120dd330653b8746e03ba701def4e3f5216 (patch) | |
| tree | 4caba0da97cfbd62de57b1f8fb461283694e7c6d /Sora/Views/Settings/SettingsView.swift | |
| parent | test: fix verify with Nimble and simulator boot (diff) | |
| download | sora-testing-cfaca120dd330653b8746e03ba701def4e3f5216.tar.xz sora-testing-cfaca120dd330653b8746e03ba701def4e3f5216.zip | |
Refine settings language and structure
Diffstat (limited to 'Sora/Views/Settings/SettingsView.swift')
| -rw-r--r-- | Sora/Views/Settings/SettingsView.swift | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift index 814a303..4ea60b8 100644 --- a/Sora/Views/Settings/SettingsView.swift +++ b/Sora/Views/Settings/SettingsView.swift @@ -4,45 +4,45 @@ struct SettingsView: View { var body: some View { NavigationStack { Form { - Section(header: Text("Appearance and Behavior")) { + Section("Browsing") { NavigationLink(destination: SettingsSectionProviderView()) { - Text("Provider Settings") + Text("Source") } NavigationLink(destination: SettingsSectionThumbnailsView()) { - Text("Thumbnail Settings") + Text("Thumbnails") } NavigationLink(destination: SettingsSectionDetailsView()) { - Text("Details Settings") + Text("Viewer") } } - Section(header: Text("Search")) { + Section("Search") { SettingsSectionSearchView() } - Section(header: Text("Collections")) { + Section("Library") { NavigationLink(destination: SettingsCollectionsListView()) { - Text("Manage Collections") + Text("Collections") } } - Section(header: Text("Settings")) { + Section("Storage & Sync") { SettingsSectionSettingsView() } - Section(header: Text("Import and Export")) { + Section("Bookmarks") { SettingsSectionImportExportView() } #if DEBUG - Section(header: Text("Debug")) { + Section("Debug") { SettingsSectionDebugView() } #endif - Section(header: Text("Credits")) { + Section("About") { SettingsSectionCreditsView() } } |