Skip to content

Commit

Permalink
simply word count output to make it easier for translators
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhendricks committed Oct 30, 2024
1 parent e44e24f commit 91bffce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MainUI/BookBrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1753,7 +1753,7 @@ void BookBrowser::GetInfo()
}

mdlst << tr("Word Count");
mdlst << "- " + QString::number(word_count) + " " + tr("word(s)") + "\n";
mdlst << "- " + QString::number(word_count) + "\n";

mdlst << tr("Linked Stylesheets");
mdlst << BuildListMD(XhtmlDoc::GetLinkedStylesheets(source)) + "\n";
Expand Down

0 comments on commit 91bffce

Please sign in to comment.