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/Section/SettingsSectionSettingsView.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/Section/SettingsSectionSettingsView.swift')
| -rw-r--r-- | Sora/Views/Settings/Section/SettingsSectionSettingsView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift b/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift index 273cc82..784ee2a 100644 --- a/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift +++ b/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift @@ -7,14 +7,14 @@ struct SettingsSectionSettingsView: View { Toggle(isOn: $settings.enableSync) { Text("Sync with iCloud") - Text("Keep bookmarks, search history, and providers consistent across all your devices.") + Text("Keep bookmarks, collections, search history, and sources in sync across your devices.") .font(.caption) } .onChange(of: settings.enableSync) { _, _ in settings.triggerSyncIfNeededForAll() } - Button("Reset to Defaults") { + Button("Reset Settings") { settings.resetToDefaults() } .trailingFrame() |