- Code: Select all
<LINK REL=ALTERNATE LANG=OTHER >
to mark up a translation of the current document.
Q: How do I mark up a reference with a set of translations?
- Code: Select all
<!-- A REL=ALTERNATE HREFLANG=OTHER -->
does not seem to be a solution because it AFAICT it means that the referred document is a translation to the current document.
The obvious solution to put the set of links into the related document does not fly; the reader will not be happy to have to download the document in language A in order to get at the translation into language B.
Besides, in my case, the documents are in TIFF format, so they really cannot contain any references (except for what already is there, in that translations contain reverse references to the original, which is not what I need).
One solution I have been able to come up with is to tag all the references with the same class:
- Code: Select all
<A CLASS="ref1-translation" HREFLANG=%LANG% >
This, however, still does not tell the reader which document is the original, and a possible remedy
- Code: Select all
<A CLASS="ref1-translation original" HREFLANG=%LANG% >
seems rather weird.
What do you think?
Thanks in advance,
Chris