diff --git a/po/warehouse.pot b/po/warehouse.pot index f1055e2..f5ced7e 100644 --- a/po/warehouse.pot +++ b/po/warehouse.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: io.github.flattool.heliguy.Warehouse\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-23 03:04-0400\n" +"POT-Creation-Date: 2023-10-23 03:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -249,8 +249,8 @@ msgstr "" msgid "Trashed user data" msgstr "" -#: src/window.py:426 -msgid "Send {}'s User Data to the trash?" +#: src/window.py:426 src/properties_window.py:84 +msgid "Send {}'s User Data to the Trash?" msgstr "" #: src/window.py:427 src/properties_window.py:85 @@ -477,10 +477,6 @@ msgstr "" msgid "Could not trash data" msgstr "" -#: src/properties_window.py:84 -msgid "Send {}'s User Data to the Trash?" -msgstr "" - #: src/properties_window.py:102 src/remotes_window.py:72 msgid "Copied {}" msgstr "" diff --git a/src/window.py b/src/window.py index a1f1942..0329532 100644 --- a/src/window.py +++ b/src/window.py @@ -423,7 +423,7 @@ class WarehouseWindow(Adw.ApplicationWindow): self.lookup_action(f"trash{index}").set_enabled(False) self.toast_overlay.add_toast(Adw.Toast.new(_("Trashed user data"))) - dialog = Adw.MessageDialog.new(self,_("Send {}'s User Data to the trash?").format(name)) + dialog = Adw.MessageDialog.new(self,_("Send {}'s User Data to the Trash?").format(name)) dialog.set_body(_("Your files and data for this app will be sent to the trash.")) dialog.add_response("cancel", _("Cancel")) dialog.set_close_response("cancel")