From dcba6384a7f8f91065a7c7e10246b2893d09e0bf Mon Sep 17 00:00:00 2001
From: mpbw2 <59324545+mpbw2@users.noreply.github.com>
Date: Wed, 24 Jan 2024 15:07:39 -0500
Subject: [PATCH] Add privacy policy link to about screen (#2954)
---
src/App/Pages/Settings/AboutSettingsPage.xaml | 4 ++--
.../Settings/AboutSettingsPageViewModel.cs | 10 +++++-----
src/App/Resources/AppResources.Designer.cs | 18 ++++++++++++++++++
src/App/Resources/AppResources.resx | 6 ++++++
src/Core/ExternalLinksConstants.cs | 2 +-
5 files changed, 32 insertions(+), 8 deletions(-)
diff --git a/src/App/Pages/Settings/AboutSettingsPage.xaml b/src/App/Pages/Settings/AboutSettingsPage.xaml
index 8a9cd9646..51bc10aee 100644
--- a/src/App/Pages/Settings/AboutSettingsPage.xaml
+++ b/src/App/Pages/Settings/AboutSettingsPage.xaml
@@ -31,8 +31,8 @@
diff --git a/src/App/Pages/Settings/AboutSettingsPageViewModel.cs b/src/App/Pages/Settings/AboutSettingsPageViewModel.cs
index 1866d368d..a37168a0e 100644
--- a/src/App/Pages/Settings/AboutSettingsPageViewModel.cs
+++ b/src/App/Pages/Settings/AboutSettingsPageViewModel.cs
@@ -36,10 +36,10 @@ namespace Bit.App.Pages
AppResources.ContinueToHelpCenter,
ExternalLinksConstants.HELP_CENTER));
- ContactBitwardenSupportCommand = CreateDefaultAsyncCommnad(
- () => LaunchUriAsync(AppResources.ContactSupportDescriptionLong,
- AppResources.ContinueToContactSupport,
- ExternalLinksConstants.CONTACT_SUPPORT));
+ GoToPrivacyPolicyCommand = CreateDefaultAsyncCommnad(
+ () => LaunchUriAsync(AppResources.PrivacyPolicyDescriptionLong,
+ AppResources.ContinueToPrivacyPolicy,
+ ExternalLinksConstants.PRIVACY_POLICY));
GoToWebVaultCommand = CreateDefaultAsyncCommnad(
() => LaunchUriAsync(AppResources.ExploreMoreFeaturesOfYourBitwardenAccountOnTheWebApp,
@@ -82,7 +82,7 @@ namespace Bit.App.Pages
public AsyncCommand ToggleSubmitCrashLogsCommand { get; }
public ICommand GoToHelpCenterCommand { get; }
- public ICommand ContactBitwardenSupportCommand { get; }
+ public ICommand GoToPrivacyPolicyCommand { get; }
public ICommand GoToWebVaultCommand { get; }
public ICommand GoToLearnAboutOrgsCommand { get; }
public ICommand RateTheAppCommand { get; }
diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs
index 628efaf07..11eecb7f9 100644
--- a/src/App/Resources/AppResources.Designer.cs
+++ b/src/App/Resources/AppResources.Designer.cs
@@ -1714,6 +1714,15 @@ namespace Bit.App.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Continue to privacy policy?.
+ ///
+ public static string ContinueToPrivacyPolicy {
+ get {
+ return ResourceManager.GetString("ContinueToPrivacyPolicy", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Continue to web app?.
///
@@ -5516,6 +5525,15 @@ namespace Bit.App.Resources {
}
}
+ ///
+ /// Looks up a localized string similar to Check out our privacy policy on bitwarden.com..
+ ///
+ public static string PrivacyPolicyDescriptionLong {
+ get {
+ return ResourceManager.GetString("PrivacyPolicyDescriptionLong", resourceCulture);
+ }
+ }
+
///
/// Looks up a localized string similar to Bitwarden keeps your vault automatically synced by using push notifications. For the best possible experience, please select "Allow" on the following prompt when asked to allow push notifications..
///
diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx
index 4efdb26f7..6c8f38dd4 100644
--- a/src/App/Resources/AppResources.resx
+++ b/src/App/Resources/AppResources.resx
@@ -2821,6 +2821,9 @@ Do you want to switch to this account?
Continue to contact support?
+
+ Continue to privacy policy?
+
Continue to app store?
@@ -2840,6 +2843,9 @@ Do you want to switch to this account?
Can’t find what you are looking for? Reach out to Bitwarden support on bitwarden.com.
+
+ Check out our privacy policy on bitwarden.com.
+
Explore more features of your Bitwarden account on the web app.
diff --git a/src/Core/ExternalLinksConstants.cs b/src/Core/ExternalLinksConstants.cs
index fbb70030a..c256816bb 100644
--- a/src/Core/ExternalLinksConstants.cs
+++ b/src/Core/ExternalLinksConstants.cs
@@ -6,7 +6,7 @@
public const string HELP_ABOUT_ORGANIZATIONS = "https://bitwarden.com/help/about-organizations/";
public const string HELP_FINGERPRINT_PHRASE = "https://bitwarden.com/help/fingerprint-phrase/";
- public const string CONTACT_SUPPORT = "https://bitwarden.com/contact/";
+ public const string PRIVACY_POLICY = "https://bitwarden.com/privacy/";
///
/// Link to go to settings website. Requires to pass website URL as parameter.