From bc861ca8f8f7b184d30b9fbabea95198b0101a5f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 30 Jun 2018 09:26:01 +0530 Subject: [PATCH] Adda note about conversion progress stalling --- src/pyj/book_list/convert_book.pyj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pyj/book_list/convert_book.pyj b/src/pyj/book_list/convert_book.pyj index cd836bce24..3961668eb8 100644 --- a/src/pyj/book_list/convert_book.pyj +++ b/src/pyj/book_list/convert_book.pyj @@ -146,11 +146,13 @@ def create_converting_markup(): ans = E.div( E.div( style='text-align: center; margin: auto', - _('Converting, please wait...'), + _('Converting, please wait…'), E.div(E.progress()), E.div('\xa0', class_='progress-msg'), 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.')), ) )