mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-16 02:56:22 +01:00
string changes
This commit is contained in:
parent
0acb86eccf
commit
91532c8ea9
2 changed files with 3 additions and 3 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -533,10 +533,10 @@ def get_esc_lang(l):
|
|||
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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue