Created
November 24, 2015 07:58
-
-
Save eerohele/66da498432d248903022 to your computer and use it in GitHub Desktop.
DITA-OT issue #2146
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:template match="*[contains(@class, ' topic/topic ')]"> | |
<xsl:message terminate="yes"> | |
<xsl:call-template name="getVariable"> | |
<xsl:with-param name="id" select="'Warning'"/> | |
</xsl:call-template> | |
</xsl:message> | |
</xsl:template> | |
</xsl:stylesheet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin id="my.test"> | |
<feature extension="dita.xsl.strings" file="strings.xml"/> | |
<feature extension="dita.xsl.xhtml" file="main.xsl"/> | |
</plugin> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<strings xml:lang="en-us"> | |
<str name="Warning">PROCESS TERMINATED</str> | |
</strings> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<langlist> | |
<lang xml:lang="en" filename="strings-en.xml"/> | |
<lang xml:lang="en-us" filename="strings-en.xml"/> | |
</langlist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment