On some of my English language webpages, I have images of Dutch books.
In the alt text for this image, I give the title of the book, for
example:
<img src="maan.jpg" alt="Cover of De reis naar de maan" />
Now I would like to indicate that the phrase 'De reis naar de maan' is
Dutch, for the profit of users with a screen reader and others who may
benefit from it. Unfortunately I can't use a <span lang="nl"> inside
the alt attribute. I could perhaps do something like
<img src="maan.jpg" lang="nl" alt="De reis naar de maan" />
but I guess that would mean that the natural language of the image is
Dutch, which is nonsense.
Is there any other way to indicate the language of an alt text, and
even a language change inside an alt text?
Thanks,
Garmt de Vries.