mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Rename GDPR message.
This commit is contained in:
@@ -45,13 +45,13 @@ namespace Aaru.Gui.Dialogs
|
||||
|
||||
lblGdpr1.Text =
|
||||
"In compliance with the European Union General Data Protection Regulation 2016/679 (GDPR),\n" +
|
||||
"we must give you the following information about DiscImageChef and ask if you want to opt-in\n" +
|
||||
"we must give you the following information about Aaru and ask if you want to opt-in\n" +
|
||||
"in some information sharing.";
|
||||
|
||||
lblGdpr2.Text =
|
||||
"Disclaimer: Because DiscImageChef is an open source software this information, and therefore,\n" +
|
||||
"Disclaimer: Because Aaru is an open source software this information, and therefore,\n" +
|
||||
"compliance with GDPR only holds true if you obtained a certificated copy from its original\n" +
|
||||
"authors. In case of doubt, close DiscImageChef now and ask in our IRC support channel.";
|
||||
"authors. In case of doubt, close Aaru now and ask in our IRC support channel.";
|
||||
|
||||
lblGdpr3.Text =
|
||||
"For any information sharing your IP address may be stored in our server, in a way that is not\n" +
|
||||
@@ -62,13 +62,13 @@ namespace Aaru.Gui.Dialogs
|
||||
|
||||
#region Device reports
|
||||
lblSaveReportsGlobally.Text =
|
||||
"With the 'device-report' command, DiscImageChef creates a report of a device, that includes its\n" +
|
||||
"With the 'device-report' command, Aaru creates a report of a device, that includes its\n" +
|
||||
"manufacturer, model, firmware revision and/or version, attached bus, size, and supported commands.\n" +
|
||||
"The serial number of the device is not stored in the report. If used with the debug parameter,\n" +
|
||||
"extra information about the device will be stored in the report. This information is known to contain\n" +
|
||||
"the device serial number in non-standard places that prevent the automatic removal of it on a handful\n" +
|
||||
"of devices. A human-readable copy of the report in XML format is always created in the same directory\n" +
|
||||
"where DiscImageChef is being run from.";
|
||||
"where Aaru is being run from.";
|
||||
|
||||
chkSaveReportsGlobally.Text =
|
||||
"Do you want to save device reports in shared folder of your computer? (Y/N): ";
|
||||
@@ -79,7 +79,7 @@ namespace Aaru.Gui.Dialogs
|
||||
"Sharing a report with us will send it to our server, that's in the european union territory, where it\n" +
|
||||
"will be manually analized by an european union citizen to remove any trace of personal identification\n" +
|
||||
"from it. Once that is done, it will be shared in our stats website, https://www.discimagechef.app\n" +
|
||||
"These report will be used to improve DiscImageChef support, and in some cases, to provide emulation of the\n" +
|
||||
"These report will be used to improve Aaru support, and in some cases, to provide emulation of the\n" +
|
||||
"devices to other open-source projects. In any case, no information linking the report to you will be stored.";
|
||||
|
||||
chkShareReports.Text = "Do you want to share your device reports with us? (Y/N): ";
|
||||
@@ -88,12 +88,12 @@ namespace Aaru.Gui.Dialogs
|
||||
|
||||
#region Statistics
|
||||
lblStatistics.Text =
|
||||
"DiscImageChef can store some usage statistics. These statistics are limited to the number of times a\n" +
|
||||
"Aaru can store some usage statistics. These statistics are limited to the number of times a\n" +
|
||||
"command is executed, a filesystem, partition, or device is used, the operating system version, and other.\n" +
|
||||
"In no case, any information besides pure statistical usage numbers is stored, and they're just joint to the\n" +
|
||||
"pool with no way of using them to identify you.";
|
||||
|
||||
chkSaveStats.Text = "Do you want to save stats about your DiscImageChef usage? (Y/N): ";
|
||||
chkSaveStats.Text = "Do you want to save stats about your Aaru usage? (Y/N): ";
|
||||
|
||||
if(Aaru.Settings.Settings.Current.Stats != null)
|
||||
{
|
||||
|
||||
@@ -69,14 +69,14 @@ namespace Aaru.Commands
|
||||
if(_gdprChange)
|
||||
{
|
||||
DicConsole.WriteLine("In compliance with the European Union General Data Protection Regulation 2016/679 (GDPR),\n" +
|
||||
"we must give you the following information about DiscImageChef and ask if you want to opt-in\n" +
|
||||
"we must give you the following information about Aaru and ask if you want to opt-in\n" +
|
||||
"in some information sharing.");
|
||||
|
||||
DicConsole.WriteLine();
|
||||
|
||||
DicConsole.WriteLine("Disclaimer: Because DiscImageChef is an open source software this information, and therefore,\n" +
|
||||
DicConsole.WriteLine("Disclaimer: Because Aaru is an open source software this information, and therefore,\n" +
|
||||
"compliance with GDPR only holds true if you obtained a certificated copy from its original\n" +
|
||||
"authors. In case of doubt, close DiscImageChef now and ask in our IRC support channel.");
|
||||
"authors. In case of doubt, close Aaru now and ask in our IRC support channel.");
|
||||
|
||||
DicConsole.WriteLine();
|
||||
|
||||
@@ -91,13 +91,13 @@ namespace Aaru.Commands
|
||||
DicConsole.WriteLine();
|
||||
|
||||
DicConsole.WriteLine(
|
||||
"With the 'device-report' command, DiscImageChef creates a report of a device, that includes its\n" +
|
||||
"With the 'device-report' command, Aaru creates a report of a device, that includes its\n" +
|
||||
"manufacturer, model, firmware revision and/or version, attached bus, size, and supported commands.\n" +
|
||||
"The serial number of the device is not stored in the report. If used with the debug parameter,\n" +
|
||||
"extra information about the device will be stored in the report. This information is known to contain\n" +
|
||||
"the device serial number in non-standard places that prevent the automatic removal of it on a handful\n" +
|
||||
"of devices. A human-readable copy of the report in XML format is always created in the same directory\n" +
|
||||
"where DiscImageChef is being run from.");
|
||||
"where Aaru is being run from.");
|
||||
|
||||
while(pressedKey.Key != ConsoleKey.Y &&
|
||||
pressedKey.Key != ConsoleKey.N)
|
||||
@@ -115,7 +115,7 @@ namespace Aaru.Commands
|
||||
DicConsole.WriteLine("Sharing a report with us will send it to our server, that's in the european union territory, where it\n" +
|
||||
"will be manually analyzed by an european union citizen to remove any trace of personal identification\n" +
|
||||
"from it. Once that is done, it will be shared in our stats website, https://www.discimagechef.app\n" +
|
||||
"These report will be used to improve DiscImageChef support, and in some cases, to provide emulation of the\n" +
|
||||
"These report will be used to improve Aaru support, and in some cases, to provide emulation of the\n" +
|
||||
"devices to other open-source projects. In any case, no information linking the report to you will be stored.");
|
||||
|
||||
while(pressedKey.Key != ConsoleKey.Y &&
|
||||
@@ -132,7 +132,7 @@ namespace Aaru.Commands
|
||||
#region Statistics
|
||||
DicConsole.WriteLine();
|
||||
|
||||
DicConsole.WriteLine("DiscImageChef can store some usage statistics. These statistics are limited to the number of times a\n" +
|
||||
DicConsole.WriteLine("Aaru can store some usage statistics. These statistics are limited to the number of times a\n" +
|
||||
"command is executed, a filesystem, partition, or device is used, the operating system version, and other.\n" +
|
||||
"In no case, any information besides pure statistical usage numbers is stored, and they're just joint to the\n" +
|
||||
"pool with no way of using them to identify you.");
|
||||
@@ -142,7 +142,7 @@ namespace Aaru.Commands
|
||||
while(pressedKey.Key != ConsoleKey.Y &&
|
||||
pressedKey.Key != ConsoleKey.N)
|
||||
{
|
||||
DicConsole.Write("Do you want to save stats about your DiscImageChef usage? (Y/N): ");
|
||||
DicConsole.Write("Do you want to save stats about your Aaru usage? (Y/N): ");
|
||||
pressedKey = System.Console.ReadKey();
|
||||
DicConsole.WriteLine();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user