diff options
author | Perberos <[email protected]> | 2011-12-01 21:42:39 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 21:42:39 -0300 |
commit | fe8aea1c3b5348347633da18a02b0bffd3b266a1 (patch) | |
tree | 9881bf77df7572844707cc7c50bd8ca6b5a97076 /po-locations/extract.xsl | |
download | libmateweather-fe8aea1c3b5348347633da18a02b0bffd3b266a1.tar.bz2 libmateweather-fe8aea1c3b5348347633da18a02b0bffd3b266a1.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'po-locations/extract.xsl')
-rw-r--r-- | po-locations/extract.xsl | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/po-locations/extract.xsl b/po-locations/extract.xsl new file mode 100644 index 0000000..8f64e9e --- /dev/null +++ b/po-locations/extract.xsl @@ -0,0 +1,56 @@ +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <xsl:output method="text"/> + + <xsl:template name="escape"> + <xsl:param name="string" /> + <xsl:choose> + <xsl:when test="contains($string, '&')"> + <xsl:value-of select="substring-before($string, '&')" />&amp;<xsl:call-template name="escape"><xsl:with-param name="string" select="substring-after($string, '&')" /></xsl:call-template> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$string" /> + </xsl:otherwise> + </xsl:choose> + </xsl:template> + + <xsl:template name="output_name"> + <xsl:if test="preceding-sibling::comment()"> +/* <xsl:value-of select="preceding-sibling::comment()"/> */</xsl:if> +<xsl:choose><xsl:when test="@msgctxt"> +char *s = NC_("<xsl:call-template name="escape"><xsl:with-param name="string" select="@msgctxt"/></xsl:call-template>", "<xsl:call-template name="escape"><xsl:with-param name="string" select="."/></xsl:call-template>");</xsl:when><xsl:otherwise> +char *s = N_("<xsl:call-template name="escape"><xsl:with-param name="string" select="."/></xsl:call-template>");</xsl:otherwise></xsl:choose></xsl:template> + + <xsl:template match="mateweather"> + <!-- region names --> + <xsl:for-each select="//region/_name"> + <xsl:sort select="."/> + <xsl:call-template name="output_name" /></xsl:for-each> + + <!-- country names --> + <xsl:for-each select="//country/_name"> + <xsl:sort select="."/> + <xsl:call-template name="output_name" /></xsl:for-each> + + <!-- timezone names --> + <xsl:for-each select="//timezone/_name"> + <xsl:call-template name="output_name" /></xsl:for-each> + + <!-- state names --> + <xsl:for-each select="//state/_name"> + <xsl:sort select="ancestor::country/_name"/> + <xsl:sort select="."/> + <xsl:call-template name="output_name" /></xsl:for-each> + + <!-- city names --> + <xsl:for-each select="//city/_name"> + <xsl:sort select="ancestor::country/_name"/> + <xsl:sort select="."/> + <xsl:call-template name="output_name" /></xsl:for-each> + + <xsl:text> +</xsl:text> + </xsl:template> + +</xsl:stylesheet> |