Adda note about conversion progress stalling

This commit is contained in:
Kovid Goyal 2018-06-30 09:26:01 +05:30
parent 9bb972a2ad
commit bc861ca8f8
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -146,11 +146,13 @@ def create_converting_markup():
ans = E.div( ans = E.div(
E.div( E.div(
style='text-align: center; margin: auto', style='text-align: center; margin: auto',
_('Converting, please wait...'), _('Converting, please wait'),
E.div(E.progress()), E.div(E.progress()),
E.div('\xa0', class_='progress-msg'), E.div('\xa0', class_='progress-msg'),
E.div('\xa0'), E.div('\xa0'),
E.div(_('Click the close button in the top left corner to abort the conversion')), E.div(_('Conversion progress can sometimes stall for a few minutes when converting complex books, that is normal.')),
E.div('\xa0'),
E.div(_('Click the close button in the top left corner to abort the conversion.')),
) )
) )