diff --git a/src/App/Pages/Settings/AboutSettingsPage.xaml b/src/App/Pages/Settings/AboutSettingsPage.xaml index 8a9cd964637..51bc10aeea2 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 1866d368d9a..a37168a0e23 100644 --- a/src/App/Pages/Settings/AboutSettingsPageViewModel.cs +++ b/src/App/Pages/Settings/AboutSettingsPageViewModel.cs @@ -36,10 +36,10 @@ public AboutSettingsPageViewModel() 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 @@ public string AppInfo 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 628efaf0777..11eecb7f925 100644 --- a/src/App/Resources/AppResources.Designer.cs +++ b/src/App/Resources/AppResources.Designer.cs @@ -1714,6 +1714,15 @@ public class AppResources { } } + /// + /// 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 @@ public class AppResources { } } + /// + /// 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 4efdb26f77e..6c8f38dd485 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 fbb70030abb..c256816bb01 100644 --- a/src/Core/ExternalLinksConstants.cs +++ b/src/Core/ExternalLinksConstants.cs @@ -6,7 +6,7 @@ public static class ExternalLinksConstants 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.