|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: language
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








