From fb68c34a58e2a1fb31e36520bfe72bc449066e98 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 11 Dec 2013 16:17:08 +0530 Subject: [PATCH] ... --- src/calibre/gui2/tweak_book/check.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/tweak_book/check.py b/src/calibre/gui2/tweak_book/check.py index 39eaba1b42..8a7b16c45b 100644 --- a/src/calibre/gui2/tweak_book/check.py +++ b/src/calibre/gui2/tweak_book/check.py @@ -119,12 +119,13 @@ class Check(QSplitter): self.items.currentRow(), _('Try to fix only this error'), err.INDIVIDUAL_FIX) self.help.setText( - '''

%s [%d]

+ '''

%s [%d / %d]

%s %s

%s

%s%s

%s
- ''' % (header, self.items.currentRow()+1, _('Click to open in editor'), err.name, loc, err.HELP, ifix, + ''' % (header, self.items.currentRow()+1, self.items.count(), + _('Click to open in editor'), err.name, loc, err.HELP, ifix, _('Try to fix all fixable errors automatically. Only works for some types of error.'), _('Try to correct all fixable errors automatically'), _('Re-run the check'), _('Re-run check')))