summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2023-04-06 11:07:11 -0500
committerMichael Catanzaro <mcatanzaro@redhat.com>2023-04-06 11:07:11 -0500
commitf4aa883b1d6d92633092c70200fd60fc1d23ccda (patch)
tree583fe193dc0bcd5f9d321b4060a6719c696c9620
parent1ad293f851b32e8d8481ff716b4f9f355323e757 (diff)
downloadgnome-initial-setup-f4aa883b1d6d92633092c70200fd60fc1d23ccda.tar.gz
privacy: tweak text regarding collected data
We currently say that personal information is automatically removed, but in fact nothing is really removed: it's just not there in the first place. By default, ABRT collects only short backtraces containing function names and line numbers, so there's no way personal info could be sent. The only way to accidentally send personal info is if you manually report a bug to Bugzilla, in which case a full backtrace is collected including stack variables, which might contain sensitive personal information. This setting does not control manual data submission.
-rw-r--r--gnome-initial-setup/pages/privacy/gis-privacy-page.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnome-initial-setup/pages/privacy/gis-privacy-page.c b/gnome-initial-setup/pages/privacy/gis-privacy-page.c
index 94632bb..b910651 100644
--- a/gnome-initial-setup/pages/privacy/gis-privacy-page.c
+++ b/gnome-initial-setup/pages/privacy/gis-privacy-page.c
@@ -68,17 +68,17 @@ update_os_data (GisPrivacyPage *page)
/* Translators: the first parameter here is the name of a distribution,
* like "Fedora" or "Ubuntu".
*/
- subtitle = g_strdup_printf (_("Sends technical reports that have personal information automatically "
- "removed. Data is collected by %1$s (<a href='%2$s'>privacy policy</a>)."),
- name, privacy_policy);
+ subtitle = g_strdup_printf (_("Sends technical reports that do not contain personal information. "
+ "Data is collected by %1$s (<a href='%2$s'>privacy policy</a>)."),
+ name, privacy_policy);
}
else
{
/* Translators: the parameter here is the name of a distribution,
* like "Fedora" or "Ubuntu".
*/
- subtitle = g_strdup_printf (_("Sends technical reports that have personal information automatically "
- "removed. Data is collected by %s."), name);
+ subtitle = g_strdup_printf (_("Sends technical reports that do not contain personal information. "
+ "Data is collected by %s."), name);
}
gtk_label_set_markup (GTK_LABEL (priv->reporting_label), subtitle);
return TRUE;