mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-29 09:56:30 +01:00
...
This commit is contained in:
parent
156478d133
commit
68637cd26a
1 changed files with 2 additions and 2 deletions
|
|
@ -497,7 +497,8 @@ def do_polish(self, book_id_map):
|
|||
if d.jobs:
|
||||
self.gui.jobs_pointer.start()
|
||||
self.gui.status_bar.show_message(
|
||||
_('Start polishing of %d book(s)') % len(d.jobs), 2000)
|
||||
ngettext('Start polishing the book', 'Start polishing of {} books',
|
||||
len(d.jobs)).format(len(d.jobs)), 2000)
|
||||
|
||||
def book_polished(self, job):
|
||||
if job.failed:
|
||||
|
|
@ -534,4 +535,3 @@ def book_polished(self, job):
|
|||
from calibre.library import db
|
||||
d = Polish(db(), {1:{'EPUB'}, 2:{'AZW3'}})
|
||||
d.exec_()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue