diff --git a/src/properties_window.py b/src/properties_window.py index 0de9917..4b28d47 100644 --- a/src/properties_window.py +++ b/src/properties_window.py @@ -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")) diff --git a/src/window.py b/src/window.py index b8fa78b..f9dd91e 100644 --- a/src/window.py +++ b/src/window.py @@ -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"))