123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?xml version="1.0" encoding="UTF-8"?>
-
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" omit-xml-declaration="no" encoding="UTF-8"/>
-
- <xsl:template match="/">
- <xsl:comment>
- <xsl:text> Licensed Materials - Property of IBM 
</xsl:text>
- <xsl:text> IBM Cognos Products: localizationkit 
</xsl:text>
- <xsl:text>
 (C) Copyright IBM Corp. 2005, 2016
</xsl:text>
- <xsl:text> US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
</xsl:text>
- </xsl:comment>
- <xsl:text>
</xsl:text>
- <xsl:comment>
- <xsl:text>
 DO NOT EDIT! 
</xsl:text>
- <xsl:text>Generated using:
</xsl:text>
- <xsl:text>Id: //localizationkit/main/prod/msgsdk/CCLInputSource.xslt 
</xsl:text>
- </xsl:comment>
- <xsl:text>
</xsl:text>
- <xsl:apply-templates select="*|text()"/>
- </xsl:template>
-
- <xsl:template match="*">
- <xsl:copy>
- <xsl:copy-of select="@*"/>
- <xsl:apply-templates select="*|text()"/>
- </xsl:copy>
- </xsl:template>
-
- <xsl:template match="/stringTable/component/section[not(@type) or @type='Messages']/string[@errorCode]">
- <xsl:copy>
-
- <xsl:copy-of select="@*"/>
- <xsl:value-of select="../../@name"/>
- <xsl:text>-</xsl:text>
- <xsl:value-of select="../@name"/>
- <xsl:text>-</xsl:text>
- <xsl:value-of select="@errorCode"/>
-
- <xsl:text> </xsl:text>
-
- <xsl:for-each select="child::node()">
- <xsl:if test="not(position()=1 and name()='' and string-length(normalize-space())=0)">
- <xsl:apply-templates select="."/>
- </xsl:if>
- </xsl:for-each>
- </xsl:copy>
- </xsl:template>
-
- </xsl:stylesheet>
|