From e35c8c840a995da21f5dcc7a41376deb6b109781 Mon Sep 17 00:00:00 2001 From: cdricms <36056008+cdricms@users.noreply.github.com> Date: Sun, 19 Jul 2026 23:20:45 +0200 Subject: [PATCH] feat(apple): replace About source-code link with privacy policy --- apple/VniDrop/Features/Settings/SettingsSections.swift | 6 +++--- apple/VniDrop/Resources/Localizable.xcstrings | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apple/VniDrop/Features/Settings/SettingsSections.swift b/apple/VniDrop/Features/Settings/SettingsSections.swift index 746957a..b4f03f8 100644 --- a/apple/VniDrop/Features/Settings/SettingsSections.swift +++ b/apple/VniDrop/Features/Settings/SettingsSections.swift @@ -116,7 +116,7 @@ struct StorageSettings: View { struct AboutSettings: View { @ObservedObject var model: SettingsModel - private static let sourceURL = URL(string: "https://github.com/vnidrop/vnidrop")! + private static let privacyPolicyURL = URL(string: "https://github.com/vnidrop/vnidrop")! var body: some View { Section { @@ -152,8 +152,8 @@ struct AboutSettings: View { LabeledContent(String(localized: "os_version_title"), value: device.operatingSystem) } LabeledContent(String(localized: "about_license_label"), value: "Apache 2.0") - Link(destination: Self.sourceURL) { - Label(String(localized: "about_source_label"), systemImage: "link") + Link(destination: Self.privacyPolicyURL) { + Label(String(localized: "about_privacy_policy_label"), systemImage: "hand.raised") } } diff --git a/apple/VniDrop/Resources/Localizable.xcstrings b/apple/VniDrop/Resources/Localizable.xcstrings index 7634ae3..b34e4e2 100644 --- a/apple/VniDrop/Resources/Localizable.xcstrings +++ b/apple/VniDrop/Resources/Localizable.xcstrings @@ -207,12 +207,12 @@ } } }, - "about_source_label" : { + "about_privacy_policy_label" : { "localizations" : { "en" : { "stringUnit" : { "state" : "translated", - "value" : "Source code" + "value" : "Privacy policy" } } }