1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

PySolFC does translate all texts in the Game Finished window (#315)

* PySolFC does translate the Game Finished window

* Fix E501 line too long
This commit is contained in:
Arthusppp 2023-05-30 04:48:57 +02:00 committed by GitHub
parent ddddf08400
commit ed7bb31f07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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