Subject: Re: language
From: Miloslav Nic <nicmila@xxxxxxxx>
Date: Fri, 16 Jul 1999 11:58:32 +0200
|
I would use xsl:if constructs.
I am solving language problems in following way:
I do not use attributes for anything what needs translation, but I
declare
e.g. <!ELEMENT text (#PCDATA|trans)*>
Then I can either write
<text>blablabla</text>
or <text>blablaaaa<trans lang="cs">asasssa</trans><trans
lang="en">sdsdd</trans></text>
Then you can use in your XSL constructs like:
<xsl:choose>
<xsl:when test='trans[@lang=$language]'>
<xsl:value-of select="trans[@lang=$language]"/>
</xsl:when>
<xsl:when test='trans[not(@lang)] and /*/@translang=$language'>
<xsl:value-of select="trans[not(@lang)]"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="./text()"/>
</xsl:otherwise>
</xsl:choose>
Look at http://zvon.vscht.cz/ZvonHTML/Zvon/zvonHomepage_en.html for
details
(click at XSL and then on generalTemplates_1_00.xsl)
Marco.Mistroni@xxxxxxxxx wrote:
>
> HI all,
> I have one problem: I am using xsl to convert xml into html
> I get the name of every attribute using attribute value templates
> I would like to display the name of the attribute in a language other than
> english....for example french
> Anyone knows if it is possible using xsl??
> Thanx
> Br
> marco
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
--
***************************************************************
Dr. Miloslav Nic e-mail: nicmila@xxxxxxxx
Department of Organic Chemistry TEL: +420 2 2435 5012
ICT Prague (VSCHT Praha) +420 2 2435 4118
FAX: +420 2 2435 4288
****************************************************************
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|