[yelp-xsl] Beginning to remove labels and numbers from DocBook output
- From: Shaun McCance <shaunm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [yelp-xsl] Beginning to remove labels and numbers from DocBook output
- Date: Wed, 26 May 2010 23:46:23 +0000 (UTC)
commit 15214091df20d775f9db243f9d5878f1f35215dd
Author: Shaun McCance <shaunm gnome org>
Date: Wed May 26 18:45:15 2010 -0500
Beginning to remove labels and numbers from DocBook output
xslt/docbook/common/Makefile.am | 1 -
xslt/docbook/common/db-format.xml.in | 10 -
xslt/docbook/common/db-label.xsl | 891 -------------------
xslt/docbook/common/db-xref.xsl | 297 +------
xslt/docbook/html/db2html-autotoc.xsl | 26 +-
xslt/docbook/html/db2html-bibliography.xsl | 2 +-
xslt/docbook/html/db2html-block.xsl | 8 +-
xslt/docbook/html/db2html-cmdsynopsis.xsl | 4 +-
xslt/docbook/html/db2html-division.xsl | 3 +-
xslt/docbook/html/db2html-footnote.xsl | 2 +-
xslt/docbook/html/db2html-qanda.xsl | 12 +-
xslt/docbook/html/db2html-title.xsl | 9 +-
xslt/docbook/html/db2xhtml.xsl | 1 -
xslt/gettext/l10n.xml.in | 1318 ----------------------------
14 files changed, 18 insertions(+), 2566 deletions(-)
---
diff --git a/xslt/docbook/common/Makefile.am b/xslt/docbook/common/Makefile.am
index 7f365d4..3442520 100644
--- a/xslt/docbook/common/Makefile.am
+++ b/xslt/docbook/common/Makefile.am
@@ -8,7 +8,6 @@ xsldir=$(datadir)/yelp-xsl/xslt/docbook/common
xsl_DATA = \
db-chunk.xsl \
db-common.xsl \
- db-label.xsl \
db-title.xsl \
db-xref.xsl
diff --git a/xslt/docbook/common/db-xref.xsl b/xslt/docbook/common/db-xref.xsl
index f86f6ad..b047489 100644
--- a/xslt/docbook/common/db-xref.xsl
+++ b/xslt/docbook/common/db-xref.xsl
@@ -24,8 +24,8 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
version="1.0">
<!--!!==========================================================================
-DocBook Cross References
-:Requires: db-chunk db-label db-title gettext
+DocBook Links
+:Requires: db-chunk db-title gettext
-->
@@ -60,7 +60,6 @@ Generates the content of a cross reference
$linkend: The id of the linked-to element, usually from the #{linkend} attribute
$target: The linked-to element
$xrefstyle: The cross reference style, usually from the #{xrefstyle} attribute
-$role: For a role-based ${xrefstyle}, the role of the cross reference
REMARK: The xrefstyle/role stuff needs to be documented
-->
@@ -68,12 +67,7 @@ REMARK: The xrefstyle/role stuff needs to be documented
<xsl:param name="linkend" select="@linkend"/>
<xsl:param name="target" select="key('idkey', $linkend)"/>
<xsl:param name="xrefstyle" select="@xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
<xsl:choose>
- <!-- FIXME: should we prefer xrefstyle over xreflabel? -->
- <xsl:when test="$target/@xreflabel">
- <xsl:value-of select="$target/@xreflabel"/>
- </xsl:when>
<xsl:when test="$xrefstyle = 'role:title'">
<xsl:call-template name="db.title">
<xsl:with-param name="node" select="$target"/>
@@ -89,293 +83,18 @@ REMARK: The xrefstyle/role stuff needs to be documented
<xsl:with-param name="node" select="$target"/>
</xsl:call-template>
</xsl:when>
- <xsl:when test="$xrefstyle = 'role:label'">
- <xsl:call-template name="db.label">
- <xsl:with-param name="node" select="$target"/>
- </xsl:call-template>
+ <xsl:when test="$target/@xreflabel">
+ <xsl:value-of select="$target/@xreflabel"/>
</xsl:when>
- <xsl:when test="$xrefstyle = 'role:number'">
- <xsl:call-template name="db.number">
+ <xsl:otherwise>
+ <xsl:call-template name="db.title">
<xsl:with-param name="node" select="$target"/>
</xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates mode="db.xref.content.mode" select="$target">
- <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
- <xsl:with-param name="role" select="$role"/>
- </xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
-<!--%%==========================================================================
-db.xref.content.mode
-FIXME
-$xrefstyle: The cross reference style, usually from the #{xrefstyle} attribute
-$role: For a role-based ${xrefstyle}, the role of the cross reference
-
-REMARK: Document this mode
--->
-<xsl:template mode="db.xref.content.mode" match="*">
- <xsl:variable name="target_chunk_id">
- <xsl:call-template name="db.chunk.chunk-id">
- <xsl:with-param name="node" select="."/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="target_chunk" select="key('idkey', $target_chunk_id)"/>
- <xsl:choose>
- <xsl:when test="$target_chunk">
- <xsl:apply-templates mode="db.xref.content.mode" select="$target_chunk"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:message>
- <xsl:text>No cross reference formatter found for </xsl:text>
- <xsl:value-of select="local-name(.)"/>
- <xsl:text> elements</xsl:text>
- </xsl:message>
- <xsl:variable name="title">
- <xsl:call-template name="db.title"/>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="string($title) != ''">
- <xsl:copy-of select="$title"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="@id | @xml:id"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:otherwise>
- </xsl:choose>
-</xsl:template>
-
-<!-- = db.xref.content.mode % appendix = -->
-<xsl:template mode="db.xref.content.mode" match="appendix | db:appendix">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'appendix.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % biblioentry = -->
-<xsl:template mode="db.xref.content.mode" match="biblioentry | db:biblioentry">
- <xsl:call-template name="db.label">
- <xsl:with-param name="node" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % bibliography = -->
-<xsl:template mode="db.xref.content.mode" match="bibliography | db:bibliography">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'bibliography.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % bibliomixed = -->
-<xsl:template mode="db.xref.content.mode" match="bibliomixed | db:bibliomixed">
- <xsl:call-template name="db.label">
- <xsl:with-param name="node" select="."/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % book = -->
-<xsl:template mode="db.xref.content.mode" match="book | db:book">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'book.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % chapter = -->
-<xsl:template mode="db.xref.content.mode" match="chapter | db:chapter">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'chapter.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % example = -->
-<xsl:template mode="db.xref.content.mode" match="example | db:example">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'example.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % figure = -->
-<xsl:template mode="db.xref.content.mode" match="figure | db:figure">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'figure.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % glossary = -->
-<xsl:template mode="db.xref.content.mode" match="glossary | db:glossary">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'glossary.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % glossentry = -->
-<xsl:template mode="db.xref.content.mode" match="glossentry | db:glossentry">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'glossentry.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % part = -->
-<xsl:template mode="db.xref.content.mode" match="part | db:part">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'part.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % preface = -->
-<xsl:template mode="db.xref.content.mode" match="preface | db:preface">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'preface.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % qandaentry = -->
-<xsl:template mode="db.xref.content.mode" match="qandaentry | db:qandaentry">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:apply-templates mode="db.xref.content.mode"
- select="question | db:question">
- <xsl:with-param name="xrefstyle" select="$xrefstyle"/>
- <xsl:with-param name="role" select="$role"/>
- </xsl:apply-templates>
-</xsl:template>
-
-<!-- = db.xref.content.mode % question = -->
-<xsl:template mode="db.xref.content.mode" match="question | db:question">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'question.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % refentry = -->
-<xsl:template mode="db.xref.content.mode" match="refentry | db:refentry">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'refentry.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % refsection = -->
-<xsl:template mode="db.xref.content.mode" match="
- refsection | refsect1 | refsect2 | refsect3 |
- db:refsection | db:refsect1 | db:refsect2 | db:refsect3 ">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'refsection.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % refsynopsisdiv = -->
-<xsl:template mode="db.xref.content.mode" match="refsynopsisdiv |
- db:refsynopsisdiv">
- <xsl:call-template name="db.title"/>
-</xsl:template>
-
-<!-- = db.xref.content.mode % section = -->
-<xsl:template mode="db.xref.content.mode" match="
- section | sect1 | sect2 | sect3 | sect4 | sect5 | simplesect |
- db:section | db:sect1 | db:sect2 | db:sect3 | db:sect4 |
- db:sect5 | db:simplesect">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'section.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % synopfragment = -->
-<xsl:template mode="db.xref.content.mode" match="synopfragment |
- db:synopfragment">
- <xsl:param name="xrefstyle"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'synopfragment.label'"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
-<!-- = db.xref.content.mode % table = -->
-<xsl:template mode="db.xref.content.mode" match="table | db:table">
- <xsl:param name="xrefstyle"/>
- <xsl:param name="role" select="substring-after($xrefstyle, 'role:')"/>
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="'table.xref'"/>
- <xsl:with-param name="role" select="$role"/>
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="format" select="true()"/>
- </xsl:call-template>
-</xsl:template>
-
<!--**==========================================================================
db.xref.target
@@ -444,8 +163,8 @@ REMARK: Document this
</xsl:template>
<!-- = db.xref.tooltip.mode % biblioentry | bibliomixed = -->
-<xsl:template mode="db.xref.tooltip.mode" match="biblioentry | bibliomixed |
- db:biblioentry | db:bibliomixed">
+<xsl:template mode="db.xref.tooltip.mode" match="biblioentry | bibliomixed |
+ db:biblioentry | db:bibliomixed ">
<xsl:call-template name="l10n.gettext">
<xsl:with-param name="msgid" select="'biblioentry.tooltip'"/>
<xsl:with-param name="node" select="."/>
diff --git a/xslt/docbook/html/db2html-autotoc.xsl b/xslt/docbook/html/db2html-autotoc.xsl
index a436d1a..2578642 100644
--- a/xslt/docbook/html/db2html-autotoc.xsl
+++ b/xslt/docbook/html/db2html-autotoc.xsl
@@ -25,7 +25,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Tables of Contents
-:Requires: db-label db-xref db2html-xref gettext
+:Requires: db-xref db2html-xref gettext
This module provides templates to create tables of contents from any
division-level elements.
@@ -42,7 +42,6 @@ $show_title: Whether to give the contents list a title
$selected: A currently-selected page
$divisions: The division-level child elements of ${node}
$toc_depth: How deep nested contents should be listed.
-$labels: Whether to generate labels
$titleabbrev: Whether to use #{titleabbrev} instead of #{title}
This template creates a table of contents for a given division-level element.
@@ -75,7 +74,6 @@ ${titleabbrev} element specifies whether list elements should use the
<xsl:param name="toc_depth" select="1"/>
- <xsl:param name="labels" select="true()"/>
<xsl:param name="titleabbrev" select="false()"/>
<xsl:if test="($selected = false()) or ($node = $selected/ancestor-or-self::*)">
<div class="autotoc">
@@ -122,7 +120,6 @@ ${titleabbrev} element specifies whether list elements should use the
<xsl:with-param name="is_info" select="$is_info"/>
<xsl:with-param name="selected" select="$selected"/>
<xsl:with-param name="toc_depth" select="$toc_depth - 1"/>
- <xsl:with-param name="labels" select="$labels"/>
<xsl:with-param name="titleabbrev" select="$titleabbrev"/>
</xsl:apply-templates>
</xsl:for-each>
@@ -138,7 +135,6 @@ Renders a TOC entry for an element and its children
$is_info: Whether this contents list is for the info page
$selected: A currently-selected page
$toc_depth: How deep to create entries in the table of contents
-$labels: Whether to generate labels
$titleabbrev: Whether to use #{titleabbrev} instead of #{title}
This mode outputs a single element in a table of contents. If the
@@ -153,7 +149,6 @@ For a description of the other parameters, see *{db2html.autotoc}.
<xsl:param name="is_info" select="false()"/>
<xsl:param name="selected" select="/false"/>
<xsl:param name="toc_depth" select="0"/>
- <xsl:param name="labels" select="true()"/>
<xsl:param name="titleabbrev" select="false()"/>
<xsl:variable name="xrefstyle">
<xsl:text>role:title</xsl:text>
@@ -162,14 +157,6 @@ For a description of the other parameters, see *{db2html.autotoc}.
</xsl:if>
</xsl:variable>
<li>
- <xsl:if test="$labels">
- <span class="label">
- <xsl:call-template name="db.label">
- <xsl:with-param name="node" select="."/>
- <xsl:with-param name="role" select="'li'"/>
- </xsl:call-template>
- </span>
- </xsl:if>
<xsl:choose>
<xsl:when test="set:has-same-node(., $selected) and not($is_info)">
<xsl:call-template name="db.xref.content">
@@ -202,7 +189,6 @@ For a description of the other parameters, see *{db2html.autotoc}.
db:index | db:lot | db:part | db:preface | db:refentry |
db:reference | db:sect1 | db:sect2 | db:sect3 | db:sect4 |
db:sect5 | db:section | db:setindex | db:simplesect | db:toc "/>
- <xsl:with-param name="labels" select="$labels"/>
<xsl:with-param name="titleabbrev" select="$titleabbrev"/>
</xsl:call-template>
</xsl:if>
@@ -214,7 +200,6 @@ For a description of the other parameters, see *{db2html.autotoc}.
<xsl:param name="is_info" select="false()"/>
<xsl:param name="selected" select="/false"/>
<xsl:param name="toc_depth" select="0"/>
- <xsl:param name="labels" select="true()"/>
<xsl:param name="titleabbrev" select="false()"/>
<xsl:variable name="xrefstyle">
<xsl:text>role:title</xsl:text>
@@ -239,15 +224,6 @@ For a description of the other parameters, see *{db2html.autotoc}.
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
- <xsl:if test="$labels">
- <xsl:if test="refnamediv/refpurpose or db:refnamediv/db:refpurpose">
- <xsl:call-template name="l10n.gettext">
- <xsl:with-param name="msgid" select="' â?? '"/>
- </xsl:call-template>
- <xsl:apply-templates select="refnamediv/refpurpose[1] |
- db:refnamediv/db:refpurpose[1]"/>
- </xsl:if>
- </xsl:if>
</li>
</xsl:template>
diff --git a/xslt/docbook/html/db2html-bibliography.xsl b/xslt/docbook/html/db2html-bibliography.xsl
index f03eb2a..5c2fef4 100644
--- a/xslt/docbook/html/db2html-bibliography.xsl
+++ b/xslt/docbook/html/db2html-bibliography.xsl
@@ -26,7 +26,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Bibliographies
-:Requires: db-chunk db-common db-label db2html-block db2html-inline db2html-division db2html-xref gettext
+:Requires: db-chunk db-common db2html-block db2html-inline db2html-division db2html-xref gettext
This module provides templates to process DocBook bibliograpies.
-->
diff --git a/xslt/docbook/html/db2html-block.xsl b/xslt/docbook/html/db2html-block.xsl
index 36fcf0c..0b17098 100644
--- a/xslt/docbook/html/db2html-block.xsl
+++ b/xslt/docbook/html/db2html-block.xsl
@@ -26,7 +26,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Block Elements
-:Requires: db-common db-label db-xref db2html-xref gettext
+:Requires: db-common db-xref db2html-xref gettext
This module handles most simple block-level elements, turning them into the
appropriate HTML tags. It does not handle tables, lists, and various other
@@ -159,12 +159,6 @@ element. It is called by *{db2html.block} for formal block elements.
<xsl:with-param name="node" select="$title"/>
</xsl:call-template>
<span class="title">
- <span class="label">
- <xsl:call-template name="db.label">
- <xsl:with-param name="node" select="$node"/>
- <xsl:with-param name="role" select="'header'"/>
- </xsl:call-template>
- </span>
<xsl:apply-templates select="$title/node()"/>
</span>
</div>
diff --git a/xslt/docbook/html/db2html-cmdsynopsis.xsl b/xslt/docbook/html/db2html-cmdsynopsis.xsl
index 1ff58c2..b3e43ce 100644
--- a/xslt/docbook/html/db2html-cmdsynopsis.xsl
+++ b/xslt/docbook/html/db2html-cmdsynopsis.xsl
@@ -27,7 +27,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Command Synopses
-:Requires: db-label db2html-xref gettext
+:Requires: db2html-xref gettext
This module contains templates to process DocBook command synopsis elements.
-->
@@ -324,6 +324,7 @@ REMARK: Describe this param
</xsl:param>
<div class="synopfragment">
<xsl:call-template name="db2html.anchor"/>
+ <!-- FIXME -->
<i><xsl:call-template name="db.label"/></i>
<xsl:for-each select="*">
<xsl:value-of select="$sepchar"/>
@@ -518,6 +519,7 @@ selectors, which are generally expensive to perform.
<xsl:param name="sbr"/>
<xsl:param name="sepchar"/>
<xsl:variable name="label">
+ <!-- FIXME -->
<xsl:call-template name="db.label"/>
</xsl:variable>
<xsl:value-of select="str:padding(string-length($label), ' ')"/>
diff --git a/xslt/docbook/html/db2html-division.xsl b/xslt/docbook/html/db2html-division.xsl
index 92b9126..617ddc9 100644
--- a/xslt/docbook/html/db2html-division.xsl
+++ b/xslt/docbook/html/db2html-division.xsl
@@ -25,7 +25,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Divisions
-:Requires: db-chunk db-label db-title db-xref db2html-autotoc db2html-css db2html-footnote db2html-info db2html-xref gettext
+:Requires: db-chunk db-title db-xref db2html-autotoc db2html-css db2html-footnote db2html-info db2html-xref gettext
REMARK: Describe this module
-->
@@ -691,7 +691,6 @@ REMARK: Document this template
<xsl:with-param name="selected" select="$node"/>
<xsl:with-param name="divisions" select="/*"/>
<xsl:with-param name="toc_depth" select="$db.chunk.max_depth + 1"/>
- <xsl:with-param name="labels" select="false()"/>
<xsl:with-param name="titleabbrev" select="true()"/>
</xsl:call-template>
</div>
diff --git a/xslt/docbook/html/db2html-footnote.xsl b/xslt/docbook/html/db2html-footnote.xsl
index 76ff6c5..a78e24b 100644
--- a/xslt/docbook/html/db2html-footnote.xsl
+++ b/xslt/docbook/html/db2html-footnote.xsl
@@ -23,7 +23,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Footnotes
-:Requires: db-chunk db-label
+:Requires: db-chunk
FIXME: Describe this module
-->
diff --git a/xslt/docbook/html/db2html-qanda.xsl b/xslt/docbook/html/db2html-qanda.xsl
index 5c44e9e..0007eb2 100644
--- a/xslt/docbook/html/db2html-qanda.xsl
+++ b/xslt/docbook/html/db2html-qanda.xsl
@@ -23,7 +23,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Question and Answer Sets
-:Requires: db-chunk db-label db2html-division gettext
+:Requires: db-chunk db2html-division gettext
REMARK: Describe this module
-->
@@ -71,11 +71,6 @@ dd.answer div.label { float: left; }
</xsl:attribute>
</xsl:when>
</xsl:choose>
- <div class="label">
- <xsl:call-template name="db.label">
- <xsl:with-param name="role" select="'header'"/>
- </xsl:call-template>
- </div>
<xsl:apply-templates/>
</dd>
</xsl:template>
@@ -145,11 +140,6 @@ dd.answer div.label { float: left; }
</xsl:attribute>
</xsl:when>
</xsl:choose>
- <div class="label">
- <xsl:call-template name="db.label">
- <xsl:with-param name="role" select="'header'"/>
- </xsl:call-template>
- </div>
<xsl:apply-templates/>
</dt>
</xsl:template>
diff --git a/xslt/docbook/html/db2html-title.xsl b/xslt/docbook/html/db2html-title.xsl
index bdd34e3..f6e22e9 100644
--- a/xslt/docbook/html/db2html-title.xsl
+++ b/xslt/docbook/html/db2html-title.xsl
@@ -23,7 +23,7 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
<!--!!==========================================================================
DocBook to HTML - Titles and Subtitles
-:Requires: db-chunk db-label db2html-xref gettext
+:Requires: db-chunk db2html-xref gettext
This stylesheet is going away
-->
@@ -68,13 +68,6 @@ REMARK: Talk about the different kinds of title blocks
<xsl:call-template name="db2html.anchor">
<xsl:with-param name="node" select="$node"/>
</xsl:call-template>
- <span class="label">
- <xsl:call-template name="db.label">
- <xsl:with-param name="node" select="$referent"/>
- <xsl:with-param name="role" select="'header'"/>
- <xsl:with-param name="depth_in_chunk" select="$depth_in_chunk"/>
- </xsl:call-template>
- </span>
<xsl:apply-templates select="$node/node()"/>
</span>
</div>
diff --git a/xslt/docbook/html/db2xhtml.xsl b/xslt/docbook/html/db2xhtml.xsl
index bdd02b2..099ca51 100644
--- a/xslt/docbook/html/db2xhtml.xsl
+++ b/xslt/docbook/html/db2xhtml.xsl
@@ -32,7 +32,6 @@ DocBook to XHTML
<xsl:import href="../common/db-chunk.xsl"/>
<xsl:import href="../common/db-common.xsl"/>
-<xsl:import href="../common/db-label.xsl"/>
<xsl:import href="../common/db-title.xsl"/>
<xsl:import href="../common/db-xref.xsl"/>
diff --git a/xslt/gettext/l10n.xml.in b/xslt/gettext/l10n.xml.in
index dec0007..2676a56 100644
--- a/xslt/gettext/l10n.xml.in
+++ b/xslt/gettext/l10n.xml.in
@@ -343,148 +343,6 @@
<!-- ======================================================================= -->
<!-- == Formatters ========================================================= -->
-<!-- == appendix == -->
-<msgset>
- <msgid>appendix.digit</msgid>
- <!--
- The number formatter used for appendix numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>appendix.digit</msgid>
- <msgstr>A</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>appendix.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for appendices. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the appendix
- titleabbrev - The titleabbrev of the appendix, or just the title
- if no titleabbrev exists
- number - The full number of the appendix, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>appendix.label</msgid>
- <msgstr role='header'><number/>. </msgstr>
- <msgstr role='li'><number/>. </msgstr>
- <msgstr>Appendix <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>appendix.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for appendices. Numbers
- are used in labels, cross references, and any other place where the
- appendix might be referenced. The number for an appendix includes the
- number for its parent element, if applicable. For example, the number
- 4.B indicates the second appendix in the fourth top-level element. In
- this example, 4 is referred to as the parent number, and B is referred
- to as the appendix digit. This format message constructs a full number
- from a parent number and an appendix digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the appendix's parent element
- digit - The number of the appendix in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>appendix.number</msgid>
- <msgstr><parent/>.<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>appendix.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to appendices.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the appendix
- titleabbrev - The titleabbrev of the appendix, or just the title
- if no titleabbrev exists
- number - The full number of the appendix, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>appendix.xref</msgid>
- <msgstr>Appendix <number/> â?? <title/></msgstr>
- </_msg>
-</msgset>
-
<!-- == biblioentry == -->
<msgset>
<msgid>biblioentry.tooltip</msgid>
@@ -517,48 +375,6 @@
</_msg>
</msgset>
-<!-- == bibliography == -->
-<msgset>
- <msgid>bibliography.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to bibliographies.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the figure
- titleabbrev - The titleabbrev of the figure, or just the title
- if no titleabbrev exists
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Note that authors are not required to provide explicit titles for
- bibliographies. If the author does not provide a title, the
- translatable string 'Bibliography' is used as a default.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>bibliography.xref</msgid>
- <msgstr><title/></msgstr>
- </_msg>
-</msgset>
-
<!-- == bibliolabel == -->
<msgset>
<msgid>bibliolabel.format</msgid>
@@ -605,65 +421,6 @@
</_msg>
</msgset>
-<!-- == book == -->
-<msgset>
- <msgid>book.digit</msgid>
- <!--
- The number formatter used for book numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>book.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>book.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to books.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the book
- titleabbrev - The titleabbrev of the book, or just the title
- if no titleabbrev exists
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>book.xref</msgid>
- <msgstr><title/></msgstr>
- </_msg>
-</msgset>
-
<!-- == citetitle == -->
<msgset>
<msgid>citetitle.format</msgid>
@@ -740,148 +497,6 @@
</_msg>
</msgset>
-<!-- == chapter == -->
-<msgset>
- <msgid>chapter.digit</msgid>
- <!--
- The number formatter used for chapter numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>chapter.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>chapter.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for chapters. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the chapter
- titleabbrev - The titleabbrev of the chapter, or just the title
- if no titleabbrev exists
- number - The full number of the chapter, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>chapter.label</msgid>
- <msgstr role='header'><number/>. </msgstr>
- <msgstr role='li'><number/>. </msgstr>
- <msgstr>Chapter <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>chapter.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for chapters. Numbers
- are used in labels, cross references, and any other place where the
- chapter might be referenced. The number for a chapter includes the
- number for its parent element, if applicable. For example, the number
- 4.2 indicates the second chapter in the fourth top-level element. In
- this example, 4 is referred to as the parent number, and B is referred
- to as the chapter digit. This format message constructs a full number
- from a parent number and a chapter digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the chapter's parent element
- digit - The number of the chapter in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>chapter.number</msgid>
- <msgstr><parent/>.<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>chapter.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to chapters
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the chapter
- titleabbrev - The titleabbrev of the chapter, or just the title
- if no titleabbrev exists
- number - The full number of the chapter, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>chapter.xref</msgid>
- <msgstr>Chapter <number/> â?? <title/></msgstr>
- </_msg>
-</msgset>
-
<!-- == email == -->
<msgset>
<msgid>email.tooltip</msgid>
@@ -914,290 +529,6 @@
</_msg>
</msgset>
-<!-- == example == -->
-<msgset>
- <msgid>example.digit</msgid>
- <!--
- The number formatter used for example numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>example.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>example.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for examples. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the example
- titleabbrev - The titleabbrev of the example, or just the title
- if no titleabbrev exists
- number - The full number of the example, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>example.label</msgid>
- <msgstr role='header'><i>Example <number/></i> </msgstr>
- <msgstr role='li'>Example <number/> </msgstr>
- <msgstr>Example <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>example.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for example. Numbers
- are used in labels, cross references, and any other place where the
- example might be referenced. The number for an example includes the
- number for its parent element, if applicable. For example, the number
- 4-3 indicates the third example in the fourth top-level chapter. In
- this example, 4 is referred to as the parent number, and 3 is referred
- to as the example digit. This format message constructs a full number
- from a parent number and an example digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the example's parent element
- digit - The number of the example in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>example.number</msgid>
- <msgstr><parent/>-<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>example.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to examples.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the example
- titleabbrev - The titleabbrev of the example, or just the title
- if no titleabbrev exists
- number - The full number of the example, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>example.xref</msgid>
- <msgstr>Example <number/></msgstr>
- </_msg>
-</msgset>
-
-<!-- == figure == -->
-<msgset>
- <msgid>figure.digit</msgid>
- <!--
- The number formatter used for figure numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>figure.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>figure.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for figures. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the figure
- titleabbrev - The titleabbrev of the figure, or just the title
- if no titleabbrev exists
- number - The full number of the figure, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>figure.label</msgid>
- <msgstr role='header'><i>Figure <number/></i> </msgstr>
- <msgstr role='li'>Figure <number/> </msgstr>
- <msgstr>Figure <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>figure.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for figure. Numbers
- are used in labels, cross references, and any other place where the
- figure might be referenced. The number for a figure includes the
- number for its parent element, if applicable. For example, the number
- 4-3 indicates the third figure in the fourth top-level chapter. In
- this figure, 4 is referred to as the parent number, and 3 is referred
- to as the figure digit. This format message constructs a full number
- from a parent number and a figure digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the figure's parent element
- digit - The number of the figure in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>figure.number</msgid>
- <msgstr><parent/>-<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>figure.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to figures.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the figure
- titleabbrev - The titleabbrev of the figure, or just the title
- if no titleabbrev exists
- number - The full number of the figure, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>figure.xref</msgid>
- <msgstr>Figure <number/></msgstr>
- </_msg>
-</msgset>
-
<!-- == glossentry == -->
<msgset>
<msgid>glossentry.abbrev.format</msgid>
@@ -1238,48 +569,6 @@
</_msg>
</msgset>
-<!-- == glossary == -->
-<msgset>
- <msgid>glossary.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to glossaries.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the figure
- titleabbrev - The titleabbrev of the figure, or just the title
- if no titleabbrev exists
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Note that authors are not required to provide explicit titles for
- glossaries. If the author does not provide a title, the translatable
- string 'Glossary' is used as a default.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>glossary.xref</msgid>
- <msgstr><title/></msgstr>
- </_msg>
-</msgset>
-
<!-- == glossentry == -->
<msgset>
<msgid>glossentry.tooltip</msgid>
@@ -1473,150 +762,6 @@
</_msg>
</msgset>
-<!-- == part == -->
-<msgset>
- <msgid>part.digit</msgid>
- <!--
- The number formatter used for part numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>part.digit</msgid>
- <msgstr>I</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>part.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for parts. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the part
- titleabbrev - The titleabbrev of the part, or just the title
- if no titleabbrev exists
- number - The full number of the part, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>part.label</msgid>
- <msgstr role='header'><number/>. </msgstr>
- <msgstr role='li'><number/>. </msgstr>
- <msgstr>Part <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>part.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to parts
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the part
- titleabbrev - The titleabbrev of the part, or just the title
- if no titleabbrev exists
- number - The full number of the part, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>part.xref</msgid>
- <msgstr>Part <number/> â?? <title/></msgstr>
- </_msg>
-</msgset>
-
-<!-- == preface == -->
-<msgset>
- <msgid>preface.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to prefaces.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the figure
- titleabbrev - The titleabbrev of the figure, or just the title
- if no titleabbrev exists
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Note that authors are not required to provide explicit titles for
- prefaces. If the author does not provide a title, the translatable
- string 'Preface' is used as a default.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>preface.xref</msgid>
- <msgstr><title/></msgstr>
- </_msg>
-</msgset>
<!-- == question == -->
<msgset>
@@ -1759,327 +904,6 @@
</_msg>
</msgset>
-<!-- == refentry == -->
-<msgset>
- <msgid>refentry.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to reference
- pages. Multiple roles can be provided to allow document translators
- to select how to format each cross reference using the xrefstyle
- attribute. If your language needs to provide different cross
- reference formattings for different parts of speech, you should
- provide multiple roles for cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the reference page
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>refentry.xref</msgid>
- <msgstr><title/></msgstr>
- </_msg>
-</msgset>
-
-<!-- == refsection == -->
-<msgset>
- <msgid>refsection.digit</msgid>
- <!--
- The number formatter used for reference section numbers. This can
- be one of "1", "A", "a", "I", or "i", without the quotes. These
- formatters provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>refsection.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>refsection.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for reference sections.
- Labels are used before the title in places like headers and table of
- contents listings. Multiple roles can be used to provide different
- formattings for different uses of labels. The following roles may
- be used with this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the section
- titleabbrev - The titleabbrev of the section, or just the title
- if no titleabbrev exists
- number - The full number of the section, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>refsection.label</msgid>
- <msgstr role='header'><number/>. </msgstr>
- <msgstr role='li'><number/>. </msgstr>
- <msgstr>Section <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>refsection.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for reference sections.
- Numbers are used in labels, cross references, and any other place where
- the section might be referenced. The number for a section includes the
- number for its parent element, if applicable. For example, the number
- 4.3.9 indicates the ninth section in the third section of the fourth
- top-level section or chapter. In this example, 4.3 is referred to as
- the parent number, and 9 is referred to as the section digit. This
- format message constructs a full number from a parent number and a
- section digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the section's parent element
- digit - The number of the section in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>refsection.number</msgid>
- <msgstr><parent/>.<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>refsection.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to reference
- sections. Multiple roles can be provided to allow document translators
- to select how to format each cross reference using the xrefstyle attribute.
- If your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the section
- titleabbrev - The titleabbrev of the section, or just the title
- if no titleabbrev exists
- number - The full number of the section, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>refsection.xref</msgid>
- <msgstr>Section <number/> â?? <title/></msgstr>
- </_msg>
-</msgset>
-
-<!-- == section == -->
-<msgset>
- <msgid>section.digit</msgid>
- <!--
- The number formatter used for section numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>section.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>section.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for sections. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the section
- titleabbrev - The titleabbrev of the section, or just the title
- if no titleabbrev exists
- number - The full number of the section, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>section.label</msgid>
- <msgstr role='header'><number/>. </msgstr>
- <msgstr role='li'><number/>. </msgstr>
- <msgstr>Section <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>section.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for sections. Numbers
- are used in labels, cross references, and any other place where the
- section might be referenced. The number for a section includes the
- number for its parent element, if applicable. For example, the number
- 4.3.9 indicates the ninth section in the third section of the fourth
- top-level section or chapter. In this example, 4.3 is referred to as
- the parent number, and 9 is referred to as the section digit. This
- format message constructs a full number from a parent number and a
- section digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the section's parent element
- digit - The number of the section in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>section.number</msgid>
- <msgstr><parent/>.<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>section.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to sections.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the section
- titleabbrev - The titleabbrev of the section, or just the title
- if no titleabbrev exists
- number - The full number of the section, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>section.xref</msgid>
- <msgstr>Section <number/> â?? <title/></msgstr>
- </_msg>
-</msgset>
<!-- == seeie == -->
<msgset>
@@ -2210,148 +1034,6 @@
</_msg>
</msgset>
-<!-- == table == -->
-<msgset>
- <msgid>table.digit</msgid>
- <!--
- The number formatter used for table numbers. This can be one of
- "1", "A", "a", "I", or "i", without the quotes. These formatters
- provide the following results:
-
- 1 2 3 4 5 6 7 8 9 10 11 12 13 14
- A B C D E F G H I J K L M N
- a b c d e f g h i j k l m n
- I II III IV V VI VII VIII IX X XI XII XIII XIV
- i ii iii iv v vi vii viii ix x xi xii xiii xiv
-
- Non-Western languages probably need additional formatters. Please
- contact the maintainers about adding formatters for your language.
- -->
- <_msg>
- <msgid>table.digit</msgid>
- <msgstr>1</msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>table.label</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format labels for tables. Labels
- are used before the title in places like headers and table of contents
- listings. Multiple roles can be used to provide different formattings
- for different uses of labels. The following roles may be used with
- this format message:
-
- header - Used for labels in headers
- li - Used for labels in table of contents listings
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the table
- titleabbrev - The titleabbrev of the table, or just the title
- if no titleabbrev exists
- number - The full number of the table, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>table.label</msgid>
- <msgstr role='header'><i>Table <number/></i> </msgstr>
- <msgstr role='li'>Table <number/> </msgstr>
- <msgstr>Table <number/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>table.number</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format numbers for table. Numbers
- are used in labels, cross references, and any other place where the
- table might be referenced. The number for a table includes the
- number for its parent element, if applicable. For example, the number
- 4-3 indicates the third table in the fourth top-level chapter. In
- this table, 4 is referred to as the parent number, and 3 is referred
- to as the table digit. This format message constructs a full number
- from a parent number and a table digit.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- parent - The full number of the table's parent element
- digit - The number of the table in its parent element,
- not including any leading numbers from the parent
- element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the digit, simply write left angle bracket, digit, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>table.number</msgid>
- <msgstr><parent/>-<digit/></msgstr>
- </_msg>
-</msgset>
-<msgset>
- <msgid>table.xref</msgid>
- <!--
- This is a special format message. Please read the full translator
- documentation before translating this message. The documentation
- is maintained as part of the stylesheet documentation in DocBook.
- For your convenience, it has also been converted to an HTML file
- named STYLESHEETS.xml in the i18n directory.
-
- This is a format message used to format cross references to tables.
- Multiple roles can be provided to allow document translators to select
- how to format each cross reference using the xrefstyle attribute. If
- your language needs to provide different cross reference formattings
- for different parts of speech, you should provide multiple roles for
- cross reference formatters.
-
- Special elements in the message will be replaced with the
- appropriate content, as follows:
-
- title - The title of the table
- titleabbrev - The titleabbrev of the table, or just the title
- if no titleabbrev exists
- number - The full number of the table, possibly including
- the number of the parent element
-
- These should be written as empty XML elements. Due to limitations
- in intltool, I can't write XML content in translator comments. To
- insert the title, simply write left angle bracket, title, slash,
- right angle bracket.
-
- Additionally, format messages can use the i, b, and tt markup tags
- to mark text as italic, bold, and monospace.
- -->
- <_msg>
- <msgid>table.xref</msgid>
- <msgstr>Table <number/></msgstr>
- </_msg>
-</msgset>
-
<!-- Mallard specific strings -->
<msgset>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]