mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
String changes
This commit is contained in:
parent
1bc5389576
commit
13df7004df
@ -931,9 +931,13 @@ class CoversWidget(QWidget): # {{{
|
|||||||
if num < 2:
|
if num < 2:
|
||||||
txt = _('Could not find any covers for <b>%s</b>')%self.book.title
|
txt = _('Could not find any covers for <b>%s</b>')%self.book.title
|
||||||
else:
|
else:
|
||||||
txt = _('Found <b>%(num)d</b> possible covers for %(title)s. '
|
if num == 2:
|
||||||
'When the download completes, the covers will be sorted by size.')%dict(num=num-1,
|
txt = _('Found a cover for {title}').format(self.title)
|
||||||
title=self.title)
|
else:
|
||||||
|
txt = _(
|
||||||
|
'Found <b>{num}</b> covers for {title}. When the download completes,'
|
||||||
|
' the covers will be sorted by size.').format(
|
||||||
|
title=self.title, num=num-1)
|
||||||
self.msg.setText(txt)
|
self.msg.setText(txt)
|
||||||
self.msg.setWordWrap(True)
|
self.msg.setWordWrap(True)
|
||||||
self.covers_view.stop()
|
self.covers_view.stop()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user