From 9cb2c5f24d0514d8e0dda916480992b422713942 Mon Sep 17 00:00:00 2001 From: Grant Bartlett Date: Mon, 10 Apr 2023 17:24:06 +0100 Subject: [PATCH] Rewords privacy notice as per #427 (#459) --- DXMainClient/DXGUI/Generic/PrivacyNotification.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DXMainClient/DXGUI/Generic/PrivacyNotification.cs b/DXMainClient/DXGUI/Generic/PrivacyNotification.cs index 3557142eb..1bdc4a6fe 100644 --- a/DXMainClient/DXGUI/Generic/PrivacyNotification.cs +++ b/DXMainClient/DXGUI/Generic/PrivacyNotification.cs @@ -27,7 +27,7 @@ public override void Initialize() lblDescription.X = UIDesignConstants.EMPTY_SPACE_SIDES; lblDescription.Y = UIDesignConstants.EMPTY_SPACE_TOP; lblDescription.Text = Renderer.FixText( - "By using the client you agree to the CnCNet Terms & Conditions as well as the CnCNet Privacy Policy. Privacy-related options can be configured in the client options.".L10N("Client:Main:TOSText"), + "This application makes use of CnCNet web & tunnel server services and is subject to collection of technical & other necessary information through them.".L10N("Client:Main:TOSText"), lblDescription.FontIndex, WindowManager.RenderResolutionX - (UIDesignConstants.EMPTY_SPACE_SIDES * 2)).Text; AddChild(lblDescription); @@ -58,7 +58,7 @@ public override void Initialize() lblExplanation.Name = nameof(lblExplanation); lblExplanation.X = UIDesignConstants.EMPTY_SPACE_SIDES; lblExplanation.Y = lblMoreInformation.Bottom + UIDesignConstants.CONTROL_VERTICAL_MARGIN * 2; - lblExplanation.Text = "No worries, we're not actually using your data for anything evil, but we have to display this message due to regulations.".L10N("Client:Main:TOSExplanation"); + lblExplanation.Text = "By using this application you agree to the CnCNet Terms & Conditions as well as the CnCNet Privacy Policy. Privacy-related options can be configured in the client settings.".L10N("Client:Main:TOSExplanation"); lblExplanation.TextColor = UISettings.ActiveSettings.SubtleTextColor; AddChild(lblExplanation);