persistence-handler: Drop the word successfully from notification

The notification is shown when all operations are completed and Nautilus doesn't
have a focus. It says that "All file operations have been successfully completed".
This is shown also when some errors were skipped. So the word "successfully"
is a bit misleading. Let's drop that word from the notification.

Relates: https://gitlab.gnome.org/GNOME/nautilus/-/issues/1953
This commit is contained in:
Ondrej Holy 2021-10-05 17:44:26 +02:00 committed by António Fernandes
parent f0ce14cc90
commit 79dca04bc5

View file

@ -145,7 +145,7 @@ progress_persistence_handler_show_complete_notification (NautilusProgressPersist
complete_notification = g_notification_new (_("File Operations"));
g_notification_set_body (complete_notification,
_("All file operations have been successfully completed"));
_("All file operations have been completed"));
nautilus_application_send_notification (self->app,
"transfer-complete",
complete_notification);