From e45fd25914dcc9565ef3f2bf6e21c326da3ae710 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 10 Mar 2011 22:20:40 -0700 Subject: [PATCH] ... --- src/calibre/gui2/metadata/single.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/metadata/single.py b/src/calibre/gui2/metadata/single.py index 020086a592..d2b932c7ec 100644 --- a/src/calibre/gui2/metadata/single.py +++ b/src/calibre/gui2/metadata/single.py @@ -358,11 +358,13 @@ class MetadataSingleDialogBase(ResizableDialog): next_ = self.db.title(self.row_list[self.current_row+1]) 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.setVisible(next_ 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.setVisible(prev is not None) self(self.db.id(self.row_list[self.current_row]))