View Single Post
Old 11-09-2022, 04:53 PM   #12
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 21,794
Karma: 30237628
Join Date: Mar 2012
Location: Sydney Australia
Device: none
If it is only happening on particular books then the language is probably specified incorrectly within the book, at the top of the text files, you should see something like this:

Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
But, if the lang tags reference a language for which you don't have a dictionary (e.g. 'pl' for Polish) then you will get no spelling errors.

When I changed a book to this:

Code:
<?xml version='1.0' encoding='utf-8'?>
<html xmlns="http://www.w3.org/1999/xhtml" lang="pl" xml:lang="pl">
I was sort of surprised that I didn't get a message something like:

Quote:
'This EPUB has 'lang=pl', but you don't have a Polish dictionary"
BR
BetterRed is offline   Reply With Quote