From ed7bb31f075abfcd003104704db42fcd0e6b0001 Mon Sep 17 00:00:00 2001 From: Arthusppp <85434237+Arthusppp@users.noreply.github.com> Date: Tue, 30 May 2023 04:48:57 +0200 Subject: [PATCH] PySolFC does translate all texts in the Game Finished window (#315) * PySolFC does translate the Game Finished window * Fix E501 line too long --- pysollib/game/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pysollib/game/__init__.py b/pysollib/game/__init__.py index 271a7f41..3606d6ea 100644 --- a/pysollib/game/__init__.py +++ b/pysollib/game/__init__.py @@ -2136,9 +2136,9 @@ class Game(object): else: self.finished = True self.playSample("gamelost", priority=1000) - text = "Game finished, but not without my help..." - hintsused = ("You used %(h)s hint(s) during this game." - % {'h': self.stats.hints}) + text = _("Game finished, but not without my help...") + hintsused = _("You used %(h)s hint(s) during this game.") % { + 'h': self.stats.hints} d = MfxMessageDialog( self.top, title=_("Game finished"), bitmap="info", text=_(text + '\n\n' + hintsused),