summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAutomeris naranja <automerisnaranja@tutanota.com>2023-03-07 10:05:29 -0300
committerFelipe Borges <felipeborges@gnome.org>2023-03-15 13:25:20 +0000
commite17efcca8284f28e4fec85418ecf5bfc0a9bc84e (patch)
tree993e85522ecd1a51035cf62041026ce18772d2b7
parent8a829ccc12bc53853acc2606dbc180bbf990980d (diff)
downloadgnome-control-center-e17efcca8284f28e4fec85418ecf5bfc0a9bc84e.tar.gz
usage: Fix confirmation dialog when clearing history
When clearing file history, a dialog appears saying that all files will be permanently deleted. However, this isn't true. Only the recent files list will be cleared and the files will remain intact. Fixes https://gitlab.gnome.org/GNOME/gnome-control-center/-/issues/2366
-rw-r--r--panels/usage/cc-usage-panel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/panels/usage/cc-usage-panel.c b/panels/usage/cc-usage-panel.c
index 42e9ea19a..5a84363e3 100644
--- a/panels/usage/cc-usage-panel.c
+++ b/panels/usage/cc-usage-panel.c
@@ -344,8 +344,8 @@ clear_recent (CcUsagePanel *self)
GtkDialog *dialog;
dialog = run_warning (self,
- _("Delete all the recent files?"),
- _("All the recent files will be permanently deleted."),
+ _("Clear File History?"),
+ _("After clearing, lists of recently used files will appear empty."),
_("_Clear History"));
g_signal_connect_object (dialog,