diff --git a/damus/Features/Settings/Views/AppearanceSettingsView.swift b/damus/Features/Settings/Views/AppearanceSettingsView.swift index e73d0aca..ec6d8ca9 100644 --- a/damus/Features/Settings/Views/AppearanceSettingsView.swift +++ b/damus/Features/Settings/Views/AppearanceSettingsView.swift @@ -160,6 +160,14 @@ struct AppearanceSettingsView: View { } } + Section(header: Text("Privacy", comment: "Section header for privacy related settings")) { + Toggle(NSLocalizedString("Share Damus client tag", comment: "Setting to publish a client tag indicating Damus posted the note"), isOn: $settings.publish_client_tag) + .toggleStyle(.switch) + Text("Client tags can help other apps understand new kinds of events. Turn this off if you prefer not to identify Damus when posting.", comment: "Description for the client tag privacy toggle.") + .font(.footnote) + .foregroundStyle(.secondary) + } + // MARK: - Profiles Section( header: Text("Profiles", comment: "Section title for profile view configuration."),