mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 15:13:41 +02:00
...
This commit is contained in:
parent
db6ad0dcf9
commit
4808b62298
1 changed files with 3 additions and 2 deletions
|
|
@ -404,8 +404,9 @@ def retry(self):
|
|||
self.retry_func()
|
||||
|
||||
def update_suppress_state(self):
|
||||
self.suppress.setText(_(
|
||||
'Hide the remaining %d error messages'%len(self.queue)))
|
||||
self.suppress.setText(ngettext(
|
||||
'Hide the remaining error message',
|
||||
'Hide the {} remaining error messages', len(self.queue)).format(len(self.queue)))
|
||||
self.suppress.setVisible(len(self.queue) > 3)
|
||||
self.do_resize()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue