summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sora/Views/Settings/Section/SettingsSectionSettingsView.swift')
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionSettingsView.swift4
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()