From dd62bd3e7e6fbd82d84920b7cf912ba4236bd11b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 3 Dec 2016 17:29:37 +0530 Subject: [PATCH] ... --- src/calibre/utils/config_base.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/calibre/utils/config_base.py b/src/calibre/utils/config_base.py index a9cd5ef6b6..206fd7f697 100644 --- a/src/calibre/utils/config_base.py +++ b/src/calibre/utils/config_base.py @@ -441,17 +441,18 @@ def create_global_prefs(conf_obj=None): help=_(u'Characters typed in the search box will match their ' 'accented versions, based on the language you have chosen ' 'for the calibre interface. For example, in ' - u' English, searching for n will match %s and n, but if ' + u'English, searching for n will match both ñ and n, but if ' 'your language is Spanish it will only match n. Note that ' 'this is much slower than a simple search on very large ' - 'libraries. Note that this option will have no effect if you turn ' - 'on case-sensitive searching')%u'\xf1') + 'libraries. Also, this option will have no effect if you turn ' + 'on case-sensitive searching')) c.add_opt('case_sensitive', default=False, help=_( 'Make searches case-sensitive')) c.add_opt('migrated', default=False, help='For Internal use. Don\'t modify.') return c + prefs = ConfigProxy(create_global_prefs()) if prefs['installation_uuid'] is None: import uuid