mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
0781e43fa4
commit
e45fd25914
@ -358,11 +358,13 @@ class MetadataSingleDialogBase(ResizableDialog):
|
|||||||
next_ = self.db.title(self.row_list[self.current_row+1])
|
next_ = self.db.title(self.row_list[self.current_row+1])
|
||||||
|
|
||||||
if next_ is not None:
|
if next_ is not None:
|
||||||
tip = _('Save changes and edit the metadata of %s')%next_
|
tip = (_('Save changes and edit the metadata of %s')+
|
||||||
|
' [Alt+Right]')%next_
|
||||||
self.next_button.setToolTip(tip)
|
self.next_button.setToolTip(tip)
|
||||||
self.next_button.setVisible(next_ is not None)
|
self.next_button.setVisible(next_ is not None)
|
||||||
if prev is not None:
|
if prev is not None:
|
||||||
tip = _('Save changes and edit the metadata of %s')%prev
|
tip = (_('Save changes and edit the metadata of %s')+
|
||||||
|
' [Alt+Left]')%prev
|
||||||
self.prev_button.setToolTip(tip)
|
self.prev_button.setToolTip(tip)
|
||||||
self.prev_button.setVisible(prev is not None)
|
self.prev_button.setVisible(prev is not None)
|
||||||
self(self.db.id(self.row_list[self.current_row]))
|
self(self.db.id(self.row_list[self.current_row]))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user