Fix trash typo

This commit is contained in:
Heliguy
2023-10-23 03:07:50 -04:00
parent 54c77ed588
commit a7e4c7d740
2 changed files with 4 additions and 8 deletions

View File

@@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 ""

View File

@@ -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")