diff --git a/src/calibre/gui2/preferences/search.ui b/src/calibre/gui2/preferences/search.ui
index a582862ce1..c6d53ecf01 100644
--- a/src/calibre/gui2/preferences/search.ui
+++ b/src/calibre/gui2/preferences/search.ui
@@ -86,7 +86,10 @@
' + _( 'This will cause the beautify current file action to be performed automatically every' ' time you open a HTML/CSS/etc. file for editing.')) l.addRow(lw) lw = self('inline_spell_check') - lw.setText(_('Show misspelled words underlined in the code view')) + lw.setText(_('Show &misspelled words underlined in the code view')) lw.setToolTip('
' + _( 'This will cause spelling errors to be highlighted in the code view' ' for easy correction as you type.')) l.addRow(lw) lw = self('editor_accepts_drops') - lw.setText(_('Allow drag and drop editing of text')) + lw.setText(_('Allow drag and drop &editing of text')) lw.setToolTip('
' + _( 'Allow using drag and drop to move text around in the editor.' ' It can be useful to turn this off if you have a misbehaving touchpad.')) @@ -277,14 +277,14 @@ class IntegrationSettings(BasicSettings): self.setLayout(l) um = self('update_metadata_from_calibre') - um.setText(_('Update metadata embedded in the book when opening')) + um.setText(_('Update &metadata embedded in the book when opening')) um.setToolTip('
' + _( 'When the file is opened, update the metadata embedded in the book file to the current metadata' ' in the calibre library.')) l.addRow(um) ask = self('choose_tweak_fmt') - ask.setText(_('Ask which format to edit if more than one format is available for the book')) + ask.setText(_('Ask which &format to edit if more than one format is available for the book')) l.addRow(ask) order = self.order_widget('tweak_fmt_order') @@ -301,7 +301,7 @@ class MainWindowSettings(BasicSettings): self.setLayout(l) nd = self('nestable_dock_widgets') - nd.setText(_('Allow dockable windows to be nested inside the dock areas')) + nd.setText(_('Allow dockable &windows to be nested inside the dock areas')) nd.setToolTip('
' + _( 'By default, you can have only a single row or column of windows in the dock' ' areas (the areas around the central editors). This option allows' @@ -318,7 +318,7 @@ class MainWindowSettings(BasicSettings): ('bottom', 'left'):_('The bottom-left corner'), ('bottom', 'right'):_('The bottom-right corner')}[(v, h)] l.addRow(cn + ':', w) nd = self('restore_book_state') - nd.setText(_('Restore state of previously edited book when opening it again')) + nd.setText(_('Restore &state of previously edited book when opening it again')) nd.setToolTip('
' + _( 'When opening a previously edited book again, restore its state. That means all open' ' files are automatically re-opened and the cursor is positioned at its previous location.' @@ -326,7 +326,7 @@ class MainWindowSettings(BasicSettings): l.addRow(nd) nd = self('file_list_shows_full_pathname') - nd.setText(_('Show full file paths in the File browser')) + nd.setText(_('Show full &file paths in the File browser')) nd.setToolTip('
' + _( 'Showing the full file paths is useful when editing books that contain' ' multiple files with the same file name.' @@ -682,13 +682,13 @@ class Preferences(QDialog): self.bb = bb = QDialogButtonBox(QDialogButtonBox.Ok | QDialogButtonBox.Cancel) bb.accepted.connect(self.accept) bb.rejected.connect(self.reject) - self.rdb = b = bb.addButton(_('Restore all defaults'), bb.ResetRole) + self.rdb = b = bb.addButton(_('Restore all &defaults'), bb.ResetRole) b.setToolTip(_('Restore defaults for all preferences')) b.clicked.connect(self.restore_all_defaults) - self.rcdb = b = bb.addButton(_('Restore current defaults'), bb.ResetRole) + self.rcdb = b = bb.addButton(_('Restore ¤t defaults'), bb.ResetRole) b.setToolTip(_('Restore defaults for currently displayed preferences')) b.clicked.connect(self.restore_current_defaults) - self.rconfs = b = bb.addButton(_('Restore confirmations'), bb.ResetRole) + self.rconfs = b = bb.addButton(_('Restore c&onfirmations'), bb.ResetRole) b.setToolTip(_('Restore all disabled confirmation prompts')) b.clicked.connect(self.restore_confirmations)