From 72d7830abc1b8c4093d17e4fd5ac448c68641271 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 13 Feb 2017 03:25:51 +0530 Subject: [PATCH] Fix #1664053 [Whole notification not translated](https://bugs.launchpad.net/calibre/+bug/1664053) --- src/calibre/gui2/actions/convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/actions/convert.py b/src/calibre/gui2/actions/convert.py index 1e64073ffc..4add2fc884 100644 --- a/src/calibre/gui2/actions/convert.py +++ b/src/calibre/gui2/actions/convert.py @@ -264,8 +264,8 @@ class ConvertAction(InterfaceAction): with open(temp_files[-1].name, 'rb') as data: db.add_format(book_id, fmt, data, index_is_id=True) self.gui.book_converted.emit(book_id, fmt) - self.gui.status_bar.show_message(job.description + - (' completed'), 2000) + self.gui.status_bar.show_message(job.description + ' ' + + _('completed'), 2000) finally: for f in temp_files: try: