Remove oxymoron in user file trashing dialog

This commit is contained in:
heliguy
2023-10-21 05:41:52 -04:00
parent f9f5b5d6b2
commit aa2f6bb58b
2 changed files with 2 additions and 2 deletions

View File

@@ -79,7 +79,7 @@ def show_properties_window(widget, index, window):
def clean_button_handler(_widget):
dialog = Adw.MessageDialog.new(window, _("Send {}'s User Data to the Trash?").format(app_name))
dialog.set_body(_("Your user files and data for this app will be sent to the trash."))
dialog.set_body(_("Your files and data for this app will be sent to the trash."))
dialog.set_close_response("cancel")
dialog.add_response("cancel", _("Cancel"))
dialog.add_response("continue", _("Trash Data"))

View File

@@ -490,7 +490,7 @@ class WarehouseWindow(Adw.ApplicationWindow):
#self.refresh_list_of_flatpaks(_a, False)
def batchCleanHandler(self, widget):
dialog = Adw.MessageDialog.new(self, _("Trash Selected Apps' User Data?"), _("Your user files and data for these apps will be sent to the trash."))
dialog = Adw.MessageDialog.new(self, _("Trash Selected Apps' User Data?"), _("Your files and data for these apps will be sent to the trash."))
dialog.set_close_response("cancel")
dialog.add_response("cancel", _("Cancel"))
dialog.add_response("continue", _("Trash Data"))