summaryrefslogtreecommitdiff
path: root/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-03-24 07:52:49 +0000
committerFuwn <[email protected]>2026-03-24 07:52:49 +0000
commitcfaca120dd330653b8746e03ba701def4e3f5216 (patch)
tree4caba0da97cfbd62de57b1f8fb461283694e7c6d /Sora/Views/Settings/Section/SettingsSectionSettingsView.swift
parenttest: fix verify with Nimble and simulator boot (diff)
downloadsora-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.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()