Update translation files

This commit is contained in:
kramo
2023-03-29 08:17:47 +02:00
parent eca96d8a5a
commit f17663323d
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Cartridges\n" "Project-Id-Version: Cartridges\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-29 08:15+0200\n" "POT-Creation-Date: 2023-03-29 08:17+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -358,7 +358,7 @@ msgstr ""
#. The variable is the number of games #. The variable is the number of games
#: src/utils/importer.py:94 #: src/utils/importer.py:94
#, python-brace-format #, python-brace-format
msgid "Successfully imported {imported_no} games." msgid "Successfully imported {games_no} games."
msgstr "" msgstr ""
#: src/utils/create_details_window.py:41 #: src/utils/create_details_window.py:41

View File

@@ -86,10 +86,10 @@ class Importer:
_("Successfully imported 1 game."), _("Successfully imported 1 game."),
) )
elif self.games_no > 1: elif self.games_no > 1:
imported_no = self.games_no games_no = self.games_no
create_dialog( create_dialog(
self.parent_widget, self.parent_widget,
_("Games Imported"), _("Games Imported"),
# The variable is the number of games # The variable is the number of games
_(f"Successfully imported {imported_no} games."), _(f"Successfully imported {games_no} games."),
) )