Add some text explaining that FTS shows only a single match per book

This commit is contained in:
Kovid Goyal 2024-04-02 07:57:19 +05:30
parent 2c78517ab0
commit d167240f70
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -727,6 +727,7 @@ class ResultDetails(QWidget):
text += '<p><a href="calibre://unindex" title="{1}">{2}\xa0{0}</a>'.format(
_('Un-index'), _('This book has been deleted from the library but is still present in the'
' full text search index. Remove it.'), ict.format('trash.png'))
text += '<p>' + _('This book may have more than one match, only a single match per book is shown.')
self.book_info.setHtml(text)
def render_results(self, results, individual_match=None):