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),