xsl-list
[Top] [All Lists]

Re: Simple (external XML) internationalization with XSLT?

2005-10-03 08:35:50

I think you just want

<xsl:key

  <xsl:template match="/*">

    <page>

      <title><xsl:value-of select="MyTitle" /></title>

      <content>
        <div class="Image">
          <xsl:value-of 
select="document('en-US.xml')//i18n:language/i18n:hash-list/i18n:string[(_at_)key='1']"/>
          <img>
            <xsl:attribute
name="href">http://www.example.com/img.gif</xsl:attribute>
            <xsl:attribute name="alt">
          <xsl:value-of 
select="document('en-US.xml')//i18n:language/i18n:hash-list/i18n:string[(_at_)key='2']"/>
            </xsl:attribute>
          </img>
        </div>
      </content>

    </page>

  </xsl:template>

so long as you declare a namespace for the i18n prefix (in both your
stylesheet and en-us.xml file)

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--