From 993c85b289199ca7df523c5e7fa84f2ff13a3ac2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 26 Feb 2026 10:46:52 +0530 Subject: [PATCH] Add explanation of what a chapter is to the reading stats panel --- src/pyj/read_book/overlay.pyj | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/pyj/read_book/overlay.pyj b/src/pyj/read_book/overlay.pyj index 148497b850..dcfa864896 100644 --- a/src/pyj/read_book/overlay.pyj +++ b/src/pyj/read_book/overlay.pyj @@ -786,6 +786,11 @@ class ReadingStatsOverlay: # {{{ ) graph_section.appendChild(legend) container.appendChild(graph_section) + container.appendChild(E.div(_( + 'For reading stats, a "chapter" is a single internal file inside the larger book. If you' + ' see very few "chapters" above, then try converting your book to EPUB in calibre, that' + ' will often automatically split up the book into per chapter files.'), + style='padding: 0 1em 1em 1em; font-size: smaller')) # }}}