From 0f79dbfb47598e3b110fb4ef34ab21d9e5c8943e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 May 2022 16:48:33 +0530 Subject: [PATCH] Improve wording --- src/calibre/gui2/fts/scan.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/calibre/gui2/fts/scan.py b/src/calibre/gui2/fts/scan.py index 1827f408b6..d16819a62c 100644 --- a/src/calibre/gui2/fts/scan.py +++ b/src/calibre/gui2/fts/scan.py @@ -36,12 +36,12 @@ class ScanProgress(QWidget): self.h = h = QHBoxLayout() l.addLayout(h) self.wl = la = QLabel(_( - 'Normally, calibre indexes books slowly in the background,' - ' to avoid overloading your computer. You can instead ask' - ' calibre to speed up indexing, if you intend to leave your' - ' computer running overnight or similar to quickly finish the indexing.' - ' Doing so will likely make both calibre and your computer less responsive,' - ' while the fast indexing is running.' + 'Normally, calibre indexes books slowly, in the background,' + ' to avoid overloading your computer. You can instead have' + ' calibre speed up indexing. This is useful if you intend to leave your' + ' computer running overnight to quickly finish the indexing.' + ' Both your computer and calibre will be less responsive while' + ' fast indexing is active.' )) la.setWordWrap(True) l.addWidget(la)