Change default for asciiizing filenames on save to disk to false

By now most platforms support unicode filenames.
This commit is contained in:
Kovid Goyal 2020-08-21 09:22:10 +05:30
parent 05ccd5c348
commit 940e655bef
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -106,12 +106,10 @@ def config(defaults=None):
'directory with filenames containing title and author. '
'Available controls are: {%(controls)s}')%dict(
templ=DEFAULT_SEND_TEMPLATE, controls=', '.join(FORMAT_ARGS)))
x('asciiize', default=True,
help=_('Normally, calibre will convert all non English characters into English equivalents '
'for the file names. '
'WARNING: If you turn this off, you may experience errors when '
'saving, depending on how well the filesystem you are saving '
'to supports unicode.'))
x('asciiize', default=False,
help=_('Have calibre convert all non English characters into English equivalents '
'for the file names. This is useful if saving to a legacy filesystem '
'without full support for Unicode filenames.'))
x('timefmt', default='%b, %Y',
help=_('The format in which to display dates. %(day)s - day,'
' %(month)s - month, %(mn)s - month number, %(year)s - year. Default is: %(default)s'