string changes

This commit is contained in:
Kovid Goyal 2022-02-16 11:04:09 +05:30
parent 0acb86eccf
commit 91532c8ea9
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -309,7 +309,7 @@ You can insert the following two lines of code to start an interactive Python se
ipython(locals()) ipython(locals())
When running from the command line, this will start an interactive Python interpreter with access to all 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 for object properties and you can use the various Python facilities for introspection, such as
:func:`dir`, :func:`type`, :func:`repr`, etc. :func:`dir`, :func:`type`, :func:`repr`, etc.

View File

@ -533,10 +533,10 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
key=lambda x:sort_key(x[0])) key=lambda x:sort_key(x[0]))
r('field_under_covers_in_grid', db.prefs, choices=choices) 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')] (_('All on 1 tab'), 'alt2')]
r('edit_metadata_single_layout', gprefs, r('edit_metadata_single_layout', gprefs,
choices=[(_('Default'), 'default'), (_('Compact Metadata'), 'alt1'), choices=[(_('Default'), 'default'), (_('Compact metadata'), 'alt1'),
(_('All on 1 tab'), 'alt2')]) (_('All on 1 tab'), 'alt2')])
r('edit_metadata_ignore_display_order', db.prefs) r('edit_metadata_ignore_display_order', db.prefs)
r('edit_metadata_elision_point', gprefs, r('edit_metadata_elision_point', gprefs,