Update uninstall_game.py message to say moved-to-the-trash instead.

This commit is contained in:
Daniel Johnson 2023-12-05 18:19:12 -05:00
parent edbd32b24c
commit 160e678725

View file

@ -199,11 +199,11 @@ class UninstallMultipleGamesDialog(Gtk.Dialog):
if len(delete_files_warning_games) == 1: if len(delete_files_warning_games) == 1:
question = _( question = _(
"Please confirm.\nEverything under <b>%s</b>\n" "Please confirm.\nEverything under <b>%s</b>\n"
"will be deleted." "will be moved to the trash."
) % gtk_safe(delete_files_warning_games[0].directory) ) % gtk_safe(delete_files_warning_games[0].directory)
else: else:
question = _( question = _(
"Please confirm.\nAll the files for %d games will be deleted." "Please confirm.\nAll the files for %d games will be moved to the trash."
) % len(delete_files_warning_games) ) % len(delete_files_warning_games)
dlg = QuestionDialog( dlg = QuestionDialog(