~ubuntu-branches/ubuntu/gutsy/gnome-doc-utils/gutsy

« back to all changes in this revision

Viewing changes to xslt/docbook/common/db-title.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2007-08-21 10:40:02 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20070821104002-90ao5uojgaufk7iy
Tags: 0.11.2-0ubuntu1
* New upstream version:
  - Added db2html.division.div.content.mode
  - Added support for manual indexes
  - Fixed the mime attribute in OMF output
  - Worked on the HTML output for refentry
  - Switched to set:has-same-node for node comparisons
  - Updated translations

Show diffs side-by-side

added added

removed removed

Lines of Context:
215
215
    <xsl:when test="refmeta/refentrytitle">
216
216
      <xsl:apply-templates select="refmeta/refentrytitle/node()"/>
217
217
      <xsl:if test="refmeta/manvolnum">
218
 
        <!-- FIXME: I18N -->
219
 
        <xsl:text>(</xsl:text>
220
 
        <xsl:apply-templates select="refmeta/manvolnum[1]/node()"/>
221
 
        <xsl:text>)</xsl:text>
 
218
        <xsl:call-template name="l10n.gettext">
 
219
          <xsl:with-param name="msgid" select="'manvolnum.format'"/>
 
220
          <xsl:with-param name="node" select="refmeta/manvolnum[1]"/>
 
221
          <xsl:with-param name="format" select="true()"/>
 
222
        </xsl:call-template>
222
223
      </xsl:if>
223
224
    </xsl:when>
224
225
    <xsl:when test="refentryinfo/title">
299
300
    <xsl:when test="refsynopsisdivinfo/title">
300
301
      <xsl:apply-templates select="refsynopsisdivinfo/title/node()"/>
301
302
    </xsl:when>
 
303
    <xsl:otherwise>
 
304
      <xsl:call-template name="l10n.gettext">
 
305
        <xsl:with-param name="msgid" select="'Synopsis'"/>
 
306
      </xsl:call-template>
 
307
    </xsl:otherwise>
302
308
  </xsl:choose>
303
309
</xsl:template>
304
310