mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
db6ad0dcf9
commit
4808b62298
@ -404,8 +404,9 @@ class JobError(QDialog): # {{{
|
|||||||
self.retry_func()
|
self.retry_func()
|
||||||
|
|
||||||
def update_suppress_state(self):
|
def update_suppress_state(self):
|
||||||
self.suppress.setText(_(
|
self.suppress.setText(ngettext(
|
||||||
'Hide the remaining %d error messages'%len(self.queue)))
|
'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.suppress.setVisible(len(self.queue) > 3)
|
||||||
self.do_resize()
|
self.do_resize()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user