String changes

This commit is contained in:
Kovid Goyal 2020-02-20 11:25:27 +05:30
parent 2be73652a6
commit 3196e631ef
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -512,7 +512,7 @@ class Main(MainWindow):
'window-close.png', _('&Close current tab'), self.central.close_current_editor, 'close-current-tab', 'Ctrl+W', _( 'window-close.png', _('&Close current tab'), self.central.close_current_editor, 'close-current-tab', 'Ctrl+W', _(
'Close the currently open tab')) 'Close the currently open tab'))
self.action_close_all_but_current_tab = reg( self.action_close_all_but_current_tab = reg(
'edit-clear.png', _('&Close other tabs'), self.central.close_all_but_current_editor, 'close-all-but-current-tab', 'Ctrl+Alt+W', _( 'edit-clear.png', _('C&lose other tabs'), self.central.close_all_but_current_editor, 'close-all-but-current-tab', 'Ctrl+Alt+W', _(
'Close all tabs except the current tab')) 'Close all tabs except the current tab'))
self.action_help = treg( self.action_help = treg(
'help.png', _('User &Manual'), lambda : open_url(QUrl(localize_user_manual_link( 'help.png', _('User &Manual'), lambda : open_url(QUrl(localize_user_manual_link(

View File

@ -281,7 +281,7 @@ class MainOverlay: # {{{
E.ul( E.ul(
ac(_('Font size'), _('Change text size'), self.overlay.show_font_size_chooser, 'Aa', True), ac(_('Font size'), _('Change text size'), self.overlay.show_font_size_chooser, 'Aa', True),
ac(_('Preferences'), _('Configure the book reader'), self.overlay.show_prefs, 'cogs'), ac(_('Preferences'), _('Configure the book viewer'), self.overlay.show_prefs, 'cogs'),
), ),
class_=MAIN_OVERLAY_ACTIONS_CLASS class_=MAIN_OVERLAY_ACTIONS_CLASS