From 91532c8ea955b452ad1096a5421202ca62d7a12f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 16 Feb 2022 11:04:09 +0530 Subject: [PATCH] string changes --- manual/develop.rst | 2 +- src/calibre/gui2/preferences/look_feel.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manual/develop.rst b/manual/develop.rst index 46cf795f79..3c78c20ff8 100644 --- a/manual/develop.rst +++ b/manual/develop.rst @@ -309,7 +309,7 @@ You can insert the following two lines of code to start an interactive Python se ipython(locals()) When running from the command line, this will start an interactive Python interpreter with access to all -locally defined variables (variables in the local scope). The interactive prompt even has TAB completion +locally defined variables (variables in the local scope). The interactive prompt even has :kbd:`Tab` completion for object properties and you can use the various Python facilities for introspection, such as :func:`dir`, :func:`type`, :func:`repr`, etc. diff --git a/src/calibre/gui2/preferences/look_feel.py b/src/calibre/gui2/preferences/look_feel.py index 13ba0a04c0..9b76a08c2c 100644 --- a/src/calibre/gui2/preferences/look_feel.py +++ b/src/calibre/gui2/preferences/look_feel.py @@ -533,10 +533,10 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form): key=lambda x:sort_key(x[0])) r('field_under_covers_in_grid', db.prefs, choices=choices) - choices = [(_('Default'), 'default'), (_('Compact Metadata'), 'alt1'), + choices = [(_('Default'), 'default'), (_('Compact metadata'), 'alt1'), (_('All on 1 tab'), 'alt2')] r('edit_metadata_single_layout', gprefs, - choices=[(_('Default'), 'default'), (_('Compact Metadata'), 'alt1'), + choices=[(_('Default'), 'default'), (_('Compact metadata'), 'alt1'), (_('All on 1 tab'), 'alt2')]) r('edit_metadata_ignore_display_order', db.prefs) r('edit_metadata_elision_point', gprefs,