From 0d5802bf7427bba63f0c139541d962cf08390537 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 22 Jun 2021 19:44:06 +0100 Subject: [PATCH] Clarify anonymouslity of stats sharing. Fixes #467 --- Aaru.Gui/ViewModels/Dialogs/SettingsViewModel.cs | 2 +- Aaru/Commands/Configure.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Aaru.Gui/ViewModels/Dialogs/SettingsViewModel.cs b/Aaru.Gui/ViewModels/Dialogs/SettingsViewModel.cs index e9b3c4b8f..cf50aa730 100644 --- a/Aaru.Gui/ViewModels/Dialogs/SettingsViewModel.cs +++ b/Aaru.Gui/ViewModels/Dialogs/SettingsViewModel.cs @@ -151,7 +151,7 @@ pool with no way of using them to identify you."; [NotNull] public string SaveStatsText => "Save stats about your Aaru usage?"; [NotNull] - public string ShareStatsText => "Share your stats anonymously?"; + public string ShareStatsText => "Share your stats (anonymously)?"; [NotNull] public string CommandStatsText => "Gather statistics about command usage?"; [NotNull] diff --git a/Aaru/Commands/Configure.cs b/Aaru/Commands/Configure.cs index cae298b89..4771e04eb 100644 --- a/Aaru/Commands/Configure.cs +++ b/Aaru/Commands/Configure.cs @@ -172,7 +172,7 @@ namespace Aaru.Commands while(pressedKey.Key != ConsoleKey.Y && pressedKey.Key != ConsoleKey.N) { - AaruConsole.Write("Do you want to share your stats anonymously? (Y/N): "); + AaruConsole.Write("Do you want to share your stats (anonymously)? (Y/N): "); pressedKey = System.Console.ReadKey(); AaruConsole.WriteLine(); }