XSLT 1.0 dynamic imports of different xsl into master xsl

wutanggrenade

New Member
I am using XSL 1.0 version. I have a master.xsl which takes xml as input and creates out in html.It will generate html file with labels and values.Now I want to generate html with labels in different languages.Suppose if the language code in input is "EN", the labels should be English else some other language.I tried using \[code\]<xsl:importhref="http://stackoverflow.com/questions/10634493/en.xsl" use-when="system-property('xsl:languageCode')='EN'"/>\[/code\]But it is not working in XSL 1.0.Is there any other way to do this in XSLT or is there better non-xslt solution to this.
 
Back
Top