Guest User

Untitled

a guest
Nov 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <xsl:template name="templ_prop_OpenBracket" >
  2. <xsl:param name="LCID" />
  3. <xsl:variable name="_LCID">
  4. <xsl:call-template name="localLCID">
  5. <xsl:with-param name="LCID" select="$LCID"/>
  6. </xsl:call-template>
  7. </xsl:variable>
  8. <xsl:value-of select="/*/b:Locals/b:Local[@LCID=INITIAL_CONTENTLCID]/b:General/b:OpenBracket"/>
  9. <xsl:text>(</xsl:text>
  10. </xsl:template>
  11.  
  12. <xsl:template name="templ_prop_CloseBracket" >
  13. <xsl:param name="LCID" />
  14. <xsl:variable name="_LCID">
  15. <xsl:call-template name="localLCID">
  16. <xsl:with-param name="LCID" select="$LCID"/>
  17. </xsl:call-template>
  18. </xsl:variable>
  19. <xsl:value-of select="/*/b:Locals/b:Local[@LCID=INITIAL_CONTENTLCID]/b:General/b:CloseBracket"/>
  20. <xsl:text>)</xsl:text>
  21. </xsl:template>
Add Comment
Please, Sign In to add comment