Fix #1858962 [Preferred output format's tooltip should mention device plugins](https://bugs.launchpad.net/calibre/+bug/1858962)

This commit is contained in:
Kovid Goyal 2020-01-09 07:27:08 +05:30
parent dffc39cf0c
commit 52dff55b41
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -493,7 +493,10 @@ def create_global_prefs(conf_obj=None):
c.add_opt('language', default=None, c.add_opt('language', default=None,
help=_('The language in which to display the user interface')) help=_('The language in which to display the user interface'))
c.add_opt('output_format', default='EPUB', c.add_opt('output_format', default='EPUB',
help=_('The default output format for e-book conversions.')) help=_('The default output format for e-book conversions. When auto-converting'
' to send to a device this can be overridden by individual device preferences.'
' These can be changed by right clicking the device icon in calibre and'
' choosing and "Configure".'))
c.add_opt('input_format_order', default=['EPUB', 'AZW3', 'MOBI', 'LIT', 'PRC', c.add_opt('input_format_order', default=['EPUB', 'AZW3', 'MOBI', 'LIT', 'PRC',
'FB2', 'HTML', 'HTM', 'XHTM', 'SHTML', 'XHTML', 'ZIP', 'DOCX', 'ODT', 'RTF', 'PDF', 'FB2', 'HTML', 'HTM', 'XHTM', 'SHTML', 'XHTML', 'ZIP', 'DOCX', 'ODT', 'RTF', 'PDF',
'TXT'], 'TXT'],