From 52dff55b416683e3d4e05500d3636c7db0bb6d24 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 9 Jan 2020 07:27:08 +0530 Subject: [PATCH] Fix #1858962 [Preferred output format's tooltip should mention device plugins](https://bugs.launchpad.net/calibre/+bug/1858962) --- src/calibre/utils/config_base.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/calibre/utils/config_base.py b/src/calibre/utils/config_base.py index d546bddbc1..245b15bc06 100644 --- a/src/calibre/utils/config_base.py +++ b/src/calibre/utils/config_base.py @@ -493,7 +493,10 @@ def create_global_prefs(conf_obj=None): c.add_opt('language', default=None, help=_('The language in which to display the user interface')) 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', 'FB2', 'HTML', 'HTM', 'XHTM', 'SHTML', 'XHTML', 'ZIP', 'DOCX', 'ODT', 'RTF', 'PDF', 'TXT'],