From 33875132ab29bea161539b0bb7322e21bd72e480 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 15 Sep 2013 08:58:52 +0530 Subject: [PATCH] Fix #1225499 [non translatable "completed" for completed jobs](https://bugs.launchpad.net/calibre/+bug/1225499) --- src/calibre/gui2/actions/polish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/actions/polish.py b/src/calibre/gui2/actions/polish.py index 0f21807afb..5320eb6a68 100644 --- a/src/calibre/gui2/actions/polish.py +++ b/src/calibre/gui2/actions/polish.py @@ -487,7 +487,7 @@ class PolishAction(InterfaceAction): db.save_original_format(book_id, fmt, notify=False) with open(path, 'rb') as f: db.add_format(book_id, fmt, f, index_is_id=True) - self.gui.status_bar.show_message(job.description + (' completed'), 2000) + self.gui.status_bar.show_message(job.description + _(' completed'), 2000) try: shutil.rmtree(base) parent = os.path.dirname(base)