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

Fix a typo.

This commit is contained in:
Shlomi Fish 2018-04-10 13:43:20 +03:00
parent 45bbd12c02
commit a02f7dc89b

View file

@ -168,8 +168,8 @@ class BaseSolverDialog:
return
hints_len = len(solver.hints)-1
if hints_len > 0:
t = ungettext('This game is solveable in %d move.',
'This game is solveable in %d moves.',
t = ungettext('This game is solvable in %d move.',
'This game is solvable in %d moves.',
hints_len) % hints_len
self.result_label['text'] = t
self.play_button.config(state='normal')