From a02f7dc89bebba2ecf5ea08b0a1141d5da8e272a Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Tue, 10 Apr 2018 13:43:20 +0300 Subject: [PATCH] Fix a typo. --- pysollib/ui/tktile/solverdialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysollib/ui/tktile/solverdialog.py b/pysollib/ui/tktile/solverdialog.py index e8519090..e38725d8 100644 --- a/pysollib/ui/tktile/solverdialog.py +++ b/pysollib/ui/tktile/solverdialog.py @@ -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')