mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-03 20:03:45 +02:00
...
This commit is contained in:
parent
2685cb6430
commit
863297630b
1 changed files with 3 additions and 3 deletions
|
|
@ -306,9 +306,9 @@ def do_add(self, data):
|
|||
|
||||
if count > 0:
|
||||
m.books_added(count)
|
||||
gui.status_bar.show_message(_(
|
||||
'Added %(num)d book(s) automatically from %(src)s') %
|
||||
dict(num=count, src=self.worker.path), 2000)
|
||||
gui.status_bar.show_message(
|
||||
ngettext('Added a book automatically from {src}', 'Added {num} books automatically from {src}', count).format(
|
||||
num=count, src=self.worker.path), 2000)
|
||||
gui.refresh_cover_browser()
|
||||
|
||||
if needs_rescan:
|
||||
|
|
|
|||
Loading…
Reference in a new issue