summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGotam Gorabh <gautamy672@gmail.com>2022-08-10 09:19:35 +0000
committerAntónio Fernandes <antoniof@gnome.org>2022-08-10 09:19:35 +0000
commita72a7b6670f3b3f0d3739567ce4364f46f0af15f (patch)
treee29be0dd72abbc8c382ba48f392ac6cbd7133977
parentb73266f5574e6c7944df10ea879185a8276c592d (diff)
downloadnautilus-a72a7b6670f3b3f0d3739567ce4364f46f0af15f.tar.gz
window: Change toast title "deleted" to "moved to trash"
Consistent with the context menu "Move to Trash" label. Fixes #2360
-rw-r--r--src/nautilus-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-window.c b/src/nautilus-window.c
index ca037ab1a..f1e1e341a 100644
--- a/src/nautilus-window.c
+++ b/src/nautilus-window.c
@@ -1177,7 +1177,7 @@ toast_undo_deleted_get_label (NautilusFileUndoInfo *undo_info)
{
file_label = g_file_get_basename (files->data);
/* Translators: only one item has been deleted and %s is its name. */
- label = g_markup_printf_escaped (_("“%s” deleted"), file_label);
+ label = g_markup_printf_escaped (_("“%s” moved to trash"), file_label);
g_free (file_label);
}
else