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:
parent
ddddf08400
commit
ed7bb31f07
1 changed files with 3 additions and 3 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Reference in a new issue