mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-14 18:46:23 +01:00
String changes
This commit is contained in:
parent
21f04f1a5c
commit
8db0c710d8
1 changed files with 4 additions and 1 deletions
|
|
@ -214,7 +214,10 @@ def monitor_scan(self):
|
|||
self.break_cycles()
|
||||
return
|
||||
self.pd.max = len(self.file_groups)
|
||||
self.pd.title = _('Reading metadata and adding to library (%d books)...') % self.pd.max
|
||||
self.pd.title = ngettext(
|
||||
'Reading metadata and adding to library (one book)...',
|
||||
'Reading metadata and adding to library ({} books)...',
|
||||
self.pd.max).format(self.pd.max)
|
||||
self.pd.msg = ''
|
||||
self.pd.value = 0
|
||||
self.pool = Pool(name='AddBooks') if self.pool is None else self.pool
|
||||
|
|
|
|||
Loading…
Reference in a new issue