I have an xsl file to format an xml file with data. In the xsl file I have some text that I would like write in french, english, spanish, etc. Can I solve this problem with an xml data islands? I know do it if the data island xml file have only one language.
If the data island is like this:
<texts>
<text idm="0">
<t1>hello</t1>
<t2>bye</t2>
</text>
<text idm="1">
<t1>alo</t1>
<t2>aurrevoir</t2>
</text>
...
</texts>
how can I do it?
