added docbook libs for generating reference docs
This commit is contained in:
115
doc/reference/lib/docbook-xsl-snapshot/VERSION
Normal file
115
doc/reference/lib/docbook-xsl-snapshot/VERSION
Normal file
@@ -0,0 +1,115 @@
|
||||
<?xml version='1.0'?> <!-- -*- nxml -*- vim: set foldlevel=2: -->
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fm="http://freshmeat.net/projects/freshmeat-submit/"
|
||||
xmlns:sf="http://sourceforge.net/"
|
||||
xmlns:dyn="http://exslt.org/dynamic"
|
||||
xmlns:saxon="http://icl.com/saxon"
|
||||
exclude-result-prefixes="fm sf"
|
||||
version='1.0'>
|
||||
|
||||
<xsl:param name="get"/>
|
||||
<xsl:param name="VERSION" select="string(document('')//fm:Version[1])"/>
|
||||
<xsl:param name="Tag" select="concat('V',translate(string(document('')//fm:Version[1]),'.',''))"/>
|
||||
<xsl:param name="DistroTitle" select="string(document('')//fm:Branch[1])"/>
|
||||
<xsl:param name="sf-relid" select="0"/>
|
||||
|
||||
<xsl:param name="DistroName">docbook-xsl</xsl:param>
|
||||
<xsl:param name="PreviousRelease">1.74.0</xsl:param>
|
||||
<xsl:param name="PreviousReleaseRevision">8034</xsl:param>
|
||||
<xsl:param name="Revision">$Revision: 8051 $</xsl:param>
|
||||
<xsl:param name="VersionFileURL">$URL: https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl/VERSION $</xsl:param>
|
||||
|
||||
<xsl:strip-space elements="fm:*"/>
|
||||
|
||||
<fm:project>
|
||||
<fm:Project>DocBook</fm:Project>
|
||||
<fm:Branch>XSL Stylesheets</fm:Branch>
|
||||
<!-- * set/keep fm:version as N.NN.N-pre except for official releases, -->
|
||||
<!-- * then after the release, revert it to N.NN.N-pre & check back in -->
|
||||
<fm:Version>snapshot_8103</fm:Version>
|
||||
<!--
|
||||
<fm:License>MIT/X Consortium License</fm:License>
|
||||
-->
|
||||
<fm:Release-Focus>
|
||||
<!-- * Initial freshmeat announcement -->
|
||||
<!-- * Documentation -->
|
||||
<!-- * Code cleanup -->
|
||||
<!-- * Minor feature enhancements -->
|
||||
Major feature enhancements
|
||||
<!-- * Minor bugfixes -->
|
||||
<!-- * Major bugfixes -->
|
||||
<!-- * Minor security fixes -->
|
||||
<!-- * Major security fixes -->
|
||||
</fm:Release-Focus>
|
||||
<fm:Home-Page-URL>http://sourceforge.net/projects/docbook/</fm:Home-Page-URL>
|
||||
<fm:Gzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.tar.gz?download</fm:Gzipped-Tar-URL>
|
||||
<fm:Zipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.zip?download</fm:Zipped-Tar-URL>
|
||||
<fm:Bzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/{DISTRONAME-VERSION}.bz2?download</fm:Bzipped-Tar-URL>
|
||||
<fm:Changelog-URL>http://sourceforge.net/project/shownotes.php?release_id={SFRELID}</fm:Changelog-URL>
|
||||
<fm:CVS-URL>http://docbook.svn.sourceforge.net/viewvc/docbook/</fm:CVS-URL>
|
||||
<fm:Mailing-List-URL>http://lists.oasis-open.org/archives/docbook-apps/</fm:Mailing-List-URL>
|
||||
<fm:Changes>This is feature release with that includes the first support of .epub output and a number of bug fixes.</fm:Changes>
|
||||
</fm:project>
|
||||
|
||||
<xsl:template match="/" priority="-100">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$get = 'Tag'">
|
||||
<xsl:value-of select="$Tag"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$get = 'PreviousRelease'">
|
||||
<xsl:value-of select="$PreviousRelease"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$get = 'PreviousReleaseRevision'">
|
||||
<xsl:value-of select="$PreviousReleaseRevision"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$get = 'DistroTitle'">
|
||||
<xsl:value-of select="$DistroTitle"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$get = 'VERSION'">
|
||||
<xsl:value-of select="$VERSION"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:if test="$sf-relid = 0">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>You must specify the sf-relid as a parameter.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="//fm:project"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:project">
|
||||
<xsl:apply-templates/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:apply-templates select="fm:Changes" mode="text"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:Changes"/>
|
||||
|
||||
<xsl:template match="fm:Gzipped-Tar-URL|fm:Zipped-Tar-URL|fm:Bzipped-Tar-URL">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="substring-before(., '{DISTRONAME-VERSION}')"/>
|
||||
<xsl:value-of select="concat($DistroName, '-', $VERSION)"/>
|
||||
<xsl:value-of select="substring-after(., '{DISTRONAME-VERSION}')"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:Changelog-URL">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="substring-before(., '{SFRELID}')"/>
|
||||
<xsl:value-of select="$sf-relid"/>
|
||||
<xsl:value-of select="substring-after(., '{SFRELID}')"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="fm:*">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="normalize-space(.)"/>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/af.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/af.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/am.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/am.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/ar.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ar.xml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas)]))'>
|
||||
<!-- Documents using the kimber index method must have a lang attribute -->
|
||||
<!-- Only one of these should be present in the entity -->
|
||||
|
||||
<!ENTITY lang 'concat(/*/@lang, /*/@xml:lang)'>
|
||||
]>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
version="1.0"
|
||||
xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
|
||||
exclude-result-prefixes="k">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-kimber.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:param name="kimber.imported">
|
||||
<xsl:variable name="vendor" select="system-property('xsl:vendor')"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="not(contains($vendor, 'SAXON '))">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kimber' index method requires the </xsl:text>
|
||||
<xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:param>
|
||||
|
||||
|
||||
<!-- The following key used in the kimber indexing method. -->
|
||||
<xsl:key name="k-group"
|
||||
match="indexterm"
|
||||
use="k:getIndexGroupKey(⟨, &primary;)"/>
|
||||
|
||||
</xsl:stylesheet>
|
||||
150
doc/reference/lib/docbook-xsl-snapshot/common/autoidx-kosek.xsl
Normal file
150
doc/reference/lib/docbook-xsl-snapshot/common/autoidx-kosek.xsl
Normal file
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas)]))'>
|
||||
|
||||
]>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
version="1.0"
|
||||
xmlns:func="http://exslt.org/functions"
|
||||
xmlns:exslt="http://exslt.org/common"
|
||||
xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
extension-element-prefixes="func exslt"
|
||||
exclude-result-prefixes="func exslt i l"
|
||||
xmlns:i="urn:cz-kosek:functions:index">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-kosek.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:param name="kosek.imported">
|
||||
<xsl:variable name="vendor" select="system-property('xsl:vendor')"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($vendor, 'libxslt')">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kosek' index method does not </xsl:text>
|
||||
<xsl:text>work with the xsltproc XSLT processor.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:param>
|
||||
|
||||
<!-- Returns index group code for given term -->
|
||||
<func:function name="i:group-index">
|
||||
<xsl:param name="term"/>
|
||||
|
||||
<xsl:variable name="letters-rtf">
|
||||
<xsl:variable name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="local.l10n.letters"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.letters"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($local.l10n.letters) > 0">
|
||||
<xsl:copy-of select="$local.l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="count($l10n.letters) > 0">
|
||||
<xsl:copy-of select="$l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of index grouping letters exists</xsl:text>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$lang = 'en'">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>; using "en".</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:copy-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:letters)[1]"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="letters" select="exslt:node-set($letters-rtf)/*"/>
|
||||
|
||||
<xsl:variable name="long-letter-index" select="$letters/l:l[. = substring($term,1,2)]/@i"/>
|
||||
<xsl:variable name="short-letter-index" select="$letters/l:l[. = substring($term,1,1)]/@i"/>
|
||||
<xsl:variable name="letter-index">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$long-letter-index">
|
||||
<xsl:value-of select="$long-letter-index"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$short-letter-index">
|
||||
<xsl:value-of select="$short-letter-index"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<func:result select="number($letter-index)"/>
|
||||
</func:function>
|
||||
|
||||
<!-- Return index group letter for given group code -->
|
||||
<func:function name="i:group-letter">
|
||||
<xsl:param name="index"/>
|
||||
|
||||
<xsl:variable name="letters-rtf">
|
||||
<xsl:variable name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="local.l10n.letters"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.letters"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:letters)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($local.l10n.letters) > 0">
|
||||
<xsl:copy-of select="$local.l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="count($l10n.letters) > 0">
|
||||
<xsl:copy-of select="$l10n.letters"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of index grouping letters exists</xsl:text>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$lang = 'en'">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>; using "en".</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:copy-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:letters)[1]"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="letters" select="exslt:node-set($letters-rtf)/*"/>
|
||||
|
||||
<func:result select="$letters/l:l[@i=$index][1]"/>
|
||||
</func:function>
|
||||
|
||||
<xsl:key name="group-code"
|
||||
match="indexterm"
|
||||
use="i:group-index(&primary;)"/>
|
||||
|
||||
</xsl:stylesheet>
|
||||
666
doc/reference/lib/docbook-xsl-snapshot/common/az.xml
Normal file
666
doc/reference/lib/docbook-xsl-snapshot/common/az.xml
Normal file
@@ -0,0 +1,666 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="az" english-language-name="Azerbaijani">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/az.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited az.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="İcmal"/>
|
||||
<l:gentext key="abstract" text="İcmal"/>
|
||||
<l:gentext key="Answer" text="Cavab:"/>
|
||||
<l:gentext key="answer" text="Cavab:"/>
|
||||
<l:gentext key="Appendix" text="Əlavə"/>
|
||||
<l:gentext key="appendix" text="Əlavə"/>
|
||||
<l:gentext key="Article" text="Məqalə"/>
|
||||
<l:gentext key="article" text="Məqalə"/>
|
||||
<l:gentext key="Author" text="Müəllif"/>
|
||||
<l:gentext key="Bibliography" text="Qaynaqça"/>
|
||||
<l:gentext key="bibliography" text="Qaynaqça"/>
|
||||
<l:gentext key="Book" text="Kitab"/>
|
||||
<l:gentext key="book" text="Kitab"/>
|
||||
<l:gentext key="CAUTION" text="DİQQƏT"/>
|
||||
<l:gentext key="Caution" text="Diqqət"/>
|
||||
<l:gentext key="caution" text="Diqqət"/>
|
||||
<l:gentext key="Chapter" text="Bölüm"/>
|
||||
<l:gentext key="chapter" text="Bölüm"/>
|
||||
<l:gentext key="Colophon" text="Kitab Haqqında"/>
|
||||
<l:gentext key="colophon" text="Kitab Haqqında"/>
|
||||
<l:gentext key="Copyright" text="Müəllif Hüququ"/>
|
||||
<l:gentext key="copyright" text="Müəllif Hüququ"/>
|
||||
<l:gentext key="Dedication" text="Həsr"/>
|
||||
<l:gentext key="dedication" text="Həsr"/>
|
||||
<l:gentext key="Edition" text="Buraxılış"/>
|
||||
<l:gentext key="edition" text="Buraxılış"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Tənlik"/>
|
||||
<l:gentext key="equation" text="Tənlik"/>
|
||||
<l:gentext key="Example" text="Nümunə"/>
|
||||
<l:gentext key="example" text="Nümunə"/>
|
||||
<l:gentext key="Figure" text="Fiqur"/>
|
||||
<l:gentext key="figure" text="Fiqur"/>
|
||||
<l:gentext key="Glossary" text="Lüğət"/>
|
||||
<l:gentext key="glossary" text="Lüğət"/>
|
||||
<l:gentext key="GlossSee" text="Bax"/>
|
||||
<l:gentext key="glosssee" text="Bax"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Eləcə Də Bax"/>
|
||||
<l:gentext key="glossseealso" text="Eləcə Də Bax"/>
|
||||
<l:gentext key="IMPORTANT" text="VACİB"/>
|
||||
<l:gentext key="important" text="Vacib"/>
|
||||
<l:gentext key="Important" text="Vacib"/>
|
||||
<l:gentext key="Index" text="İndeks"/>
|
||||
<l:gentext key="index" text="İndeks"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Qanuni Qeyd"/>
|
||||
<l:gentext key="legalnotice" text="Qanuni Qeyd"/>
|
||||
<l:gentext key="MsgAud" text="Hədəf Oxuyucu"/>
|
||||
<l:gentext key="msgaud" text="Hədəf Oxuyucu"/>
|
||||
<l:gentext key="MsgLevel" text="Səviyyə"/>
|
||||
<l:gentext key="msglevel" text="Səviyyə"/>
|
||||
<l:gentext key="MsgOrig" text="Mənbə"/>
|
||||
<l:gentext key="msgorig" text="Mənbə"/>
|
||||
<l:gentext key="NOTE" text="QEYD"/>
|
||||
<l:gentext key="Note" text="Qeyd"/>
|
||||
<l:gentext key="note" text="Qeyd"/>
|
||||
<l:gentext key="Part" text="Hissə"/>
|
||||
<l:gentext key="part" text="Hissə"/>
|
||||
<l:gentext key="Preface" text="Önsöz"/>
|
||||
<l:gentext key="preface" text="Önsöz"/>
|
||||
<l:gentext key="Procedure" text="Üsul"/>
|
||||
<l:gentext key="procedure" text="Üsul"/>
|
||||
<l:gentext key="ProductionSet" text="Produksiya"/>
|
||||
<l:gentext key="PubDate" text="Yayimlama Tarixi"/>
|
||||
<l:gentext key="pubdate" text="Yayimlama Tarixi"/>
|
||||
<l:gentext key="Published" text="Yayimlama"/>
|
||||
<l:gentext key="published" text="Yayimlama"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="S və C"/>
|
||||
<l:gentext key="qandadiv" text="S və C"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Sual:"/>
|
||||
<l:gentext key="question" text="Sual:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Xatırlatma"/>
|
||||
<l:gentext key="reference" text="Xatırlatma"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Ad"/>
|
||||
<l:gentext key="refname" text="Ad"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="İcmal"/>
|
||||
<l:gentext key="refsynopsisdiv" text="İcmal"/>
|
||||
<l:gentext key="RevHistory" text="Nəzərdən Keçirmə Tarixçəsi"/>
|
||||
<l:gentext key="revhistory" text="Nəzərdən Keçirmə Tarixçəsi"/>
|
||||
<l:gentext key="revision" text="Nəzərdən Keçirmə"/>
|
||||
<l:gentext key="Revision" text="Nəzərdən Keçirmə"/>
|
||||
<l:gentext key="sect1" text="Qisim"/>
|
||||
<l:gentext key="sect2" text="Qisim"/>
|
||||
<l:gentext key="sect3" text="Qisim"/>
|
||||
<l:gentext key="sect4" text="Qisim"/>
|
||||
<l:gentext key="sect5" text="Qisim"/>
|
||||
<l:gentext key="section" text="Qisim"/>
|
||||
<l:gentext key="Section" text="Qisim"/>
|
||||
<l:gentext key="see" text="bax"/>
|
||||
<l:gentext key="See" text="Bax"/>
|
||||
<l:gentext key="seealso" text="eləcə də bax"/>
|
||||
<l:gentext key="Seealso" text="Eləcə Də Bax"/>
|
||||
<l:gentext key="SeeAlso" text="Eləcə Də Bax"/>
|
||||
<l:gentext key="set" text="Dəstə"/>
|
||||
<l:gentext key="Set" text="Dəstə"/>
|
||||
<l:gentext key="setindex" text="İndeksi Seç"/>
|
||||
<l:gentext key="SetIndex" text="İndeksi Seç"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="Kənar Çubuğu"/>
|
||||
<l:gentext key="step" text="addım"/>
|
||||
<l:gentext key="Step" text="Addım"/>
|
||||
<l:gentext key="table" text="cədvəl"/>
|
||||
<l:gentext key="Table" text="Cədvəl"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="məsləhət"/>
|
||||
<l:gentext key="TIP" text="MƏSLƏHƏT"/>
|
||||
<l:gentext key="Tip" text="Məsləhət"/>
|
||||
<l:gentext key="Warning" text="Xəbərdarlıq"/>
|
||||
<l:gentext key="warning" text="Xəbərdarlıq"/>
|
||||
<l:gentext key="WARNING" text="XƏBƏRDARLIQ"/>
|
||||
<l:gentext key="and" text="və"/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Düzəldildi"/>
|
||||
<l:gentext key="edited" text="Düzəldildi"/>
|
||||
<l:gentext key="Editedby" text="Düzəliş edən"/>
|
||||
<l:gentext key="editedby" text="Düzəliş edən"/>
|
||||
<l:gentext key="in" text=""/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="mövcud olmayan element"/>
|
||||
<l:gentext key="notes" text="Qeydlər"/>
|
||||
<l:gentext key="Notes" text="Qeydlər"/>
|
||||
<l:gentext key="Pgs" text="Shflr."/>
|
||||
<l:gentext key="pgs" text="Shflr."/>
|
||||
<l:gentext key="Revisedby" text="Gözdən keçirən: "/>
|
||||
<l:gentext key="revisedby" text="Gözdən keçirən: "/>
|
||||
<l:gentext key="TableNotes" text="Qeydlər"/>
|
||||
<l:gentext key="tablenotes" text="Qeydlər"/>
|
||||
<l:gentext key="TableofContents" text="Məzmun"/>
|
||||
<l:gentext key="tableofcontents" text="Məzmun"/>
|
||||
<l:gentext key="unexpectedelementname" text="Gözlənməyən element adı"/>
|
||||
<l:gentext key="unsupported" text="dəstəklənmir"/>
|
||||
<l:gentext key="xrefto" text=""/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Tənliklər"/>
|
||||
<l:gentext key="ListofEquations" text="Tənliklər"/>
|
||||
<l:gentext key="ListofExamples" text="Nümunələr"/>
|
||||
<l:gentext key="listofexamples" text="Nümunələr"/>
|
||||
<l:gentext key="ListofFigures" text="Fiqurlar"/>
|
||||
<l:gentext key="listoffigures" text="Fiqurlar"/>
|
||||
<l:gentext key="ListofProcedures" text="Üsullar"/>
|
||||
<l:gentext key="listofprocedures" text="Üsullar"/>
|
||||
<l:gentext key="listoftables" text="Cədvəllər"/>
|
||||
<l:gentext key="ListofTables" text="Cədvəllər"/>
|
||||
<l:gentext key="ListofUnknown" text="Naməlumlar"/>
|
||||
<l:gentext key="listofunknown" text="List of Unknown" lang="en"/>
|
||||
<l:gentext key="nav-home" text="Ev"/>
|
||||
<l:gentext key="nav-next" text="Sonrakı"/>
|
||||
<l:gentext key="nav-next-sibling" text="İrəli"/>
|
||||
<l:gentext key="nav-prev" text="Əvvəlki"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Geri"/>
|
||||
<l:gentext key="nav-up" text="Yuxarı"/>
|
||||
<l:gentext key="nav-toc" text="Məzmun"/>
|
||||
<l:gentext key="Draft" text="Şablon"/>
|
||||
<l:gentext key="above" text="Üstündə"/>
|
||||
<l:gentext key="below" text="Altında"/>
|
||||
<l:gentext key="sectioncalled" text=""/>
|
||||
<l:gentext key="index symbols" text="Simvollar"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcçdeəfgğhxıijkqlmnoöprsştuüvyz"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCÇDEƏFGĞHXIİJKQLMNOÖPRSŞTUÜVYZ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Əlavə %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Bölüm %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Tənlik %n. %t"/>
|
||||
<l:template name="example" text="Nümunə %n. %t"/>
|
||||
<l:template name="figure" text="Fiqur %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Hissə %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Üsul %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produksiya %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Cədvəl %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Əlavə %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Bölüm %n. %t"/>
|
||||
<l:template name="part" text="Hissə %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Cavab: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Sual: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Sual: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)"/>
|
||||
<l:template name="docname" text=" in %o"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)"/>
|
||||
<l:template name="Page" text="Page %p"/>
|
||||
<l:template name="bridgehead" text=" “%t”"/>
|
||||
<l:template name="refsection" text=" “%t”"/>
|
||||
<l:template name="refsect1" text=" “%t”"/>
|
||||
<l:template name="refsect2" text=" “%t”"/>
|
||||
<l:template name="refsect3" text=" “%t”"/>
|
||||
<l:template name="sect1" text=" “%t”"/>
|
||||
<l:template name="sect2" text=" “%t”"/>
|
||||
<l:template name="sect3" text=" “%t”"/>
|
||||
<l:template name="sect4" text=" “%t”"/>
|
||||
<l:template name="sect5" text=" “%t”"/>
|
||||
<l:template name="section" text=" “%t”"/>
|
||||
<l:template name="simplesect" text=" “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="Cavab: %n"/>
|
||||
<l:template name="appendix" text="Əlavə %n"/>
|
||||
<l:template name="bridgehead" text="Qisim %n"/>
|
||||
<l:template name="chapter" text="Bölüm %n"/>
|
||||
<l:template name="equation" text="Tənlik %n"/>
|
||||
<l:template name="example" text="Nümunə %n"/>
|
||||
<l:template name="figure" text="Fiqur %n"/>
|
||||
<l:template name="part" text="Hissə %n"/>
|
||||
<l:template name="procedure" text="Üsul %n"/>
|
||||
<l:template name="productionset" text="Produksiya %n"/>
|
||||
<l:template name="qandadiv" text="S və C %n"/>
|
||||
<l:template name="qandaentry" text="Sual: %n"/>
|
||||
<l:template name="question" text="Sual: %n"/>
|
||||
<l:template name="sect1" text="Qisim %n"/>
|
||||
<l:template name="sect2" text="Qisim %n"/>
|
||||
<l:template name="sect3" text="Qisim %n"/>
|
||||
<l:template name="sect4" text="Qisim %n"/>
|
||||
<l:template name="sect5" text="Qisim %n"/>
|
||||
<l:template name="section" text="Qisim %n"/>
|
||||
<l:template name="table" text="Cədvəl %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Əlavə %n, %t"/>
|
||||
<l:template name="bridgehead" text="Qisim %n, “%t”"/>
|
||||
<l:template name="chapter" text="Bölüm %n, %t"/>
|
||||
<l:template name="equation" text="Tənlik %n, “%t”"/>
|
||||
<l:template name="example" text="Nümunə %n, “%t”"/>
|
||||
<l:template name="figure" text="Fiqur %n, “%t”"/>
|
||||
<l:template name="part" text="Hissə %n, “%t”"/>
|
||||
<l:template name="procedure" text="Üsul %n, “%t”"/>
|
||||
<l:template name="productionset" text="Produksiya %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="S və C %n, “%t”"/>
|
||||
<l:template name="refsect1" text=" “%t”"/>
|
||||
<l:template name="refsect2" text=" “%t”"/>
|
||||
<l:template name="refsect3" text=" “%t”"/>
|
||||
<l:template name="refsection" text=" “%t”"/>
|
||||
<l:template name="sect1" text="Qisim %n, “%t”"/>
|
||||
<l:template name="sect2" text="Qisim %n, “%t”"/>
|
||||
<l:template name="sect3" text="Qisim %n, “%t”"/>
|
||||
<l:template name="sect4" text="Qisim %n, “%t”"/>
|
||||
<l:template name="sect5" text="Qisim %n, “%t”"/>
|
||||
<l:template name="section" text="Qisim %n, “%t”"/>
|
||||
<l:template name="simplesect" text=" “%t”"/>
|
||||
<l:template name="table" text="Cədvəl %n, “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" və "/>
|
||||
<l:template name="seplast" text=", və "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Bax %t"/>
|
||||
<l:template name="seealso" text="Eləcə Də Bax %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Hədəf Oxuyucu: "/>
|
||||
<l:template name="MsgLevel" text="Səviyyə: "/>
|
||||
<l:template name="MsgOrig" text="Mənbə: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="m/d/Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: "/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Janvar"/>
|
||||
<l:template name="February" text="Fevral"/>
|
||||
<l:template name="March" text="Mart"/>
|
||||
<l:template name="April" text="Aprel"/>
|
||||
<l:template name="May" text="May"/>
|
||||
<l:template name="June" text="İyun"/>
|
||||
<l:template name="July" text="İyul"/>
|
||||
<l:template name="August" text="Avqust"/>
|
||||
<l:template name="September" text="Sentyabr"/>
|
||||
<l:template name="October" text="Oktyabr"/>
|
||||
<l:template name="November" text="Noyabr"/>
|
||||
<l:template name="December" text="Dekabr"/>
|
||||
<l:template name="Monday" text="Bazar Ertəsi"/>
|
||||
<l:template name="Tuesday" text="Çərşənbə Axşamı "/>
|
||||
<l:template name="Wednesday" text="Çərşənbə"/>
|
||||
<l:template name="Thursday" text="Cümə Axşamı"/>
|
||||
<l:template name="Friday" text="Cümə"/>
|
||||
<l:template name="Saturday" text="Şənbə"/>
|
||||
<l:template name="Sunday" text="Bazar"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Yan"/>
|
||||
<l:template name="Feb" text="Fev"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="May"/>
|
||||
<l:template name="Jun" text="İyn"/>
|
||||
<l:template name="Jul" text="İyl"/>
|
||||
<l:template name="Aug" text="Avq"/>
|
||||
<l:template name="Sep" text="Sen"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Noy"/>
|
||||
<l:template name="Dec" text="Dek"/>
|
||||
<l:template name="Mon" text="Ber"/>
|
||||
<l:template name="Tue" text="Çax"/>
|
||||
<l:template name="Wed" text="Çər"/>
|
||||
<l:template name="Thu" text="Cax"/>
|
||||
<l:template name="Fri" text="Cüm"/>
|
||||
<l:template name="Sat" text="Şnb"/>
|
||||
<l:template name="Sun" text="Baz"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x042c Azerbaijani"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">İşarələr</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">Ç</l:l>
|
||||
<l:l i="5">ç</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="6">E</l:l>
|
||||
<l:l i="6">e</l:l>
|
||||
<l:l i="7">e</l:l>
|
||||
<l:l i="7">e</l:l>
|
||||
<l:l i="8">Ə</l:l>
|
||||
<l:l i="8">ə</l:l>
|
||||
<l:l i="9">G</l:l>
|
||||
<l:l i="9">g</l:l>
|
||||
<l:l i="10">Ğ</l:l>
|
||||
<l:l i="10">ğ</l:l>
|
||||
<l:l i="11">H</l:l>
|
||||
<l:l i="11">h</l:l>
|
||||
<l:l i="12">X</l:l>
|
||||
<l:l i="12">x</l:l>
|
||||
<l:l i="13">I</l:l>
|
||||
<l:l i="13">ı</l:l>
|
||||
<l:l i="14">İ</l:l>
|
||||
<l:l i="14">i</l:l>
|
||||
<l:l i="15">J</l:l>
|
||||
<l:l i="15">j</l:l>
|
||||
<l:l i="16">K</l:l>
|
||||
<l:l i="16">k</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">L</l:l>
|
||||
<l:l i="18">l</l:l>
|
||||
<l:l i="19">M</l:l>
|
||||
<l:l i="19">m</l:l>
|
||||
<l:l i="20">N</l:l>
|
||||
<l:l i="20">n</l:l>
|
||||
<l:l i="21">O</l:l>
|
||||
<l:l i="21">o</l:l>
|
||||
<l:l i="22">Ö</l:l>
|
||||
<l:l i="22">ö</l:l>
|
||||
<l:l i="23">P</l:l>
|
||||
<l:l i="23">p</l:l>
|
||||
<l:l i="24">R</l:l>
|
||||
<l:l i="24">r</l:l>
|
||||
<l:l i="25">S</l:l>
|
||||
<l:l i="25">s</l:l>
|
||||
<l:l i="26">Ş</l:l>
|
||||
<l:l i="26">ş</l:l>
|
||||
<l:l i="27">T</l:l>
|
||||
<l:l i="27">t</l:l>
|
||||
<l:l i="28">U</l:l>
|
||||
<l:l i="28">u</l:l>
|
||||
<l:l i="29">Ü</l:l>
|
||||
<l:l i="29">ü</l:l>
|
||||
<l:l i="30">V</l:l>
|
||||
<l:l i="30">v</l:l>
|
||||
<l:l i="31">Y</l:l>
|
||||
<l:l i="31">y</l:l>
|
||||
<l:l i="32">Z</l:l>
|
||||
<l:l i="32">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
718
doc/reference/lib/docbook-xsl-snapshot/common/bg.xml
Normal file
718
doc/reference/lib/docbook-xsl-snapshot/common/bg.xml
Normal file
@@ -0,0 +1,718 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="bg" english-language-name="Bulgarian">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/bg.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited bg.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Анотация"/>
|
||||
<l:gentext key="abstract" text="Анотация"/>
|
||||
<l:gentext key="Answer" text="О"/>
|
||||
<l:gentext key="answer" text="О"/>
|
||||
<l:gentext key="Appendix" text="Приложение"/>
|
||||
<l:gentext key="appendix" text="Приложение"/>
|
||||
<l:gentext key="Article" text="Статия"/>
|
||||
<l:gentext key="article" text="Статия"/>
|
||||
<l:gentext key="Author" text="Автор"/>
|
||||
<l:gentext key="Bibliography" text="Литература"/>
|
||||
<l:gentext key="bibliography" text="Литература"/>
|
||||
<l:gentext key="Book" text="Книга"/>
|
||||
<l:gentext key="book" text="Книга"/>
|
||||
<l:gentext key="CAUTION" text="Внимание"/>
|
||||
<l:gentext key="Caution" text="Внимание"/>
|
||||
<l:gentext key="caution" text="Внимание"/>
|
||||
<l:gentext key="Chapter" text="Глава"/>
|
||||
<l:gentext key="chapter" text="Глава"/>
|
||||
<l:gentext key="Colophon" text="Библиографско каре"/>
|
||||
<l:gentext key="colophon" text="Библиографско каре"/>
|
||||
<l:gentext key="Copyright" text="Авторски права"/>
|
||||
<l:gentext key="copyright" text="Авторски права"/>
|
||||
<l:gentext key="Dedication" text="Посвещение"/>
|
||||
<l:gentext key="dedication" text="Посвещение"/>
|
||||
<l:gentext key="Edition" text="Издание"/>
|
||||
<l:gentext key="edition" text="Издание"/>
|
||||
<l:gentext key="Editor" text="Редактор"/>
|
||||
<l:gentext key="Equation" text="Формула"/>
|
||||
<l:gentext key="equation" text="Формула"/>
|
||||
<l:gentext key="Example" text="Пример"/>
|
||||
<l:gentext key="example" text="Пример"/>
|
||||
<l:gentext key="Figure" text="Фигура"/>
|
||||
<l:gentext key="figure" text="Фигура"/>
|
||||
<l:gentext key="Glossary" text="Терминологичен речник"/>
|
||||
<l:gentext key="glossary" text="Терминологичен речник"/>
|
||||
<l:gentext key="GlossSee" text="вж."/>
|
||||
<l:gentext key="glosssee" text="вж."/>
|
||||
<l:gentext key="GlossSeeAlso" text="вж."/>
|
||||
<l:gentext key="glossseealso" text="вж."/>
|
||||
<l:gentext key="IMPORTANT" text="Важно"/>
|
||||
<l:gentext key="important" text="Важно"/>
|
||||
<l:gentext key="Important" text="Важно"/>
|
||||
<l:gentext key="Index" text="Азбучен указател"/>
|
||||
<l:gentext key="index" text="Азбучен указател"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Авторски права"/>
|
||||
<l:gentext key="legalnotice" text="Авторски права"/>
|
||||
<l:gentext key="MsgAud" text="Насоченост"/>
|
||||
<l:gentext key="msgaud" text="Насоченост"/>
|
||||
<l:gentext key="MsgLevel" text="Ниво"/>
|
||||
<l:gentext key="msglevel" text="Ниво"/>
|
||||
<l:gentext key="MsgOrig" text="Източник"/>
|
||||
<l:gentext key="msgorig" text="Източник"/>
|
||||
<l:gentext key="NOTE" text="Забележка"/>
|
||||
<l:gentext key="Note" text="Забележка"/>
|
||||
<l:gentext key="note" text="Забележка"/>
|
||||
<l:gentext key="Part" text="Част"/>
|
||||
<l:gentext key="part" text="Част"/>
|
||||
<l:gentext key="Preface" text="Предговор"/>
|
||||
<l:gentext key="preface" text="Предговор"/>
|
||||
<l:gentext key="Procedure" text="Процедура"/>
|
||||
<l:gentext key="procedure" text="Процедура"/>
|
||||
<l:gentext key="ProductionSet" text="Множество от декартови произведения по Бакхус-Наур"/>
|
||||
<l:gentext key="PubDate" text="Дата на издаване"/>
|
||||
<l:gentext key="pubdate" text="Дата на издаване"/>
|
||||
<l:gentext key="Published" text="Издаден"/>
|
||||
<l:gentext key="published" text="Издаден"/>
|
||||
<l:gentext key="Publisher" text="Издател"/>
|
||||
<l:gentext key="Qandadiv" text="Въпроси и отговори"/>
|
||||
<l:gentext key="qandadiv" text="Въпроси и отговори"/>
|
||||
<l:gentext key="QandASet" text="Често задавани въпроси"/>
|
||||
<l:gentext key="Question" text="В"/>
|
||||
<l:gentext key="question" text="В"/>
|
||||
<l:gentext key="RefEntry" text="вж."/>
|
||||
<l:gentext key="refentry" text="вж."/>
|
||||
<l:gentext key="Reference" text="Справочник"/>
|
||||
<l:gentext key="reference" text="Справочник"/>
|
||||
<l:gentext key="References" text="Препратки"/>
|
||||
<l:gentext key="RefName" text="Название"/>
|
||||
<l:gentext key="refname" text="Название"/>
|
||||
<l:gentext key="RefSection" text="вж."/>
|
||||
<l:gentext key="refsection" text="вж."/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Синтаксис"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Синтаксис"/>
|
||||
<l:gentext key="RevHistory" text="Промени"/>
|
||||
<l:gentext key="revhistory" text="Промени"/>
|
||||
<l:gentext key="revision" text="Издание"/>
|
||||
<l:gentext key="Revision" text="Издание"/>
|
||||
<l:gentext key="sect1" text="Раздел"/>
|
||||
<l:gentext key="sect2" text="Раздел"/>
|
||||
<l:gentext key="sect3" text="Раздел"/>
|
||||
<l:gentext key="sect4" text="Раздел"/>
|
||||
<l:gentext key="sect5" text="Раздел"/>
|
||||
<l:gentext key="section" text="Раздел"/>
|
||||
<l:gentext key="Section" text="Раздел"/>
|
||||
<l:gentext key="see" text="вж."/>
|
||||
<l:gentext key="See" text="вж."/>
|
||||
<l:gentext key="seealso" text="вж."/>
|
||||
<l:gentext key="Seealso" text="вж."/>
|
||||
<l:gentext key="SeeAlso" text="вж."/>
|
||||
<l:gentext key="set" text="Указател"/>
|
||||
<l:gentext key="Set" text="Указател"/>
|
||||
<l:gentext key="setindex" text="Указател"/>
|
||||
<l:gentext key="SetIndex" text="Указател"/>
|
||||
<l:gentext key="Sidebar" text="Разделител"/>
|
||||
<l:gentext key="sidebar" text="Разделител"/>
|
||||
<l:gentext key="step" text="Стъпка"/>
|
||||
<l:gentext key="Step" text="Стъпка"/>
|
||||
<l:gentext key="table" text="Таблица"/>
|
||||
<l:gentext key="Table" text="Таблица"/>
|
||||
<l:gentext key="task" text="Задача"/>
|
||||
<l:gentext key="Task" text="Задача"/>
|
||||
<l:gentext key="tip" text="Подсказка"/>
|
||||
<l:gentext key="TIP" text="Подсказка"/>
|
||||
<l:gentext key="Tip" text="Подсказка"/>
|
||||
<l:gentext key="Warning" text="Внимание"/>
|
||||
<l:gentext key="warning" text="Внимание"/>
|
||||
<l:gentext key="WARNING" text="Внимание"/>
|
||||
<l:gentext key="and" text="и"/>
|
||||
<l:gentext key="by" text="от"/>
|
||||
<l:gentext key="Edited" text="Редактирано от"/>
|
||||
<l:gentext key="edited" text="Редактирано от"/>
|
||||
<l:gentext key="Editedby" text="Редактирано от"/>
|
||||
<l:gentext key="editedby" text="Редактирано от"/>
|
||||
<l:gentext key="in" text="в"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="липсващ елемент"/>
|
||||
<l:gentext key="notes" text="Забележки"/>
|
||||
<l:gentext key="Notes" text="Забележки"/>
|
||||
<l:gentext key="Pgs" text="стр."/>
|
||||
<l:gentext key="pgs" text="стр."/>
|
||||
<l:gentext key="Revisedby" text="Преработено от"/>
|
||||
<l:gentext key="revisedby" text="Преработено от"/>
|
||||
<l:gentext key="TableNotes" text="Забележки"/>
|
||||
<l:gentext key="tablenotes" text="Забележки"/>
|
||||
<l:gentext key="TableofContents" text="Съдържание"/>
|
||||
<l:gentext key="tableofcontents" text="Съдържание"/>
|
||||
<l:gentext key="unexpectedelementname" text="неочакван елемент"/>
|
||||
<l:gentext key="unsupported" text="неподдържан елемент"/>
|
||||
<l:gentext key="xrefto" text="вж."/>
|
||||
<l:gentext key="Authors" text="Автори"/>
|
||||
<l:gentext key="copyeditor" text="Редактор"/>
|
||||
<l:gentext key="graphicdesigner" text="Автор на графичното оформление"/>
|
||||
<l:gentext key="productioneditor" text="Редактор на изданието"/>
|
||||
<l:gentext key="technicaleditor" text="Технически редактор"/>
|
||||
<l:gentext key="translator" text="Преводач"/>
|
||||
<l:gentext key="listofequations" text="Списък на формулите"/>
|
||||
<l:gentext key="ListofEquations" text="Списък на формулите"/>
|
||||
<l:gentext key="ListofExamples" text="Списък на примерите"/>
|
||||
<l:gentext key="listofexamples" text="Списък на примерите"/>
|
||||
<l:gentext key="ListofFigures" text="Списък на фигурите"/>
|
||||
<l:gentext key="listoffigures" text="Списък на фигурите"/>
|
||||
<l:gentext key="ListofProcedures" text="Списък на процедурите"/>
|
||||
<l:gentext key="listofprocedures" text="Списък на процедурите"/>
|
||||
<l:gentext key="listoftables" text="Списък на таблиците"/>
|
||||
<l:gentext key="ListofTables" text="Списък на таблиците"/>
|
||||
<l:gentext key="ListofUnknown" text="Списък с други неща"/>
|
||||
<l:gentext key="listofunknown" text="Списък с други неща"/>
|
||||
<l:gentext key="nav-home" text="Начало"/>
|
||||
<l:gentext key="nav-next" text="Напред"/>
|
||||
<l:gentext key="nav-next-sibling" text="Прескачане напред"/>
|
||||
<l:gentext key="nav-prev" text="Назад"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Прескачане назад"/>
|
||||
<l:gentext key="nav-up" text="Ниво нагоре"/>
|
||||
<l:gentext key="nav-toc" text="Съдържание"/>
|
||||
<l:gentext key="Draft" text="Чернова"/>
|
||||
<l:gentext key="above" text="по-горе"/>
|
||||
<l:gentext key="below" text="по-долу"/>
|
||||
<l:gentext key="sectioncalled" text="разделът със заглавие"/>
|
||||
<l:gentext key="index symbols" text="символи"/>
|
||||
<l:gentext key="lowercase.alpha" text="абвгдежзийклмнопрстуфхцчшщъыьэюя"/>
|
||||
<l:gentext key="uppercase.alpha" text="АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="„"/>
|
||||
<l:dingbat key="nestedendquote" text="“"/>
|
||||
<l:dingbat key="singlestartquote" text="«"/>
|
||||
<l:dingbat key="singleendquote" text="»"/>
|
||||
<l:dingbat key="bullet" text="—"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Приложение %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Глава %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Формула %n. %t"/>
|
||||
<l:template name="example" text="Пример %n. %t"/>
|
||||
<l:template name="figure" text="Фигура %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Част %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Процедура %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Множество от декартови произведения по Бакхус-Наур %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Таблица %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t"/>
|
||||
<l:template name="taskprerequisites" text="%t"/>
|
||||
<l:template name="taskrelated" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Приложение %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Глава %n. %t"/>
|
||||
<l:template name="part" text="Част %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="О. %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="В. %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="В. %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)"/>
|
||||
<l:template name="docname" text=" in %o"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)"/>
|
||||
<l:template name="Page" text="Page %p"/>
|
||||
<l:template name="bridgehead" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsection" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsect1" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsect2" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsect3" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="sect1" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="sect2" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="sect3" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="sect4" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="sect5" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="section" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="simplesect" text="разделът със заглавие „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="О. %n"/>
|
||||
<l:template name="appendix" text="Приложение %n"/>
|
||||
<l:template name="bridgehead" text="Раздел %n"/>
|
||||
<l:template name="chapter" text="Глава %n"/>
|
||||
<l:template name="equation" text="Формула %n"/>
|
||||
<l:template name="example" text="Пример %n"/>
|
||||
<l:template name="figure" text="Фигура %n"/>
|
||||
<l:template name="part" text="Част %n"/>
|
||||
<l:template name="procedure" text="Процедура %n"/>
|
||||
<l:template name="productionset" text="Множество от декартови произведения по Бакхус-Наур %n"/>
|
||||
<l:template name="qandadiv" text="Въпроси и отговори %n"/>
|
||||
<l:template name="qandaentry" text="В. %n"/>
|
||||
<l:template name="question" text="В. %n"/>
|
||||
<l:template name="sect1" text="Раздел %n"/>
|
||||
<l:template name="sect2" text="Раздел %n"/>
|
||||
<l:template name="sect3" text="Раздел %n"/>
|
||||
<l:template name="sect4" text="Раздел %n"/>
|
||||
<l:template name="sect5" text="Раздел %n"/>
|
||||
<l:template name="section" text="Раздел %n"/>
|
||||
<l:template name="table" text="Таблица %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Приложение %n, %t"/>
|
||||
<l:template name="bridgehead" text="Раздел %n, „%t“"/>
|
||||
<l:template name="chapter" text="Глава %n, %t"/>
|
||||
<l:template name="equation" text="Формула %n, „%t“"/>
|
||||
<l:template name="example" text="Пример %n, „%t“"/>
|
||||
<l:template name="figure" text="Фигура %n, „%t“"/>
|
||||
<l:template name="part" text="Част %n, „%t“"/>
|
||||
<l:template name="procedure" text="Процедура %n, „%t“"/>
|
||||
<l:template name="productionset" text="Множество от декартови произведения по Бакхус-Наур %n, „%t“"/>
|
||||
<l:template name="qandadiv" text="Въпроси и отговори %n, „%t“"/>
|
||||
<l:template name="refsect1" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsect2" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsect3" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="refsection" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="sect1" text="Раздел %n, „%t“"/>
|
||||
<l:template name="sect2" text="Раздел %n, „%t“"/>
|
||||
<l:template name="sect3" text="Раздел %n, „%t“"/>
|
||||
<l:template name="sect4" text="Раздел %n, „%t“"/>
|
||||
<l:template name="sect5" text="Раздел %n, „%t“"/>
|
||||
<l:template name="section" text="Раздел %n, „%t“"/>
|
||||
<l:template name="simplesect" text="разделът със заглавие „%t“"/>
|
||||
<l:template name="table" text="Таблица %n, „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" и "/>
|
||||
<l:template name="seplast" text=" и "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="вж. %t"/>
|
||||
<l:template name="seealso" text="вж. %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Насоченост: "/>
|
||||
<l:template name="MsgLevel" text="Ниво: "/>
|
||||
<l:template name="MsgOrig" text="Източник: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d.m.Y г."/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: "/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="януари"/>
|
||||
<l:template name="February" text="февруари"/>
|
||||
<l:template name="March" text="март"/>
|
||||
<l:template name="April" text="април"/>
|
||||
<l:template name="May" text="май"/>
|
||||
<l:template name="June" text="юни"/>
|
||||
<l:template name="July" text="юли"/>
|
||||
<l:template name="August" text="август"/>
|
||||
<l:template name="September" text="септември"/>
|
||||
<l:template name="October" text="октомври"/>
|
||||
<l:template name="November" text="ноември"/>
|
||||
<l:template name="December" text="декември"/>
|
||||
<l:template name="Monday" text="понеделник"/>
|
||||
<l:template name="Tuesday" text="вторник"/>
|
||||
<l:template name="Wednesday" text="сряда"/>
|
||||
<l:template name="Thursday" text="четвъртък"/>
|
||||
<l:template name="Friday" text="петък"/>
|
||||
<l:template name="Saturday" text="събота"/>
|
||||
<l:template name="Sunday" text="неделя"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="ян."/>
|
||||
<l:template name="Feb" text="фев."/>
|
||||
<l:template name="Mar" text="март"/>
|
||||
<l:template name="Apr" text="апр."/>
|
||||
<l:template name="May" text="май"/>
|
||||
<l:template name="Jun" text="юни"/>
|
||||
<l:template name="Jul" text="юли"/>
|
||||
<l:template name="Aug" text="авг."/>
|
||||
<l:template name="Sep" text="сеп."/>
|
||||
<l:template name="Oct" text="окт."/>
|
||||
<l:template name="Nov" text="ноем."/>
|
||||
<l:template name="Dec" text="дек."/>
|
||||
<l:template name="Mon" text="пон."/>
|
||||
<l:template name="Tue" text="вт."/>
|
||||
<l:template name="Wed" text="ср."/>
|
||||
<l:template name="Thu" text="чет."/>
|
||||
<l:template name="Fri" text="пет."/>
|
||||
<l:template name="Sat" text="съб."/>
|
||||
<l:template name="Sun" text="нед."/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0402 Bulgarian"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", "/>
|
||||
<l:template name="number-separator" text=", "/>
|
||||
<l:template name="range-separator" text="—"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Цифри и знаци</l:l>
|
||||
<l:l i="10">А</l:l>
|
||||
<l:l i="10">а</l:l>
|
||||
<l:l i="20">Б</l:l>
|
||||
<l:l i="20">б</l:l>
|
||||
<l:l i="30">В</l:l>
|
||||
<l:l i="30">в</l:l>
|
||||
<l:l i="40">Г</l:l>
|
||||
<l:l i="40">г</l:l>
|
||||
<l:l i="50">Д</l:l>
|
||||
<l:l i="50">д</l:l>
|
||||
<l:l i="60">Е</l:l>
|
||||
<l:l i="60">е</l:l>
|
||||
<l:l i="70">Ж</l:l>
|
||||
<l:l i="70">ж</l:l>
|
||||
<l:l i="80">З</l:l>
|
||||
<l:l i="80">з</l:l>
|
||||
<l:l i="90">И</l:l>
|
||||
<l:l i="90">и</l:l>
|
||||
<l:l i="100">Й</l:l>
|
||||
<l:l i="100">й</l:l>
|
||||
<l:l i="110">К</l:l>
|
||||
<l:l i="110">к</l:l>
|
||||
<l:l i="120">Л</l:l>
|
||||
<l:l i="120">л</l:l>
|
||||
<l:l i="130">М</l:l>
|
||||
<l:l i="130">м</l:l>
|
||||
<l:l i="140">Н</l:l>
|
||||
<l:l i="140">н</l:l>
|
||||
<l:l i="150">О</l:l>
|
||||
<l:l i="150">о</l:l>
|
||||
<l:l i="160">П</l:l>
|
||||
<l:l i="160">п</l:l>
|
||||
<l:l i="170">Р</l:l>
|
||||
<l:l i="170">р</l:l>
|
||||
<l:l i="180">С</l:l>
|
||||
<l:l i="180">с</l:l>
|
||||
<l:l i="190">Т</l:l>
|
||||
<l:l i="190">т</l:l>
|
||||
<l:l i="200">У</l:l>
|
||||
<l:l i="200">у</l:l>
|
||||
<l:l i="210">Ф</l:l>
|
||||
<l:l i="210">ф</l:l>
|
||||
<l:l i="220">Х</l:l>
|
||||
<l:l i="220">х</l:l>
|
||||
<l:l i="230">Ц</l:l>
|
||||
<l:l i="230">ц</l:l>
|
||||
<l:l i="240">Ч</l:l>
|
||||
<l:l i="240">ч</l:l>
|
||||
<l:l i="250">Ш</l:l>
|
||||
<l:l i="250">ш</l:l>
|
||||
<l:l i="260">Щ</l:l>
|
||||
<l:l i="260">щ</l:l>
|
||||
<l:l i="270">Ъ</l:l>
|
||||
<l:l i="270">ъ</l:l>
|
||||
<l:l i="280">Ь</l:l>
|
||||
<l:l i="280">ь</l:l>
|
||||
<l:l i="290">Ю</l:l>
|
||||
<l:l i="290">ю</l:l>
|
||||
<l:l i="300">Я</l:l>
|
||||
<l:l i="300">я</l:l>
|
||||
<l:l i="310">Э</l:l>
|
||||
<l:l i="310">э</l:l>
|
||||
<l:l i="320">Ы</l:l>
|
||||
<l:l i="320">ы</l:l>
|
||||
<l:l i="410">A</l:l>
|
||||
<l:l i="410">a</l:l>
|
||||
<l:l i="420">B</l:l>
|
||||
<l:l i="420">b</l:l>
|
||||
<l:l i="430">C</l:l>
|
||||
<l:l i="430">c</l:l>
|
||||
<l:l i="440">D</l:l>
|
||||
<l:l i="440">d</l:l>
|
||||
<l:l i="450">E</l:l>
|
||||
<l:l i="450">e</l:l>
|
||||
<l:l i="460">F</l:l>
|
||||
<l:l i="460">f</l:l>
|
||||
<l:l i="470">G</l:l>
|
||||
<l:l i="470">g</l:l>
|
||||
<l:l i="480">H</l:l>
|
||||
<l:l i="480">h</l:l>
|
||||
<l:l i="490">I</l:l>
|
||||
<l:l i="490">i</l:l>
|
||||
<l:l i="500">J</l:l>
|
||||
<l:l i="500">j</l:l>
|
||||
<l:l i="510">K</l:l>
|
||||
<l:l i="510">k</l:l>
|
||||
<l:l i="520">L</l:l>
|
||||
<l:l i="520">l</l:l>
|
||||
<l:l i="530">M</l:l>
|
||||
<l:l i="530">m</l:l>
|
||||
<l:l i="540">N</l:l>
|
||||
<l:l i="540">n</l:l>
|
||||
<l:l i="550">O</l:l>
|
||||
<l:l i="550">o</l:l>
|
||||
<l:l i="560">P</l:l>
|
||||
<l:l i="560">p</l:l>
|
||||
<l:l i="570">Q</l:l>
|
||||
<l:l i="570">q</l:l>
|
||||
<l:l i="580">R</l:l>
|
||||
<l:l i="580">r</l:l>
|
||||
<l:l i="590">S</l:l>
|
||||
<l:l i="590">s</l:l>
|
||||
<l:l i="600">T</l:l>
|
||||
<l:l i="600">t</l:l>
|
||||
<l:l i="610">U</l:l>
|
||||
<l:l i="610">u</l:l>
|
||||
<l:l i="620">V</l:l>
|
||||
<l:l i="620">v</l:l>
|
||||
<l:l i="630">W</l:l>
|
||||
<l:l i="630">w</l:l>
|
||||
<l:l i="640">X</l:l>
|
||||
<l:l i="640">x</l:l>
|
||||
<l:l i="650">Y</l:l>
|
||||
<l:l i="650">y</l:l>
|
||||
<l:l i="660">Z</l:l>
|
||||
<l:l i="660">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/bn.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/bn.xml
Normal file
File diff suppressed because it is too large
Load Diff
656
doc/reference/lib/docbook-xsl-snapshot/common/bs.xml
Normal file
656
doc/reference/lib/docbook-xsl-snapshot/common/bs.xml
Normal file
@@ -0,0 +1,656 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="bs" english-language-name="Bosnian">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/bs.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited bs.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Sažetak"/>
|
||||
<l:gentext key="abstract" text="Sažetak"/>
|
||||
<l:gentext key="Answer" text="O:"/>
|
||||
<l:gentext key="answer" text="O:"/>
|
||||
<l:gentext key="Appendix" text="Dodatak"/>
|
||||
<l:gentext key="appendix" text="Dodatak"/>
|
||||
<l:gentext key="Article" text="Članak"/>
|
||||
<l:gentext key="article" text="Članak"/>
|
||||
<l:gentext key="Author" text="Author" lang="en"/>
|
||||
<l:gentext key="Bibliography" text="Literatura"/>
|
||||
<l:gentext key="bibliography" text="Literatura"/>
|
||||
<l:gentext key="Book" text="Knjiga"/>
|
||||
<l:gentext key="book" text="Knjiga"/>
|
||||
<l:gentext key="CAUTION" text="PAŽNJA"/>
|
||||
<l:gentext key="Caution" text="Pažnja"/>
|
||||
<l:gentext key="caution" text="Pažnja"/>
|
||||
<l:gentext key="Chapter" text="Poglavlje"/>
|
||||
<l:gentext key="chapter" text="Poglavlje"/>
|
||||
<l:gentext key="Colophon" text="Kolofon"/>
|
||||
<l:gentext key="colophon" text="Kolofon"/>
|
||||
<l:gentext key="Copyright" text="Autorska prava"/>
|
||||
<l:gentext key="copyright" text="Autorska prava"/>
|
||||
<l:gentext key="Dedication" text="Posveta"/>
|
||||
<l:gentext key="dedication" text="Posveta"/>
|
||||
<l:gentext key="Edition" text="Izdanje"/>
|
||||
<l:gentext key="edition" text="Izdanje"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Jednačina"/>
|
||||
<l:gentext key="equation" text="Jednačina"/>
|
||||
<l:gentext key="Example" text="Primjer"/>
|
||||
<l:gentext key="example" text="Primjer"/>
|
||||
<l:gentext key="Figure" text="Slika"/>
|
||||
<l:gentext key="figure" text="Slika"/>
|
||||
<l:gentext key="Glossary" text="Glosar"/>
|
||||
<l:gentext key="glossary" text="Glosar"/>
|
||||
<l:gentext key="GlossSee" text="Vidi"/>
|
||||
<l:gentext key="glosssee" text="Vidi"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Vidi takođe"/>
|
||||
<l:gentext key="glossseealso" text="Vidi takođe"/>
|
||||
<l:gentext key="IMPORTANT" text="VAŽNO"/>
|
||||
<l:gentext key="important" text="Važno"/>
|
||||
<l:gentext key="Important" text="Važno"/>
|
||||
<l:gentext key="Index" text="Indeks"/>
|
||||
<l:gentext key="index" text="Indeks"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Pravne odredbe"/>
|
||||
<l:gentext key="legalnotice" text="Pravne odredbe"/>
|
||||
<l:gentext key="MsgAud" text="Primatelji"/>
|
||||
<l:gentext key="msgaud" text="Primatelji"/>
|
||||
<l:gentext key="MsgLevel" text="Nivo"/>
|
||||
<l:gentext key="msglevel" text="Nivo"/>
|
||||
<l:gentext key="MsgOrig" text="Izvor"/>
|
||||
<l:gentext key="msgorig" text="Izvor"/>
|
||||
<l:gentext key="NOTE" text="BILJEŠKA"/>
|
||||
<l:gentext key="Note" text="Bilješka"/>
|
||||
<l:gentext key="note" text="Bilješka"/>
|
||||
<l:gentext key="Part" text="Dio"/>
|
||||
<l:gentext key="part" text="Dio"/>
|
||||
<l:gentext key="Preface" text="Predgovor"/>
|
||||
<l:gentext key="preface" text="Predgovor"/>
|
||||
<l:gentext key="Procedure" text="Postupak"/>
|
||||
<l:gentext key="procedure" text="Postupak"/>
|
||||
<l:gentext key="ProductionSet" text="Produkcija"/>
|
||||
<l:gentext key="PubDate" text="Objavljeno"/>
|
||||
<l:gentext key="pubdate" text="Objavljeno"/>
|
||||
<l:gentext key="Published" text="Objavljeno"/>
|
||||
<l:gentext key="published" text="Objavljeno"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="P & O"/>
|
||||
<l:gentext key="qandadiv" text="P & O"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="P:"/>
|
||||
<l:gentext key="question" text="P:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Referenca"/>
|
||||
<l:gentext key="reference" text="Referenca"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Ime"/>
|
||||
<l:gentext key="refname" text="Ime"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Pregled"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Pregled"/>
|
||||
<l:gentext key="RevHistory" text="Historija verzija"/>
|
||||
<l:gentext key="revhistory" text="Historija verzija"/>
|
||||
<l:gentext key="revision" text="Verzija"/>
|
||||
<l:gentext key="Revision" text="Verzija"/>
|
||||
<l:gentext key="sect1" text="Odjeljak"/>
|
||||
<l:gentext key="sect2" text="Odjeljak"/>
|
||||
<l:gentext key="sect3" text="Odjeljak"/>
|
||||
<l:gentext key="sect4" text="Odjeljak"/>
|
||||
<l:gentext key="sect5" text="Odjeljak"/>
|
||||
<l:gentext key="section" text="Odjeljak"/>
|
||||
<l:gentext key="Section" text="Odjeljak"/>
|
||||
<l:gentext key="see" text="vidi"/>
|
||||
<l:gentext key="See" text="Vidi"/>
|
||||
<l:gentext key="seealso" text="vidi takođe"/>
|
||||
<l:gentext key="Seealso" text="Vidi takođe"/>
|
||||
<l:gentext key="SeeAlso" text="Vidi takođe"/>
|
||||
<l:gentext key="set" text="Set"/>
|
||||
<l:gentext key="Set" text="Set"/>
|
||||
<l:gentext key="setindex" text="Indeks"/>
|
||||
<l:gentext key="SetIndex" text="Indeks"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="korak"/>
|
||||
<l:gentext key="Step" text="Korak"/>
|
||||
<l:gentext key="table" text="Tabela"/>
|
||||
<l:gentext key="Table" text="Tabela"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Savjet"/>
|
||||
<l:gentext key="TIP" text="SAVJET"/>
|
||||
<l:gentext key="Tip" text="Savjet"/>
|
||||
<l:gentext key="Warning" text="Upozorenje"/>
|
||||
<l:gentext key="warning" text="Upozorenje"/>
|
||||
<l:gentext key="WARNING" text="UPOZORENJE"/>
|
||||
<l:gentext key="and" text="i"/>
|
||||
<l:gentext key="by" text="od"/>
|
||||
<l:gentext key="Edited" text="Izdao"/>
|
||||
<l:gentext key="edited" text="Izdao"/>
|
||||
<l:gentext key="Editedby" text="Izdao"/>
|
||||
<l:gentext key="editedby" text="Izdao"/>
|
||||
<l:gentext key="in" text="u"/>
|
||||
<l:gentext key="lastlistcomma" text=""/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="nepostojeći element"/>
|
||||
<l:gentext key="notes" text="Bilješke"/>
|
||||
<l:gentext key="Notes" text="Bilješke"/>
|
||||
<l:gentext key="Pgs" text="Str."/>
|
||||
<l:gentext key="pgs" text="Str."/>
|
||||
<l:gentext key="Revisedby" text="Izmijenjeno od: "/>
|
||||
<l:gentext key="revisedby" text="Izmijenjeno od: "/>
|
||||
<l:gentext key="TableNotes" text="Napomene"/>
|
||||
<l:gentext key="tablenotes" text="Napomene"/>
|
||||
<l:gentext key="TableofContents" text="Sadržaj"/>
|
||||
<l:gentext key="tableofcontents" text="Sadržaj"/>
|
||||
<l:gentext key="unexpectedelementname" text="Neočkivano ime elementa"/>
|
||||
<l:gentext key="unsupported" text="nepodržano"/>
|
||||
<l:gentext key="xrefto" text="xref prema"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Spisak jednačina"/>
|
||||
<l:gentext key="ListofEquations" text="Spisak jednačina"/>
|
||||
<l:gentext key="ListofExamples" text="Spisak primjera"/>
|
||||
<l:gentext key="listofexamples" text="Spisak primjera"/>
|
||||
<l:gentext key="ListofFigures" text="Spisak slika"/>
|
||||
<l:gentext key="listoffigures" text="Spisak slika"/>
|
||||
<l:gentext key="ListofProcedures" text="Spisak postupaka"/>
|
||||
<l:gentext key="listofprocedures" text="Spisak postupaka"/>
|
||||
<l:gentext key="listoftables" text="Spisak tabela"/>
|
||||
<l:gentext key="ListofTables" text="Spisak tabela"/>
|
||||
<l:gentext key="ListofUnknown" text="Spisak ???"/>
|
||||
<l:gentext key="listofunknown" text="Spisak ???"/>
|
||||
<l:gentext key="nav-home" text="Početak"/>
|
||||
<l:gentext key="nav-next" text="Naprijed"/>
|
||||
<l:gentext key="nav-next-sibling" text="Brzo naprijed"/>
|
||||
<l:gentext key="nav-prev" text="Nazad"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Brzo nazad"/>
|
||||
<l:gentext key="nav-up" text="Gore"/>
|
||||
<l:gentext key="nav-toc" text="Sadržaj"/>
|
||||
<l:gentext key="Draft" text="Nacrt"/>
|
||||
<l:gentext key="above" text="iznad"/>
|
||||
<l:gentext key="below" text="ispod"/>
|
||||
<l:gentext key="sectioncalled" text="odjeljak sa nazivom"/>
|
||||
<l:gentext key="index symbols" text="Simboli"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcčćdđefghijklmnoprsštuvzž"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCČĆDĐEFGHIJKLMNOPRSŠTUVZŽ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="3"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Dodatak %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Poglavlje %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Jednačina %n. %t"/>
|
||||
<l:template name="example" text="Primjer %n. %t"/>
|
||||
<l:template name="figure" text="Slika %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Dio %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Postupak %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produkcija %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabela %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Dodatak %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Poglavlje %n. %t"/>
|
||||
<l:template name="part" text="Dio %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="O: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" u %o"/>
|
||||
<l:template name="olink.page.citation" text=" (strana %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(strana %p)"/>
|
||||
<l:template name="docname" text=" u %o"/>
|
||||
<l:template name="docnamelong" text=" u dokumentu sa naslovom %o"/>
|
||||
<l:template name="pageabbrev" text="(s. %p)"/>
|
||||
<l:template name="Page" text="Strana %p"/>
|
||||
<l:template name="bridgehead" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsection" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsect1" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsect2" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsect3" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="sect1" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="sect2" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="sect3" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="sect4" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="sect5" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="section" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="simplesect" text="odjeljak sa nazivom “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="O: %n"/>
|
||||
<l:template name="appendix" text="Dodatak %n"/>
|
||||
<l:template name="bridgehead" text="Odjeljak %n"/>
|
||||
<l:template name="chapter" text="Poglavlje %n"/>
|
||||
<l:template name="equation" text="Jednačina %n"/>
|
||||
<l:template name="example" text="Primjer %n"/>
|
||||
<l:template name="figure" text="Slika %n"/>
|
||||
<l:template name="part" text="Dio %n"/>
|
||||
<l:template name="procedure" text="Postupak %n"/>
|
||||
<l:template name="productionset" text="Produkcija %n"/>
|
||||
<l:template name="qandadiv" text="P & O %n"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="sect1" text="Odjeljak %n"/>
|
||||
<l:template name="sect2" text="Odjeljak %n"/>
|
||||
<l:template name="sect3" text="Odjeljak %n"/>
|
||||
<l:template name="sect4" text="Odjeljak %n"/>
|
||||
<l:template name="sect5" text="Odjeljak %n"/>
|
||||
<l:template name="section" text="Odjeljak %n"/>
|
||||
<l:template name="table" text="Tabela %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Dodatak %n, %t"/>
|
||||
<l:template name="bridgehead" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="chapter" text="Poglavlje %n, %t"/>
|
||||
<l:template name="equation" text="Jednačina %n, “%t”"/>
|
||||
<l:template name="example" text="Primjer %n, “%t”"/>
|
||||
<l:template name="figure" text="Slika %n, “%t”"/>
|
||||
<l:template name="part" text="Dio %n, “%t”"/>
|
||||
<l:template name="procedure" text="Postupak %n, “%t”"/>
|
||||
<l:template name="productionset" text="Produkcija %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="P & O %n, “%t”"/>
|
||||
<l:template name="refsect1" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsect2" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsect3" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="refsection" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="sect1" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="sect2" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="sect3" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="sect4" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="sect5" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="section" text="Odjeljak %n, “%t”"/>
|
||||
<l:template name="simplesect" text="odjeljak sa nazivom “%t”"/>
|
||||
<l:template name="table" text="Tabela %n, “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" i "/>
|
||||
<l:template name="seplast" text=" i "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Vidi %t"/>
|
||||
<l:template name="seealso" text="Vidi takođe %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Primatelji: "/>
|
||||
<l:template name="MsgLevel" text="Nivo: "/>
|
||||
<l:template name="MsgOrig" text="Izvor: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d.m.Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Januar"/>
|
||||
<l:template name="February" text="Februar"/>
|
||||
<l:template name="March" text="Mart"/>
|
||||
<l:template name="April" text="April"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="June" text="Juni"/>
|
||||
<l:template name="July" text="Juli"/>
|
||||
<l:template name="August" text="August"/>
|
||||
<l:template name="September" text="Septembar"/>
|
||||
<l:template name="October" text="Oktobar"/>
|
||||
<l:template name="November" text="Novembar"/>
|
||||
<l:template name="December" text="Decembar"/>
|
||||
<l:template name="Monday" text="Ponedeljak"/>
|
||||
<l:template name="Tuesday" text="Utorak"/>
|
||||
<l:template name="Wednesday" text="Srijeda"/>
|
||||
<l:template name="Thursday" text="Četvrtak"/>
|
||||
<l:template name="Friday" text="Petak"/>
|
||||
<l:template name="Saturday" text="Subota"/>
|
||||
<l:template name="Sunday" text="Nedelja"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Jan"/>
|
||||
<l:template name="Feb" text="Feb"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="Jun" text="Jun"/>
|
||||
<l:template name="Jul" text="Jul"/>
|
||||
<l:template name="Aug" text="Aug"/>
|
||||
<l:template name="Sep" text="Sep"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Nov"/>
|
||||
<l:template name="Dec" text="Dec"/>
|
||||
<l:template name="Mon" text="Pon"/>
|
||||
<l:template name="Tue" text="Uto"/>
|
||||
<l:template name="Wed" text="Sri"/>
|
||||
<l:template name="Thu" text="Čet"/>
|
||||
<l:template name="Fri" text="Pet"/>
|
||||
<l:template name="Sat" text="Sub"/>
|
||||
<l:template name="Sun" text="Ned"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x141A Bosnian (Bosnia/Herzegovina)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Simboli</l:l>
|
||||
<l:l i="10">A</l:l>
|
||||
<l:l i="10">a</l:l>
|
||||
<l:l i="20">B</l:l>
|
||||
<l:l i="20">b</l:l>
|
||||
<l:l i="30">C</l:l>
|
||||
<l:l i="30">c</l:l>
|
||||
<l:l i="30">Ć</l:l>
|
||||
<l:l i="30">ć</l:l>
|
||||
<l:l i="30">Č</l:l>
|
||||
<l:l i="30">č</l:l>
|
||||
<l:l i="40">D</l:l>
|
||||
<l:l i="40">d</l:l>
|
||||
<l:l i="40">Đ</l:l>
|
||||
<l:l i="40">đ</l:l>
|
||||
<l:l i="50">E</l:l>
|
||||
<l:l i="50">e</l:l>
|
||||
<l:l i="60">F</l:l>
|
||||
<l:l i="60">f</l:l>
|
||||
<l:l i="70">G</l:l>
|
||||
<l:l i="70">g</l:l>
|
||||
<l:l i="80">H</l:l>
|
||||
<l:l i="80">h</l:l>
|
||||
<l:l i="90">I</l:l>
|
||||
<l:l i="90">i</l:l>
|
||||
<l:l i="100">J</l:l>
|
||||
<l:l i="100">j</l:l>
|
||||
<l:l i="110">K</l:l>
|
||||
<l:l i="110">k</l:l>
|
||||
<l:l i="120">L</l:l>
|
||||
<l:l i="120">l</l:l>
|
||||
<l:l i="130">M</l:l>
|
||||
<l:l i="130">m</l:l>
|
||||
<l:l i="140">N</l:l>
|
||||
<l:l i="140">n</l:l>
|
||||
<l:l i="150">O</l:l>
|
||||
<l:l i="150">o</l:l>
|
||||
<l:l i="160">P</l:l>
|
||||
<l:l i="160">p</l:l>
|
||||
<l:l i="180">R</l:l>
|
||||
<l:l i="180">r</l:l>
|
||||
<l:l i="190">S</l:l>
|
||||
<l:l i="190">s</l:l>
|
||||
<l:l i="190">Š</l:l>
|
||||
<l:l i="190">š</l:l>
|
||||
<l:l i="200">T</l:l>
|
||||
<l:l i="200">t</l:l>
|
||||
<l:l i="210">U</l:l>
|
||||
<l:l i="210">u</l:l>
|
||||
<l:l i="220">V</l:l>
|
||||
<l:l i="220">v</l:l>
|
||||
<l:l i="260">Z</l:l>
|
||||
<l:l i="260">z</l:l>
|
||||
<l:l i="260">Ž</l:l>
|
||||
<l:l i="260">ž</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/ca.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ca.xml
Normal file
File diff suppressed because it is too large
Load Diff
185
doc/reference/lib/docbook-xsl-snapshot/common/charmap.xml
Normal file
185
doc/reference/lib/docbook-xsl-snapshot/common/charmap.xml
Normal file
@@ -0,0 +1,185 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<reference xml:id="charmap">
|
||||
<info>
|
||||
<title>Common » Character-Map Template Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
|
||||
<para>This is technical reference documentation for the
|
||||
character-map templates in the DocBook XSL Stylesheets.</para>
|
||||
|
||||
<note>
|
||||
|
||||
<para>These templates are defined in a separate file from the set
|
||||
of “common” templates because some of the common templates
|
||||
reference DocBook XSL stylesheet parameters, requiring the
|
||||
entire set of parameters to be imported/included in any
|
||||
stylesheet that imports/includes the common templates.</para>
|
||||
|
||||
|
||||
<para>The character-map templates don’t import or include
|
||||
any DocBook XSL stylesheet parameters, so the
|
||||
character-map templates can be used without importing the
|
||||
whole set of parameters.</para>
|
||||
|
||||
</note>
|
||||
|
||||
<para>This is not intended to be user documentation. It is
|
||||
provided for developers writing customization layers for the
|
||||
stylesheets.</para>
|
||||
|
||||
</partintro>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.apply-character-map">
|
||||
<refnamediv>
|
||||
<refname>apply-character-map</refname>
|
||||
<refpurpose>Applies an XSLT character map</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="apply-character-map">
|
||||
<xsl:param name="content"/>
|
||||
<xsl:param name="map.contents"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template applies an <link xlink:href="http://www.w3.org/TR/xslt20/#character-maps">XSLT character map</link>; that is, it causes certain
|
||||
individual characters to be substituted with strings of one
|
||||
or more characters. It is useful mainly for replacing
|
||||
multiple “special” characters or symbols in the same target
|
||||
content. It uses the value of
|
||||
<parameter>map.contents</parameter> to do substitution on
|
||||
<parameter>content</parameter>, and then returns the
|
||||
modified contents.</para>
|
||||
|
||||
<note>
|
||||
|
||||
<para>This template is a very slightly modified version of
|
||||
Jeni Tennison’s <function>replace_strings</function>
|
||||
template in the <link xlink:href="http://www.dpawson.co.uk/xsl/sect2/StringReplace.html#d9351e13">multiple string replacements</link> section of Dave Pawson’s
|
||||
<link xlink:href="http://www.dpawson.co.uk/xsl/index.html">XSLT FAQ</link>.</para>
|
||||
|
||||
|
||||
<para>The <function>apply-string-subst-map</function>
|
||||
template is essentially the same template as the
|
||||
<function>apply-character-map</function> template; the
|
||||
only difference is that in the map that
|
||||
<function>apply-string-subst-map</function> expects, <tag class="attribute">oldstring</tag> and <tag class="attribute">newstring</tag> attributes are used
|
||||
instead of <tag class="attribute">character</tag> and <tag class="attribute">string</tag> attributes.</para>
|
||||
|
||||
</note>
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>content</term>
|
||||
<listitem>
|
||||
|
||||
<para>The content on which to perform the character-map
|
||||
substitution.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>map.contents</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node set of elements, with each element having
|
||||
the following attributes:
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara><tag class="attribute">character</tag>, a
|
||||
character to be replaced</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara><tag class="attribute">string</tag>, a
|
||||
string with which to replace <tag class="attribute">character</tag></simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.read-character-map">
|
||||
<refnamediv>
|
||||
<refname>read-character-map</refname>
|
||||
<refpurpose>Reads in all or part of an XSLT character map</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="read-character-map">
|
||||
<xsl:param name="use.subset"/>
|
||||
<xsl:param name="subset.profile"/>
|
||||
<xsl:param name="uri"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The XSLT 2.0 specification describes <link xlink:href="http://www.w3.org/TR/xslt20/#character-maps">character maps</link> and explains how they may be used
|
||||
to allow a specific character appearing in a text or
|
||||
attribute node in a final result tree to be substituted by
|
||||
a specified string of characters during serialization. The
|
||||
<function>read-character-map</function> template provides a
|
||||
means for reading and using character maps with XSLT
|
||||
1.0-based tools.</para>
|
||||
|
||||
|
||||
<para>This template reads the character-map contents from
|
||||
<parameter>uri</parameter> (in full or in part, depending on
|
||||
the value of the <parameter>use.subset</parameter>
|
||||
parameter), then passes those contents to the
|
||||
<function>apply-character-map</function> template, along with
|
||||
<parameter>content</parameter>, the data on which to perform
|
||||
the character substitution.</para>
|
||||
|
||||
|
||||
<para>Using the character map “in part” means that it uses only
|
||||
those <tag>output-character</tag> elements that match the
|
||||
XPath expression given in the value of the
|
||||
<parameter>subset.profile</parameter> parameter. The current
|
||||
implementation of that capability here relies on the
|
||||
<function>evaluate</function> extension XSLT function.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>use.subset</term>
|
||||
<listitem>
|
||||
|
||||
<para>Specifies whether to use a subset of the character
|
||||
map instead of the whole map; boolean
|
||||
<literal>0</literal> or <literal>1</literal></para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>subset.profile</term>
|
||||
<listitem>
|
||||
|
||||
<para>XPath expression that specifies what subset of the
|
||||
character map to use</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>uri</term>
|
||||
<listitem>
|
||||
|
||||
<para>URI for a character map</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1></refentry>
|
||||
</reference>
|
||||
|
||||
221
doc/reference/lib/docbook-xsl-snapshot/common/charmap.xsl
Normal file
221
doc/reference/lib/docbook-xsl-snapshot/common/charmap.xsl
Normal file
@@ -0,0 +1,221 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
xmlns:dyn="http://exslt.org/dynamic"
|
||||
xmlns:saxon="http://icl.com/saxon"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
exclude-result-prefixes="doc dyn saxon"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
<doc:reference xmlns="" xml:id="charmap">
|
||||
<info>
|
||||
<title>Common » Character-Map Template Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: charmap.xsl 7266 2007-08-22 11:58:42Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
<!-- * yes, partintro is a valid child of a reference... -->
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
<para>This is technical reference documentation for the
|
||||
character-map templates in the DocBook XSL Stylesheets.</para>
|
||||
<note>
|
||||
<para>These templates are defined in a separate file from the set
|
||||
of “common” templates because some of the common templates
|
||||
reference DocBook XSL stylesheet parameters, requiring the
|
||||
entire set of parameters to be imported/included in any
|
||||
stylesheet that imports/includes the common templates.</para>
|
||||
<para>The character-map templates don’t import or include
|
||||
any DocBook XSL stylesheet parameters, so the
|
||||
character-map templates can be used without importing the
|
||||
whole set of parameters.</para>
|
||||
</note>
|
||||
<para>This is not intended to be user documentation. It is
|
||||
provided for developers writing customization layers for the
|
||||
stylesheets.</para>
|
||||
</partintro>
|
||||
</doc:reference>
|
||||
|
||||
<!-- ===================================== -->
|
||||
<doc:template name="apply-character-map" xmlns="">
|
||||
<refpurpose>Applies an XSLT character map</refpurpose>
|
||||
<refdescription id="apply-character-map-desc">
|
||||
<para>This template applies an <link
|
||||
xlink:href="http://www.w3.org/TR/xslt20/#character-maps"
|
||||
>XSLT character map</link>; that is, it causes certain
|
||||
individual characters to be substituted with strings of one
|
||||
or more characters. It is useful mainly for replacing
|
||||
multiple “special” characters or symbols in the same target
|
||||
content. It uses the value of
|
||||
<parameter>map.contents</parameter> to do substitution on
|
||||
<parameter>content</parameter>, and then returns the
|
||||
modified contents.</para>
|
||||
<note>
|
||||
<para>This template is a very slightly modified version of
|
||||
Jeni Tennison’s <function>replace_strings</function>
|
||||
template in the <link
|
||||
xlink:href="http://www.dpawson.co.uk/xsl/sect2/StringReplace.html#d9351e13"
|
||||
>multiple string replacements</link> section of Dave Pawson’s
|
||||
<link xlink:href="http://www.dpawson.co.uk/xsl/index.html"
|
||||
>XSLT FAQ</link>.</para>
|
||||
<para>The <function>apply-string-subst-map</function>
|
||||
template is essentially the same template as the
|
||||
<function>apply-character-map</function> template; the
|
||||
only difference is that in the map that
|
||||
<function>apply-string-subst-map</function> expects, <tag
|
||||
class="attribute">oldstring</tag> and <tag
|
||||
class="attribute">newstring</tag> attributes are used
|
||||
instead of <tag class="attribute">character</tag> and <tag
|
||||
class="attribute">string</tag> attributes.</para>
|
||||
</note>
|
||||
</refdescription>
|
||||
<refparameter id="apply-character-map-params">
|
||||
<variablelist>
|
||||
<varlistentry><term>content</term>
|
||||
<listitem>
|
||||
<para>The content on which to perform the character-map
|
||||
substitution.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>map.contents</term>
|
||||
<listitem>
|
||||
<para>A node set of elements, with each element having
|
||||
the following attributes:
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara><tag class="attribute">character</tag>, a
|
||||
character to be replaced</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara><tag class="attribute">string</tag>, a
|
||||
string with which to replace <tag
|
||||
class="attribute">character</tag></simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
</doc:template>
|
||||
<xsl:template name="apply-character-map">
|
||||
<xsl:param name="content"/>
|
||||
<xsl:param name="map.contents"/>
|
||||
<xsl:variable name="replaced_text">
|
||||
<xsl:call-template name="string.subst">
|
||||
<xsl:with-param name="string" select="$content" />
|
||||
<xsl:with-param name="target"
|
||||
select="$map.contents[1]/@character" />
|
||||
<xsl:with-param name="replacement"
|
||||
select="$map.contents[1]/@string" />
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$map.contents[2]">
|
||||
<xsl:call-template name="apply-character-map">
|
||||
<xsl:with-param name="content" select="$replaced_text" />
|
||||
<xsl:with-param name="map.contents"
|
||||
select="$map.contents[position() > 1]" />
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$replaced_text" />
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ===================================== -->
|
||||
<doc:template name="read-character-map" xmlns="">
|
||||
<refpurpose>Reads in all or part of an XSLT character map</refpurpose>
|
||||
<refdescription id="read-character-map-desc">
|
||||
<para>The XSLT 2.0 specification describes <link
|
||||
xlink:href="http://www.w3.org/TR/xslt20/#character-maps"
|
||||
>character maps</link> and explains how they may be used
|
||||
to allow a specific character appearing in a text or
|
||||
attribute node in a final result tree to be substituted by
|
||||
a specified string of characters during serialization. The
|
||||
<function>read-character-map</function> template provides a
|
||||
means for reading and using character maps with XSLT
|
||||
1.0-based tools.</para>
|
||||
<para>This template reads the character-map contents from
|
||||
<parameter>uri</parameter> (in full or in part, depending on
|
||||
the value of the <parameter>use.subset</parameter>
|
||||
parameter), then passes those contents to the
|
||||
<function>apply-character-map</function> template, along with
|
||||
<parameter>content</parameter>, the data on which to perform
|
||||
the character substitution.</para>
|
||||
<para>Using the character map “in part” means that it uses only
|
||||
those <tag>output-character</tag> elements that match the
|
||||
XPath expression given in the value of the
|
||||
<parameter>subset.profile</parameter> parameter. The current
|
||||
implementation of that capability here relies on the
|
||||
<function>evaluate</function> extension XSLT function.</para>
|
||||
</refdescription>
|
||||
<refparameter id="read-character-map-params">
|
||||
<variablelist>
|
||||
<varlistentry><term>use.subset</term>
|
||||
<listitem>
|
||||
<para>Specifies whether to use a subset of the character
|
||||
map instead of the whole map; boolean
|
||||
<literal>0</literal> or <literal>1</literal></para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>subset.profile</term>
|
||||
<listitem>
|
||||
<para>XPath expression that specifies what subset of the
|
||||
character map to use</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>uri</term>
|
||||
<listitem>
|
||||
<para>URI for a character map</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
</doc:template>
|
||||
<xsl:template name="read-character-map">
|
||||
<xsl:param name="use.subset"/>
|
||||
<xsl:param name="subset.profile"/>
|
||||
<xsl:param name="uri"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$use.subset != 0">
|
||||
<!-- *use a subset of the character map instead of the full map -->
|
||||
<xsl:choose>
|
||||
<!-- * xsltproc and Xalan both support dyn:evaluate() -->
|
||||
<xsl:when test="function-available('dyn:evaluate')">
|
||||
<xsl:copy-of select="document($uri)//*[local-name()='output-character']
|
||||
[dyn:evaluate($subset.profile)]"/>
|
||||
</xsl:when>
|
||||
<!-- * Saxon has its own evaluate() and doesn't support dyn:evaluate() -->
|
||||
<xsl:when test="function-available('saxon:evaluate')">
|
||||
<xsl:copy-of select="document($uri)//*[local-name()='output-character']
|
||||
[saxon:evaluate($subset.profile)]"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message terminate="yes"
|
||||
>
|
||||
Error: To process character-map subsets, you must use an XSLT engine
|
||||
that supports the evaluate() XSLT extension function. Your XSLT engine
|
||||
does not support it.
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<!-- *value of $use.subset is non-zero, so use the full map -->
|
||||
<xsl:copy-of select="document($uri)//*[local-name()='output-character']"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
622
doc/reference/lib/docbook-xsl-snapshot/common/common.xml
Normal file
622
doc/reference/lib/docbook-xsl-snapshot/common/common.xml
Normal file
@@ -0,0 +1,622 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<reference xml:id="base">
|
||||
<info>
|
||||
<title>Common » Base Template Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: common.xsl 8002 2008-04-21 16:03:57Z kosek $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
|
||||
<para>This is technical reference documentation for the “base”
|
||||
set of common templates in the DocBook XSL Stylesheets.</para>
|
||||
|
||||
|
||||
<para>This is not intended to be user documentation. It is
|
||||
provided for developers writing customization layers for the
|
||||
stylesheets.</para>
|
||||
|
||||
</partintro>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.is.component">
|
||||
<refnamediv>
|
||||
<refname>is.component</refname>
|
||||
<refpurpose>Tests if a given node is a component-level element</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="is.component">
|
||||
<xsl:param name="node" select="."/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template returns '1' if the specified node is a component
|
||||
(Chapter, Appendix, etc.), and '0' otherwise.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>node</term>
|
||||
<listitem>
|
||||
|
||||
<para>The node which is to be tested.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>This template returns '1' if the specified node is a component
|
||||
(Chapter, Appendix, etc.), and '0' otherwise.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.is.section">
|
||||
<refnamediv>
|
||||
<refname>is.section</refname>
|
||||
<refpurpose>Tests if a given node is a section-level element</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="is.section">
|
||||
<xsl:param name="node" select="."/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template returns '1' if the specified node is a section
|
||||
(Section, Sect1, Sect2, etc.), and '0' otherwise.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>node</term>
|
||||
<listitem>
|
||||
|
||||
<para>The node which is to be tested.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>This template returns '1' if the specified node is a section
|
||||
(Section, Sect1, Sect2, etc.), and '0' otherwise.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.section.level">
|
||||
<refnamediv>
|
||||
<refname>section.level</refname>
|
||||
<refpurpose>Returns the hierarchical level of a section</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="section.level">
|
||||
<xsl:param name="node" select="."/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template calculates the hierarchical level of a section.
|
||||
The element <tag>sect1</tag> is at level 1, <tag>sect2</tag> is
|
||||
at level 2, etc.</para>
|
||||
|
||||
|
||||
|
||||
<para>Recursive sections are calculated down to the fifth level.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>node</term>
|
||||
<listitem>
|
||||
|
||||
<para>The section node for which the level should be calculated.
|
||||
Defaults to the context node.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>The section level, <quote>1</quote>, <quote>2</quote>, etc.
|
||||
</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.qanda.section.level">
|
||||
<refnamediv>
|
||||
<refname>qanda.section.level</refname>
|
||||
<refpurpose>Returns the hierarchical level of a QandASet</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="qanda.section.level"/></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template calculates the hierarchical level of a QandASet.
|
||||
</para>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>The level, <quote>1</quote>, <quote>2</quote>, etc.
|
||||
</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.select.mediaobject">
|
||||
<refnamediv>
|
||||
<refname>select.mediaobject</refname>
|
||||
<refpurpose>Selects and processes an appropriate media object from a list</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="select.mediaobject">
|
||||
<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template takes a list of media objects (usually the
|
||||
children of a mediaobject or inlinemediaobject) and processes
|
||||
the "right" object.</para>
|
||||
|
||||
|
||||
|
||||
<para>This template relies on a template named
|
||||
"select.mediaobject.index" to determine which object
|
||||
in the list is appropriate.</para>
|
||||
|
||||
|
||||
|
||||
<para>If no acceptable object is located, nothing happens.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>olist</term>
|
||||
<listitem>
|
||||
|
||||
<para>The node list of potential objects to examine.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Calls <xsl:apply-templates> on the selected object.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.select.mediaobject.index">
|
||||
<refnamediv>
|
||||
<refname>select.mediaobject.index</refname>
|
||||
<refpurpose>Selects the position of the appropriate media object from a list</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="select.mediaobject.index">
|
||||
<xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/>
|
||||
<xsl:param name="count">1</xsl:param>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template takes a list of media objects (usually the
|
||||
children of a mediaobject or inlinemediaobject) and determines
|
||||
the "right" object. It returns the position of that object
|
||||
to be used by the calling template.</para>
|
||||
|
||||
|
||||
|
||||
<para>If the parameter <parameter>use.role.for.mediaobject</parameter>
|
||||
is nonzero, then it first checks for an object with
|
||||
a role attribute of the appropriate value. It takes the first
|
||||
of those. Otherwise, it takes the first acceptable object
|
||||
through a recursive pass through the list.</para>
|
||||
|
||||
|
||||
|
||||
<para>This template relies on a template named "is.acceptable.mediaobject"
|
||||
to determine if a given object is an acceptable graphic. The semantics
|
||||
of media objects is that the first acceptable graphic should be used.
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<para>If no acceptable object is located, no index is returned.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>olist</term>
|
||||
<listitem>
|
||||
|
||||
<para>The node list of potential objects to examine.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>count</term>
|
||||
<listitem>
|
||||
|
||||
<para>The position in the list currently being considered by the
|
||||
recursive process.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns the position in the original list of the selected object.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.is.acceptable.mediaobject">
|
||||
<refnamediv>
|
||||
<refname>is.acceptable.mediaobject</refname>
|
||||
<refpurpose>Returns '1' if the specified media object is recognized</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="is.acceptable.mediaobject">
|
||||
<xsl:param name="object"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template examines a media object and returns '1' if the
|
||||
object is recognized as a graphic.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>object</term>
|
||||
<listitem>
|
||||
|
||||
<para>The media object to consider.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>0 or 1</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.check.id.unique">
|
||||
<refnamediv>
|
||||
<refname>check.id.unique</refname>
|
||||
<refpurpose>Warn users about references to non-unique IDs</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="check.id.unique">
|
||||
<xsl:param name="linkend"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>If passed an ID in <varname>linkend</varname>,
|
||||
<function>check.id.unique</function> prints
|
||||
a warning message to the user if either the ID does not exist or
|
||||
the ID is not unique.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.check.idref.targets">
|
||||
<refnamediv>
|
||||
<refname>check.idref.targets</refname>
|
||||
<refpurpose>Warn users about incorrectly typed references</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="check.idref.targets">
|
||||
<xsl:param name="linkend"/>
|
||||
<xsl:param name="element-list"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>If passed an ID in <varname>linkend</varname>,
|
||||
<function>check.idref.targets</function> makes sure that the element
|
||||
pointed to by the link is one of the elements listed in
|
||||
<varname>element-list</varname> and warns the user otherwise.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.copyright.years">
|
||||
<refnamediv>
|
||||
<refname>copyright.years</refname>
|
||||
<refpurpose>Print a set of years with collapsed ranges</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="copyright.years">
|
||||
<xsl:param name="years"/>
|
||||
<xsl:param name="print.ranges" select="1"/>
|
||||
<xsl:param name="single.year.ranges" select="0"/>
|
||||
<xsl:param name="firstyear" select="0"/>
|
||||
<xsl:param name="nextyear" select="0"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template prints a list of year elements with consecutive
|
||||
years printed as a range. In other words:</para>
|
||||
|
||||
|
||||
<screen><year>1992</year>
|
||||
<year>1993</year>
|
||||
<year>1994</year></screen>
|
||||
|
||||
|
||||
<para>is printed <quote>1992-1994</quote>, whereas:</para>
|
||||
|
||||
|
||||
<screen><year>1992</year>
|
||||
<year>1994</year></screen>
|
||||
|
||||
|
||||
<para>is printed <quote>1992, 1994</quote>.</para>
|
||||
|
||||
|
||||
|
||||
<para>This template assumes that all the year elements contain only
|
||||
decimal year numbers, that the elements are sorted in increasing
|
||||
numerical order, that there are no duplicates, and that all the years
|
||||
are expressed in full <quote>century+year</quote>
|
||||
(<quote>1999</quote> not <quote>99</quote>) notation.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>years</term>
|
||||
<listitem>
|
||||
|
||||
<para>The initial set of year elements.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>print.ranges</term>
|
||||
<listitem>
|
||||
|
||||
<para>If non-zero, multi-year ranges are collapsed. If zero, all years
|
||||
are printed discretely.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>single.year.ranges</term>
|
||||
<listitem>
|
||||
|
||||
<para>If non-zero, two consecutive years will be printed as a range,
|
||||
otherwise, they will be printed discretely. In other words, a single
|
||||
year range is <quote>1991-1992</quote> but discretely it's
|
||||
<quote>1991, 1992</quote>.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>This template returns the formatted list of years.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.find.path.params">
|
||||
<refnamediv>
|
||||
<refname>find.path.params</refname>
|
||||
<refpurpose>Search in a table for the "best" match for the node</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="find.path.params">
|
||||
<xsl:param name="node" select="."/>
|
||||
<xsl:param name="table" select="''"/>
|
||||
<xsl:param name="location">
|
||||
<xsl:call-template name="xpath.location">
|
||||
<xsl:with-param name="node" select="$node"/>
|
||||
</xsl:call-template>
|
||||
</xsl:param>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template searches in a table for the value that most-closely
|
||||
(in the typical best-match sense of XSLT) matches the current (element)
|
||||
node location.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.string.upper">
|
||||
<refnamediv>
|
||||
<refname>string.upper</refname>
|
||||
<refpurpose>Converts a string to all uppercase letters</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="string.upper">
|
||||
<xsl:param name="string" select="''"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>Given a string, this template does a language-aware conversion
|
||||
of that string to all uppercase letters, based on the values of the
|
||||
<literal>lowercase.alpha</literal> and
|
||||
<literal>uppercase.alpha</literal> gentext keys for the current
|
||||
locale. It affects only those characters found in the values of
|
||||
<literal>lowercase.alpha</literal> and
|
||||
<literal>uppercase.alpha</literal>. All other characters are left
|
||||
unchanged.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>string</term>
|
||||
<listitem>
|
||||
|
||||
<para>The string to convert to uppercase.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.string.lower">
|
||||
<refnamediv>
|
||||
<refname>string.lower</refname>
|
||||
<refpurpose>Converts a string to all lowercase letters</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="string.lower">
|
||||
<xsl:param name="string" select="''"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>Given a string, this template does a language-aware conversion
|
||||
of that string to all lowercase letters, based on the values of the
|
||||
<literal>uppercase.alpha</literal> and
|
||||
<literal>lowercase.alpha</literal> gentext keys for the current
|
||||
locale. It affects only those characters found in the values of
|
||||
<literal>uppercase.alpha</literal> and
|
||||
<literal>lowercase.alpha</literal>. All other characters are left
|
||||
unchanged.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>string</term>
|
||||
<listitem>
|
||||
|
||||
<para>The string to convert to lowercase.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.select.choice.separator">
|
||||
<refnamediv>
|
||||
<refname>select.choice.separator</refname>
|
||||
<refpurpose>Returns localized choice separator</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="select.choice.separator"/></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template enables auto-generation of an appropriate
|
||||
localized "choice" separator (for example, "and" or "or") before
|
||||
the final item in an inline list (though it could also be useful
|
||||
for generating choice separators for non-inline lists).</para>
|
||||
|
||||
|
||||
<para>It currently works by evaluating a processing instruction
|
||||
(PI) of the form <?dbchoice choice="foo"?> :
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>if the value of the <tag>choice</tag>
|
||||
pseudo-attribute is "and" or "or", returns a localized "and"
|
||||
or "or"</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>otherwise returns the literal value of the
|
||||
<tag>choice</tag> pseudo-attribute</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
The latter is provided only as a temporary workaround because the
|
||||
locale files do not currently have translations for the word
|
||||
<wordasword>or</wordasword>. So if you want to generate a a
|
||||
logical "or" separator in French (for example), you currently need
|
||||
to do this:
|
||||
<literallayout><?dbchoice choice="ou"?></literallayout>
|
||||
</para>
|
||||
|
||||
<warning>
|
||||
|
||||
<para>The <tag>dbchoice</tag> processing instruction is
|
||||
an unfortunate hack; support for it may disappear in the future
|
||||
(particularly if and when a more appropriate means for marking
|
||||
up "choice" lists becomes available in DocBook).</para>
|
||||
|
||||
</warning>
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.evaluate.info.profile">
|
||||
<refnamediv>
|
||||
<refname>evaluate.info.profile</refname>
|
||||
<refpurpose>Evaluates an info profile</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="evaluate.info.profile">
|
||||
<xsl:param name="profile"/>
|
||||
<xsl:param name="info"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This template evaluates an "info profile" matching the XPath
|
||||
expression given by the <parameter>profile</parameter>
|
||||
parameter. It relies on the XSLT <function>evaluate()</function>
|
||||
extension function.</para>
|
||||
|
||||
|
||||
|
||||
<para>The value of the <parameter>profile</parameter> parameter
|
||||
can include the literal string <literal>$info</literal>. If found
|
||||
in the value of the <parameter>profile</parameter> parameter, the
|
||||
literal string <literal>$info</literal> string is replaced with
|
||||
the value of the <parameter>info</parameter> parameter, which
|
||||
should be a set of <replaceable>*info</replaceable> nodes; the
|
||||
expression is then evaluated using the XSLT
|
||||
<function>evaluate()</function> extension function.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>profile</term>
|
||||
<listitem>
|
||||
|
||||
<para>A string representing an XPath expression </para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of *info nodes</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a node (the result of evaluating the
|
||||
<parameter>profile</parameter> parameter)</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
</reference>
|
||||
|
||||
2027
doc/reference/lib/docbook-xsl-snapshot/common/common.xsl
Normal file
2027
doc/reference/lib/docbook-xsl-snapshot/common/common.xsl
Normal file
File diff suppressed because it is too large
Load Diff
694
doc/reference/lib/docbook-xsl-snapshot/common/cs.xml
Normal file
694
doc/reference/lib/docbook-xsl-snapshot/common/cs.xml
Normal file
@@ -0,0 +1,694 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="cs" english-language-name="Czech">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/cs.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited cs.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Abstrakt"/>
|
||||
<l:gentext key="abstract" text="Abstrakt"/>
|
||||
<l:gentext key="Answer" text="Odpověď:"/>
|
||||
<l:gentext key="answer" text="Odpověď:"/>
|
||||
<l:gentext key="Appendix" text="Příloha"/>
|
||||
<l:gentext key="appendix" text="Příloha"/>
|
||||
<l:gentext key="Article" text="Článek"/>
|
||||
<l:gentext key="article" text="Článek"/>
|
||||
<l:gentext key="Author" text="Autor"/>
|
||||
<l:gentext key="Bibliography" text="Bibliografie"/>
|
||||
<l:gentext key="bibliography" text="Bibliografie"/>
|
||||
<l:gentext key="Book" text="Kniha"/>
|
||||
<l:gentext key="book" text="Kniha"/>
|
||||
<l:gentext key="CAUTION" text="Výstraha"/>
|
||||
<l:gentext key="Caution" text="Výstraha"/>
|
||||
<l:gentext key="caution" text="Výstraha"/>
|
||||
<l:gentext key="Chapter" text="Kapitola"/>
|
||||
<l:gentext key="chapter" text="Kapitola"/>
|
||||
<l:gentext key="Colophon" text="Tiráž"/>
|
||||
<l:gentext key="colophon" text="Tiráž"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Věnování"/>
|
||||
<l:gentext key="dedication" text="Věnování"/>
|
||||
<l:gentext key="Edition" text="Vydání"/>
|
||||
<l:gentext key="edition" text="Vydání"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Rovnice"/>
|
||||
<l:gentext key="equation" text="Rovnice"/>
|
||||
<l:gentext key="Example" text="Příklad"/>
|
||||
<l:gentext key="example" text="Příklad"/>
|
||||
<l:gentext key="Figure" text="Obrázek"/>
|
||||
<l:gentext key="figure" text="Obrázek"/>
|
||||
<l:gentext key="Glossary" text="Slovník"/>
|
||||
<l:gentext key="glossary" text="Slovník"/>
|
||||
<l:gentext key="GlossSee" text="Viz"/>
|
||||
<l:gentext key="glosssee" text="Viz"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Viz též"/>
|
||||
<l:gentext key="glossseealso" text="Viz též"/>
|
||||
<l:gentext key="IMPORTANT" text="Důležité"/>
|
||||
<l:gentext key="important" text="Důležité"/>
|
||||
<l:gentext key="Important" text="Důležité"/>
|
||||
<l:gentext key="Index" text="Rejstřík"/>
|
||||
<l:gentext key="index" text="Rejstřík"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Právní doložka"/>
|
||||
<l:gentext key="legalnotice" text="Právní doložka"/>
|
||||
<l:gentext key="MsgAud" text="Publikum"/>
|
||||
<l:gentext key="msgaud" text="Publikum"/>
|
||||
<l:gentext key="MsgLevel" text="Úroveň"/>
|
||||
<l:gentext key="msglevel" text="Úroveň"/>
|
||||
<l:gentext key="MsgOrig" text="Původ"/>
|
||||
<l:gentext key="msgorig" text="Původ"/>
|
||||
<l:gentext key="NOTE" text="Poznámka"/>
|
||||
<l:gentext key="Note" text="Poznámka"/>
|
||||
<l:gentext key="note" text="Poznámka"/>
|
||||
<l:gentext key="Part" text="Část"/>
|
||||
<l:gentext key="part" text="Část"/>
|
||||
<l:gentext key="Preface" text="Předmluva"/>
|
||||
<l:gentext key="preface" text="Předmluva"/>
|
||||
<l:gentext key="Procedure" text="Postup"/>
|
||||
<l:gentext key="procedure" text="Postup"/>
|
||||
<l:gentext key="ProductionSet" text="Produkce"/>
|
||||
<l:gentext key="PubDate" text="Datum vydání"/>
|
||||
<l:gentext key="pubdate" text="Datum vydání"/>
|
||||
<l:gentext key="Published" text="Vydáno"/>
|
||||
<l:gentext key="published" text="Vydáno"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="Otázky a odpovědi"/>
|
||||
<l:gentext key="qandadiv" text="Otázky a odpovědi"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Otázka:"/>
|
||||
<l:gentext key="question" text="Otázka:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Odkaz"/>
|
||||
<l:gentext key="reference" text="Odkaz"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Jméno"/>
|
||||
<l:gentext key="refname" text="Jméno"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Přehled"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Přehled"/>
|
||||
<l:gentext key="RevHistory" text="Přehled revizí"/>
|
||||
<l:gentext key="revhistory" text="Přehled revizí"/>
|
||||
<l:gentext key="revision" text="Revize"/>
|
||||
<l:gentext key="Revision" text="Revize"/>
|
||||
<l:gentext key="sect1" text="Oddíl"/>
|
||||
<l:gentext key="sect2" text="Oddíl"/>
|
||||
<l:gentext key="sect3" text="Oddíl"/>
|
||||
<l:gentext key="sect4" text="Oddíl"/>
|
||||
<l:gentext key="sect5" text="Oddíl"/>
|
||||
<l:gentext key="section" text="Oddíl"/>
|
||||
<l:gentext key="Section" text="Oddíl"/>
|
||||
<l:gentext key="see" text="Viz"/>
|
||||
<l:gentext key="See" text="Viz"/>
|
||||
<l:gentext key="seealso" text="Viz též"/>
|
||||
<l:gentext key="Seealso" text="Viz též"/>
|
||||
<l:gentext key="SeeAlso" text="Viz též"/>
|
||||
<l:gentext key="set" text="Sada"/>
|
||||
<l:gentext key="Set" text="Sada"/>
|
||||
<l:gentext key="setindex" text="Rejstřík sady"/>
|
||||
<l:gentext key="SetIndex" text="Rejstřík sady"/>
|
||||
<l:gentext key="Sidebar" text="Marginálie"/>
|
||||
<l:gentext key="sidebar" text="Marginálie"/>
|
||||
<l:gentext key="step" text="krok"/>
|
||||
<l:gentext key="Step" text="Krok"/>
|
||||
<l:gentext key="table" text="Tabulka"/>
|
||||
<l:gentext key="Table" text="Tabulka"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Tip"/>
|
||||
<l:gentext key="TIP" text="Tip"/>
|
||||
<l:gentext key="Tip" text="Tip"/>
|
||||
<l:gentext key="Warning" text="Varování"/>
|
||||
<l:gentext key="warning" text="Varování"/>
|
||||
<l:gentext key="WARNING" text="Varování"/>
|
||||
<l:gentext key="and" text="a"/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Vydáno"/>
|
||||
<l:gentext key="edited" text="Vydáno"/>
|
||||
<l:gentext key="Editedby" text="Sestavil"/>
|
||||
<l:gentext key="editedby" text="Sestavil"/>
|
||||
<l:gentext key="in" text="v"/>
|
||||
<l:gentext key="lastlistcomma" text=""/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="neexistující prvek"/>
|
||||
<l:gentext key="notes" text="Poznámky"/>
|
||||
<l:gentext key="Notes" text="Poznámky"/>
|
||||
<l:gentext key="Pgs" text="Str."/>
|
||||
<l:gentext key="pgs" text="Str."/>
|
||||
<l:gentext key="Revisedby" text="Revidoval: "/>
|
||||
<l:gentext key="revisedby" text="Revidoval: "/>
|
||||
<l:gentext key="TableNotes" text="Poznámky"/>
|
||||
<l:gentext key="tablenotes" text="Poznámky"/>
|
||||
<l:gentext key="TableofContents" text="Obsah"/>
|
||||
<l:gentext key="tableofcontents" text="Obsah"/>
|
||||
<l:gentext key="unexpectedelementname" text="Neočekávané jméno prvku"/>
|
||||
<l:gentext key="unsupported" text="nepodporovaný"/>
|
||||
<l:gentext key="xrefto" text="xref k"/>
|
||||
<l:gentext key="Authors" text="Autoři"/>
|
||||
<l:gentext key="copyeditor" text="Korektor"/>
|
||||
<l:gentext key="graphicdesigner" text="Grafický designér"/>
|
||||
<l:gentext key="productioneditor" text="Produkce"/>
|
||||
<l:gentext key="technicaleditor" text="Technický editor"/>
|
||||
<l:gentext key="translator" text="Překladatel"/>
|
||||
<l:gentext key="listofequations" text="Seznam rovnic"/>
|
||||
<l:gentext key="ListofEquations" text="Seznam rovnic"/>
|
||||
<l:gentext key="ListofExamples" text="Seznam příkladů"/>
|
||||
<l:gentext key="listofexamples" text="Seznam příkladů"/>
|
||||
<l:gentext key="ListofFigures" text="Seznam obrázků"/>
|
||||
<l:gentext key="listoffigures" text="Seznam obrázků"/>
|
||||
<l:gentext key="ListofProcedures" text="Seznam postupů"/>
|
||||
<l:gentext key="listofprocedures" text="Seznam postupů"/>
|
||||
<l:gentext key="listoftables" text="Seznam tabulek"/>
|
||||
<l:gentext key="ListofTables" text="Seznam tabulek"/>
|
||||
<l:gentext key="ListofUnknown" text="Seznam neznámého"/>
|
||||
<l:gentext key="listofunknown" text="Seznam neznámého"/>
|
||||
<l:gentext key="nav-home" text="Domů"/>
|
||||
<l:gentext key="nav-next" text="Další"/>
|
||||
<l:gentext key="nav-next-sibling" text="Rychle dopředu"/>
|
||||
<l:gentext key="nav-prev" text="Předcházející"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Rychle zpět"/>
|
||||
<l:gentext key="nav-up" text="Nahoru"/>
|
||||
<l:gentext key="nav-toc" text="Obsah"/>
|
||||
<l:gentext key="Draft" text="Návrh"/>
|
||||
<l:gentext key="above" text="nad"/>
|
||||
<l:gentext key="below" text="pod"/>
|
||||
<l:gentext key="sectioncalled" text="oddíl nazvaný"/>
|
||||
<l:gentext key="index symbols" text="Symboly"/>
|
||||
<l:gentext key="lowercase.alpha" text="aábcčdďeéěfghiíjklmnňoópqrřsštťuúůvwxyýzž"/>
|
||||
<l:gentext key="uppercase.alpha" text="AÁBCČDĎEÉĚFGHIÍJKLMNŇOÓPQRŘSŠTŤUÚŮVWXYÝZŽ"/>
|
||||
<l:gentext key="normalize.sort.input" text="aábcčdďeéěfghiíjklmnňoópqrřsštťuúůvwxyýzž"/>
|
||||
<l:gentext key="normalize.sort.output" text="AÁBCČDĎEÉĚFGHIÍJKLMNŇOÓPQRŘSŠTŤUÚŮVWXYÝZŽ"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‚"/>
|
||||
<l:dingbat key="nestedendquote" text="‘"/>
|
||||
<l:dingbat key="singlestartquote" text="‚"/>
|
||||
<l:dingbat key="singleendquote" text="‘"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Příloha %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitola %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Rovnice %n. %t"/>
|
||||
<l:template name="example" text="Příklad %n. %t"/>
|
||||
<l:template name="figure" text="Obrázek %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Část %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Postup %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produkce %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabulka %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Příloha %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Kapitola %n. %t"/>
|
||||
<l:template name="part" text="Část %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text="v %o"/>
|
||||
<l:template name="olink.page.citation" text=" (strana %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(strana %p)"/>
|
||||
<l:template name="docname" text=" v %o"/>
|
||||
<l:template name="docnamelong" text=" v dokumentu nazvaném %o"/>
|
||||
<l:template name="pageabbrev" text="(str. %p)"/>
|
||||
<l:template name="Page" text="Strana %p"/>
|
||||
<l:template name="bridgehead" text="„%t“"/>
|
||||
<l:template name="refsection" text="„%t“"/>
|
||||
<l:template name="refsect1" text="„%t“"/>
|
||||
<l:template name="refsect2" text="„%t“"/>
|
||||
<l:template name="refsect3" text="„%t“"/>
|
||||
<l:template name="sect1" text="„%t“"/>
|
||||
<l:template name="sect2" text="„%t“"/>
|
||||
<l:template name="sect3" text="„%t“"/>
|
||||
<l:template name="sect4" text="„%t“"/>
|
||||
<l:template name="sect5" text="„%t“"/>
|
||||
<l:template name="section" text="„%t“"/>
|
||||
<l:template name="simplesect" text="„%t“"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="%n"/>
|
||||
<l:template name="appendix" text="%n"/>
|
||||
<l:template name="bridgehead" text="%n"/>
|
||||
<l:template name="chapter" text="%n"/>
|
||||
<l:template name="equation" text="%n"/>
|
||||
<l:template name="example" text="%n"/>
|
||||
<l:template name="figure" text="%n"/>
|
||||
<l:template name="part" text="%n"/>
|
||||
<l:template name="procedure" text="%n"/>
|
||||
<l:template name="productionset" text="%n"/>
|
||||
<l:template name="qandadiv" text="%n"/>
|
||||
<l:template name="qandaentry" text="%n"/>
|
||||
<l:template name="question" text="%n"/>
|
||||
<l:template name="sect1" text="%n"/>
|
||||
<l:template name="sect2" text="%n"/>
|
||||
<l:template name="sect3" text="%n"/>
|
||||
<l:template name="sect4" text="%n"/>
|
||||
<l:template name="sect5" text="%n"/>
|
||||
<l:template name="section" text="%n"/>
|
||||
<l:template name="table" text="%n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="%n – „%t“"/>
|
||||
<l:template name="bridgehead" text="%n – „%t“"/>
|
||||
<l:template name="chapter" text="%n – „%t“"/>
|
||||
<l:template name="equation" text="%n – „%t“"/>
|
||||
<l:template name="example" text="%n – „%t“"/>
|
||||
<l:template name="figure" text="%n – „%t“"/>
|
||||
<l:template name="part" text="%n – „%t“"/>
|
||||
<l:template name="procedure" text="%n – „%t“"/>
|
||||
<l:template name="productionset" text="%n – „%t“"/>
|
||||
<l:template name="qandadiv" text="%n – „%t“"/>
|
||||
<l:template name="refsect1" text="„%t“"/>
|
||||
<l:template name="refsect2" text="„%t“"/>
|
||||
<l:template name="refsect3" text="„%t“"/>
|
||||
<l:template name="refsection" text="„%t“"/>
|
||||
<l:template name="sect1" text="%n – „%t“"/>
|
||||
<l:template name="sect2" text="%n – „%t“"/>
|
||||
<l:template name="sect3" text="%n – „%t“"/>
|
||||
<l:template name="sect4" text="%n – „%t“"/>
|
||||
<l:template name="sect5" text="%n – „%t“"/>
|
||||
<l:template name="section" text="%n – „%t“"/>
|
||||
<l:template name="simplesect" text="%n – „%t“"/>
|
||||
<l:template name="table" text="%n – „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" a "/>
|
||||
<l:template name="seplast" text=" a "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Viz %t"/>
|
||||
<l:template name="seealso" text="Viz též %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Publikum: "/>
|
||||
<l:template name="MsgLevel" text="Úroveň: "/>
|
||||
<l:template name="MsgOrig" text="Původ: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d. B Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="ledna"/>
|
||||
<l:template name="February" text="února"/>
|
||||
<l:template name="March" text="března"/>
|
||||
<l:template name="April" text="dubna"/>
|
||||
<l:template name="May" text="května"/>
|
||||
<l:template name="June" text="června"/>
|
||||
<l:template name="July" text="července"/>
|
||||
<l:template name="August" text="srpna"/>
|
||||
<l:template name="September" text="září"/>
|
||||
<l:template name="October" text="října"/>
|
||||
<l:template name="November" text="listopadu"/>
|
||||
<l:template name="December" text="prosince"/>
|
||||
<l:template name="Monday" text="pondělí"/>
|
||||
<l:template name="Tuesday" text="úterý"/>
|
||||
<l:template name="Wednesday" text="středa"/>
|
||||
<l:template name="Thursday" text="čtvrtek"/>
|
||||
<l:template name="Friday" text="pátek"/>
|
||||
<l:template name="Saturday" text="sobota"/>
|
||||
<l:template name="Sunday" text="neděle"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="led"/>
|
||||
<l:template name="Feb" text="úno"/>
|
||||
<l:template name="Mar" text="bře"/>
|
||||
<l:template name="Apr" text="dub"/>
|
||||
<l:template name="May" text="kvě"/>
|
||||
<l:template name="Jun" text="čer"/>
|
||||
<l:template name="Jul" text="čnc"/>
|
||||
<l:template name="Aug" text="srp"/>
|
||||
<l:template name="Sep" text="zář"/>
|
||||
<l:template name="Oct" text="řij"/>
|
||||
<l:template name="Nov" text="lis"/>
|
||||
<l:template name="Dec" text="pro"/>
|
||||
<l:template name="Mon" text="po"/>
|
||||
<l:template name="Tue" text="út"/>
|
||||
<l:template name="Wed" text="st"/>
|
||||
<l:template name="Thu" text="čt"/>
|
||||
<l:template name="Fri" text="pá"/>
|
||||
<l:template name="Sat" text="so"/>
|
||||
<l:template name="Sun" text="ne"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0405 Czech"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", "/>
|
||||
<l:template name="alt.person.two.sep" text=" – "/>
|
||||
<l:template name="alt.person.last.sep" text=" – "/>
|
||||
<l:template name="alt.person.more.sep" text=" – "/>
|
||||
<l:template name="primary.editor" text=" (ed.)"/>
|
||||
<l:template name="primary.many" text=", et al."/>
|
||||
<l:template name="primary.sep" text=". "/>
|
||||
<l:template name="submaintitle.sep" text=": "/>
|
||||
<l:template name="title.sep" text=". "/>
|
||||
<l:template name="othertitle.sep" text=", "/>
|
||||
<l:template name="medium1" text=" ["/>
|
||||
<l:template name="medium2" text="]"/>
|
||||
<l:template name="secondary.person.sep" text="; "/>
|
||||
<l:template name="secondary.sep" text=". "/>
|
||||
<l:template name="respons.sep" text=". "/>
|
||||
<l:template name="edition.sep" text=". "/>
|
||||
<l:template name="edition.serial.sep" text=", "/>
|
||||
<l:template name="issuing.range" text="-"/>
|
||||
<l:template name="issuing.div" text=", "/>
|
||||
<l:template name="issuing.sep" text=". "/>
|
||||
<l:template name="partnr.sep" text=". "/>
|
||||
<l:template name="placepubl.sep" text=": "/>
|
||||
<l:template name="publyear.sep" text=", "/>
|
||||
<l:template name="pubinfo.sep" text=". "/>
|
||||
<l:template name="spec.pubinfo.sep" text=", "/>
|
||||
<l:template name="upd.sep" text=", "/>
|
||||
<l:template name="datecit1" text=" [cit. "/>
|
||||
<l:template name="datecit2" text="]"/>
|
||||
<l:template name="extent.sep" text=". "/>
|
||||
<l:template name="locs.sep" text=", "/>
|
||||
<l:template name="location.sep" text=". "/>
|
||||
<l:template name="serie.sep" text=". "/>
|
||||
<l:template name="notice.sep" text=". "/>
|
||||
<l:template name="access" text="Dostupné "/>
|
||||
<l:template name="acctoo" text="Dostupné také "/>
|
||||
<l:template name="onwww" text="na World Wide Web"/>
|
||||
<l:template name="oninet" text="na Internetu"/>
|
||||
<l:template name="access.end" text=": "/>
|
||||
<l:template name="link1" text="<"/>
|
||||
<l:template name="link2" text=">"/>
|
||||
<l:template name="access.sep" text=". "/>
|
||||
<l:template name="isbn" text="ISBN "/>
|
||||
<l:template name="issn" text="ISSN "/>
|
||||
<l:template name="stdnum.sep" text=". "/>
|
||||
<l:template name="patcountry.sep" text=". "/>
|
||||
<l:template name="pattype.sep" text=", "/>
|
||||
<l:template name="patnum.sep" text=". "/>
|
||||
<l:template name="patdate.sep" text=". "/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Symboly</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">Á</l:l>
|
||||
<l:l i="1">á</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">Č</l:l>
|
||||
<l:l i="4">č</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="5">Ď</l:l>
|
||||
<l:l i="5">ď</l:l>
|
||||
<l:l i="7">E</l:l>
|
||||
<l:l i="7">e</l:l>
|
||||
<l:l i="7">É</l:l>
|
||||
<l:l i="7">é</l:l>
|
||||
<l:l i="7">Ě</l:l>
|
||||
<l:l i="7">ě</l:l>
|
||||
<l:l i="7">Ë</l:l>
|
||||
<l:l i="7">ë</l:l>
|
||||
<l:l i="8">F</l:l>
|
||||
<l:l i="8">f</l:l>
|
||||
<l:l i="9">G</l:l>
|
||||
<l:l i="9">g</l:l>
|
||||
<l:l i="10">H</l:l>
|
||||
<l:l i="10">h</l:l>
|
||||
<l:l i="11">Ch</l:l>
|
||||
<l:l i="11">ch</l:l>
|
||||
<l:l i="11">cH</l:l>
|
||||
<l:l i="11">CH</l:l>
|
||||
<l:l i="12">I</l:l>
|
||||
<l:l i="12">i</l:l>
|
||||
<l:l i="12">Í</l:l>
|
||||
<l:l i="12">í</l:l>
|
||||
<l:l i="13">J</l:l>
|
||||
<l:l i="13">j</l:l>
|
||||
<l:l i="14">K</l:l>
|
||||
<l:l i="14">k</l:l>
|
||||
<l:l i="15">L</l:l>
|
||||
<l:l i="15">l</l:l>
|
||||
<l:l i="16">M</l:l>
|
||||
<l:l i="16">m</l:l>
|
||||
<l:l i="17">N</l:l>
|
||||
<l:l i="17">n</l:l>
|
||||
<l:l i="17">Ň</l:l>
|
||||
<l:l i="17">ň</l:l>
|
||||
<l:l i="19">O</l:l>
|
||||
<l:l i="19">o</l:l>
|
||||
<l:l i="19">Ó</l:l>
|
||||
<l:l i="19">ó</l:l>
|
||||
<l:l i="19">Ö</l:l>
|
||||
<l:l i="19">ö</l:l>
|
||||
<l:l i="20">P</l:l>
|
||||
<l:l i="20">p</l:l>
|
||||
<l:l i="21">Q</l:l>
|
||||
<l:l i="21">q</l:l>
|
||||
<l:l i="22">R</l:l>
|
||||
<l:l i="22">r</l:l>
|
||||
<l:l i="23">Ř</l:l>
|
||||
<l:l i="23">ř</l:l>
|
||||
<l:l i="24">S</l:l>
|
||||
<l:l i="24">s</l:l>
|
||||
<l:l i="25">Š</l:l>
|
||||
<l:l i="25">š</l:l>
|
||||
<l:l i="26">T</l:l>
|
||||
<l:l i="26">t</l:l>
|
||||
<l:l i="26">Ť</l:l>
|
||||
<l:l i="26">ť</l:l>
|
||||
<l:l i="28">U</l:l>
|
||||
<l:l i="28">u</l:l>
|
||||
<l:l i="28">Ú</l:l>
|
||||
<l:l i="28">ú</l:l>
|
||||
<l:l i="28">Ů</l:l>
|
||||
<l:l i="28">ů</l:l>
|
||||
<l:l i="28">Ü</l:l>
|
||||
<l:l i="28">ü</l:l>
|
||||
<l:l i="29">V</l:l>
|
||||
<l:l i="29">v</l:l>
|
||||
<l:l i="30">W</l:l>
|
||||
<l:l i="30">w</l:l>
|
||||
<l:l i="31">X</l:l>
|
||||
<l:l i="31">x</l:l>
|
||||
<l:l i="32">Y</l:l>
|
||||
<l:l i="32">y</l:l>
|
||||
<l:l i="32">Ý</l:l>
|
||||
<l:l i="32">ý</l:l>
|
||||
<l:l i="33">Z</l:l>
|
||||
<l:l i="33">z</l:l>
|
||||
<l:l i="34">Ž</l:l>
|
||||
<l:l i="34">ž</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1239
doc/reference/lib/docbook-xsl-snapshot/common/cy.xml
Normal file
1239
doc/reference/lib/docbook-xsl-snapshot/common/cy.xml
Normal file
File diff suppressed because it is too large
Load Diff
658
doc/reference/lib/docbook-xsl-snapshot/common/da.xml
Normal file
658
doc/reference/lib/docbook-xsl-snapshot/common/da.xml
Normal file
@@ -0,0 +1,658 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="da" english-language-name="Danish">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/da.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited da.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Resumé"/>
|
||||
<l:gentext key="abstract" text="resumé"/>
|
||||
<l:gentext key="Answer" text="Svar"/>
|
||||
<l:gentext key="answer" text="svar"/>
|
||||
<l:gentext key="Appendix" text="Appendiks"/>
|
||||
<l:gentext key="appendix" text="appendiks"/>
|
||||
<l:gentext key="Article" text="Artikel"/>
|
||||
<l:gentext key="article" text="artikel"/>
|
||||
<l:gentext key="Author" text="Forfatter"/>
|
||||
<l:gentext key="Bibliography" text="Litteraturliste"/>
|
||||
<l:gentext key="bibliography" text="litteraturliste"/>
|
||||
<l:gentext key="Book" text="Bog"/>
|
||||
<l:gentext key="book" text="bog"/>
|
||||
<l:gentext key="CAUTION" text="PAS PÅ"/>
|
||||
<l:gentext key="Caution" text="Pas på"/>
|
||||
<l:gentext key="caution" text="pas på"/>
|
||||
<l:gentext key="Chapter" text="Kapitel"/>
|
||||
<l:gentext key="chapter" text="kapitel"/>
|
||||
<l:gentext key="Colophon" text="Kolofon"/>
|
||||
<l:gentext key="colophon" text="kolofon"/>
|
||||
<l:gentext key="Copyright" text="Ophavsret"/>
|
||||
<l:gentext key="copyright" text="ophavsret"/>
|
||||
<l:gentext key="Dedication" text="Tilegnet"/>
|
||||
<l:gentext key="dedication" text="tilegnet"/>
|
||||
<l:gentext key="Edition" text="Udgave"/>
|
||||
<l:gentext key="edition" text="udgave"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Ligning"/>
|
||||
<l:gentext key="equation" text="ligning"/>
|
||||
<l:gentext key="Example" text="Eksempel"/>
|
||||
<l:gentext key="example" text="eksempel"/>
|
||||
<l:gentext key="Figure" text="Figur"/>
|
||||
<l:gentext key="figure" text="figur"/>
|
||||
<l:gentext key="Glossary" text="Ordliste"/>
|
||||
<l:gentext key="glossary" text="ordliste"/>
|
||||
<l:gentext key="GlossSee" text="Se"/>
|
||||
<l:gentext key="glosssee" text="se"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Se også"/>
|
||||
<l:gentext key="glossseealso" text="se også"/>
|
||||
<l:gentext key="IMPORTANT" text="VIGTIGT"/>
|
||||
<l:gentext key="important" text="vigtigt"/>
|
||||
<l:gentext key="Important" text="Vigtigt"/>
|
||||
<l:gentext key="Index" text="Stikordsregister"/>
|
||||
<l:gentext key="index" text="stikordsregister"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Retslig note"/>
|
||||
<l:gentext key="legalnotice" text="retslig note"/>
|
||||
<l:gentext key="MsgAud" text="Målgruppe"/>
|
||||
<l:gentext key="msgaud" text="målgruppe"/>
|
||||
<l:gentext key="MsgLevel" text="Niveau"/>
|
||||
<l:gentext key="msglevel" text="niveau"/>
|
||||
<l:gentext key="MsgOrig" text="Grundlag"/>
|
||||
<l:gentext key="msgorig" text="grundlag"/>
|
||||
<l:gentext key="NOTE" text="BEMÆRK"/>
|
||||
<l:gentext key="Note" text="Bemærk"/>
|
||||
<l:gentext key="note" text="bemærk"/>
|
||||
<l:gentext key="Part" text="Del"/>
|
||||
<l:gentext key="part" text="del"/>
|
||||
<l:gentext key="Preface" text="Forord"/>
|
||||
<l:gentext key="preface" text="forord"/>
|
||||
<l:gentext key="Procedure" text="Procedure"/>
|
||||
<l:gentext key="procedure" text="procedure"/>
|
||||
<l:gentext key="ProductionSet" text="Produktion"/>
|
||||
<l:gentext key="PubDate" text="Publication Date" lang="en"/>
|
||||
<l:gentext key="pubdate" text="Publication date" lang="en"/>
|
||||
<l:gentext key="Published" text="Udgivet"/>
|
||||
<l:gentext key="published" text="udgivet"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="Spørgsmål og Svar"/>
|
||||
<l:gentext key="qandadiv" text="Spørgsmål og Svar"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Spørgsmål"/>
|
||||
<l:gentext key="question" text="spørgsmål"/>
|
||||
<l:gentext key="RefEntry" text="Punkt"/>
|
||||
<l:gentext key="refentry" text="punkt"/>
|
||||
<l:gentext key="Reference" text="Henvisning"/>
|
||||
<l:gentext key="reference" text="henvisning"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Navn"/>
|
||||
<l:gentext key="refname" text="navn"/>
|
||||
<l:gentext key="RefSection" text="Afsnit"/>
|
||||
<l:gentext key="refsection" text="afsnit"/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Revisionshistorie"/>
|
||||
<l:gentext key="revhistory" text="revisionshistorie"/>
|
||||
<l:gentext key="revision" text="revision"/>
|
||||
<l:gentext key="Revision" text="Revision"/>
|
||||
<l:gentext key="sect1" text="Afsnit"/>
|
||||
<l:gentext key="sect2" text="Afsnit"/>
|
||||
<l:gentext key="sect3" text="Afsnit"/>
|
||||
<l:gentext key="sect4" text="Afsnit"/>
|
||||
<l:gentext key="sect5" text="Afsnit"/>
|
||||
<l:gentext key="section" text="afsnit"/>
|
||||
<l:gentext key="Section" text="Afsnit"/>
|
||||
<l:gentext key="see" text="se"/>
|
||||
<l:gentext key="See" text="Se"/>
|
||||
<l:gentext key="seealso" text="se også"/>
|
||||
<l:gentext key="Seealso" text="Se også"/>
|
||||
<l:gentext key="SeeAlso" text="Se også"/>
|
||||
<l:gentext key="set" text="sæt"/>
|
||||
<l:gentext key="Set" text="Sæt"/>
|
||||
<l:gentext key="setindex" text="sæt indeks"/>
|
||||
<l:gentext key="SetIndex" text="Sæt indeks"/>
|
||||
<l:gentext key="Sidebar" text="Sidebjælke"/>
|
||||
<l:gentext key="sidebar" text="sidebjælke"/>
|
||||
<l:gentext key="step" text="trin"/>
|
||||
<l:gentext key="Step" text="Trin"/>
|
||||
<l:gentext key="table" text="tabel"/>
|
||||
<l:gentext key="Table" text="Tabel"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="vink"/>
|
||||
<l:gentext key="TIP" text="VINK"/>
|
||||
<l:gentext key="Tip" text="Vink"/>
|
||||
<l:gentext key="Warning" text="Advarsel"/>
|
||||
<l:gentext key="warning" text="advarsel"/>
|
||||
<l:gentext key="WARNING" text="ADVARSEL"/>
|
||||
<l:gentext key="and" text="og"/>
|
||||
<l:gentext key="by" text="af"/>
|
||||
<l:gentext key="Edited" text="Redigeret"/>
|
||||
<l:gentext key="edited" text="redigeret"/>
|
||||
<l:gentext key="Editedby" text="Redigeret af"/>
|
||||
<l:gentext key="editedby" text="redigeret af"/>
|
||||
<l:gentext key="in" text="i"/>
|
||||
<l:gentext key="lastlistcomma" text=""/>
|
||||
<l:gentext key="listcomma" text=", "/>
|
||||
<l:gentext key="nonexistantelement" text="ikke-eksisterende element"/>
|
||||
<l:gentext key="notes" text="slutbemærkning:"/>
|
||||
<l:gentext key="Notes" text="Slutbemærkning:"/>
|
||||
<l:gentext key="Pgs" text="Siderne"/>
|
||||
<l:gentext key="pgs" text="siderne"/>
|
||||
<l:gentext key="Revisedby" text="Revideret af: "/>
|
||||
<l:gentext key="revisedby" text="revideret af: "/>
|
||||
<l:gentext key="TableNotes" text="Noter:"/>
|
||||
<l:gentext key="tablenotes" text="noter:"/>
|
||||
<l:gentext key="TableofContents" text="Indholdsfortegnelse"/>
|
||||
<l:gentext key="tableofcontents" text="indholdsfortegnelse"/>
|
||||
<l:gentext key="unexpectedelementname" text="uventet elementnavn"/>
|
||||
<l:gentext key="unsupported" text="ikke understøttet"/>
|
||||
<l:gentext key="xrefto" text="krydshenvisning til"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="ligningsliste"/>
|
||||
<l:gentext key="ListofEquations" text="Ligningsliste"/>
|
||||
<l:gentext key="ListofExamples" text="Eksempelliste"/>
|
||||
<l:gentext key="listofexamples" text="eksempelliste"/>
|
||||
<l:gentext key="ListofFigures" text="Figurliste"/>
|
||||
<l:gentext key="listoffigures" text="figurliste"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="tabelliste"/>
|
||||
<l:gentext key="ListofTables" text="Tabelliste"/>
|
||||
<l:gentext key="ListofUnknown" text="Liste over ukendte"/>
|
||||
<l:gentext key="listofunknown" text="liste over ukendte"/>
|
||||
<l:gentext key="nav-home" text="hjem"/>
|
||||
<l:gentext key="nav-next" text="næste"/>
|
||||
<l:gentext key="nav-next-sibling" text="hurtigt fremad"/>
|
||||
<l:gentext key="nav-prev" text="forrige"/>
|
||||
<l:gentext key="nav-prev-sibling" text="hurtigt tilbage"/>
|
||||
<l:gentext key="nav-up" text="op"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Kladde"/>
|
||||
<l:gentext key="above" text="over"/>
|
||||
<l:gentext key="below" text="under"/>
|
||||
<l:gentext key="sectioncalled" text="afsnittet der hedder"/>
|
||||
<l:gentext key="index symbols" text="symboler"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzæøå"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÆØÅ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Appendiks %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Ligning %n. %t"/>
|
||||
<l:template name="example" text="Eksempel %n. %t"/>
|
||||
<l:template name="figure" text="Figur %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Del %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procedure %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Spørgsmål %n"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabel %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Appendiks %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="part" text="Del %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Svar %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Spørgsmål %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Spørgsmål %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsection" text="“%t”"/>
|
||||
<l:template name="refsect1" text="“%t”"/>
|
||||
<l:template name="refsect2" text="“%t”"/>
|
||||
<l:template name="refsect3" text="“%t”"/>
|
||||
<l:template name="sect1" text="“%t”"/>
|
||||
<l:template name="sect2" text="“%t”"/>
|
||||
<l:template name="sect3" text="“%t”"/>
|
||||
<l:template name="sect4" text="“%t”"/>
|
||||
<l:template name="sect5" text="“%t”"/>
|
||||
<l:template name="section" text="“%t”"/>
|
||||
<l:template name="simplesect" text="“%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="Svar %n"/>
|
||||
<l:template name="appendix" text="Appendiks %n"/>
|
||||
<l:template name="bridgehead" text="Afsnit %n"/>
|
||||
<l:template name="chapter" text="Kapitel %n"/>
|
||||
<l:template name="equation" text="Ligning %n"/>
|
||||
<l:template name="example" text="Eksempel %n"/>
|
||||
<l:template name="figure" text="Figur %n"/>
|
||||
<l:template name="part" text="Del %n"/>
|
||||
<l:template name="procedure" text="Procedure %n"/>
|
||||
<l:template name="productionset" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="Spørgsmål og Svar %n"/>
|
||||
<l:template name="qandaentry" text="Spørgsmål %n"/>
|
||||
<l:template name="question" text="Spørgsmål %n"/>
|
||||
<l:template name="sect1" text="Afsnit %n"/>
|
||||
<l:template name="sect2" text="Afsnit %n"/>
|
||||
<l:template name="sect3" text="Afsnit %n"/>
|
||||
<l:template name="sect4" text="Afsnit %n"/>
|
||||
<l:template name="sect5" text="Afsnit %n"/>
|
||||
<l:template name="section" text="Afsnit %n"/>
|
||||
<l:template name="table" text="Tabel %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Appendiks %n, %t"/>
|
||||
<l:template name="bridgehead" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="chapter" text="Kapitel %n, %t"/>
|
||||
<l:template name="equation" text="Ligning %n, “%t”"/>
|
||||
<l:template name="example" text="Eksempel %n, “%t”"/>
|
||||
<l:template name="figure" text="Figur %n, “%t”"/>
|
||||
<l:template name="part" text="Del %n, “%t”"/>
|
||||
<l:template name="procedure" text="Procedure %n, “%t”"/>
|
||||
<l:template name="productionset" text="Produktion %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="Spørgsmål og Svar %n, “%t”"/>
|
||||
<l:template name="refsect1" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsect2" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsect3" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="refsection" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="sect1" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect2" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect3" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect4" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="sect5" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="section" text="Afsnit %n, “%t”"/>
|
||||
<l:template name="simplesect" text="afsnittet der hedder “%t”"/>
|
||||
<l:template name="table" text="Tabel %n, “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" og "/>
|
||||
<l:template name="seplast" text=" og "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Se %t"/>
|
||||
<l:template name="seealso" text="Se også %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Målgruppe: "/>
|
||||
<l:template name="MsgLevel" text="Niveau: "/>
|
||||
<l:template name="MsgOrig" text="Grundlag: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d/m/Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Januar"/>
|
||||
<l:template name="February" text="Februar"/>
|
||||
<l:template name="March" text="Marts"/>
|
||||
<l:template name="April" text="April"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="June" text="Juni"/>
|
||||
<l:template name="July" text="July"/>
|
||||
<l:template name="August" text="August"/>
|
||||
<l:template name="September" text="September"/>
|
||||
<l:template name="October" text="Oktober"/>
|
||||
<l:template name="November" text="November"/>
|
||||
<l:template name="December" text="December"/>
|
||||
<l:template name="Monday" text="Mandag"/>
|
||||
<l:template name="Tuesday" text="Tirsdag"/>
|
||||
<l:template name="Wednesday" text="Onsdag"/>
|
||||
<l:template name="Thursday" text="Torsdag"/>
|
||||
<l:template name="Friday" text="Fredag"/>
|
||||
<l:template name="Saturday" text="Lørdag"/>
|
||||
<l:template name="Sunday" text="Søndag"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Jan"/>
|
||||
<l:template name="Feb" text="Feb"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="Jun" text="Jun"/>
|
||||
<l:template name="Jul" text="Jul"/>
|
||||
<l:template name="Aug" text="Aug"/>
|
||||
<l:template name="Sep" text="Sep"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Nov"/>
|
||||
<l:template name="Dec" text="Dec"/>
|
||||
<l:template name="Mon" text="Man"/>
|
||||
<l:template name="Tue" text="Tir"/>
|
||||
<l:template name="Wed" text="ins"/>
|
||||
<l:template name="Thu" text="Tor"/>
|
||||
<l:template name="Fri" text="Fre"/>
|
||||
<l:template name="Sat" text="Lør"/>
|
||||
<l:template name="Sun" text="Søn"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0406 Danish"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
<l:l i="27">Æ</l:l>
|
||||
<l:l i="27">æ</l:l>
|
||||
<l:l i="28">Ø</l:l>
|
||||
<l:l i="28">ø</l:l>
|
||||
<l:l i="29">Å</l:l>
|
||||
<l:l i="29">å</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
660
doc/reference/lib/docbook-xsl-snapshot/common/de.xml
Normal file
660
doc/reference/lib/docbook-xsl-snapshot/common/de.xml
Normal file
@@ -0,0 +1,660 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="de" english-language-name="German">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/de.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited de.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Zusammenfassung"/>
|
||||
<l:gentext key="abstract" text="Zusammenfassung"/>
|
||||
<l:gentext key="Answer" text="A:"/>
|
||||
<l:gentext key="answer" text="A:"/>
|
||||
<l:gentext key="Appendix" text="Anhang"/>
|
||||
<l:gentext key="appendix" text="Anhang"/>
|
||||
<l:gentext key="Article" text="Artikel"/>
|
||||
<l:gentext key="article" text="Artikel"/>
|
||||
<l:gentext key="Author" text="Autor"/>
|
||||
<l:gentext key="Bibliography" text="Literaturverzeichnis"/>
|
||||
<l:gentext key="bibliography" text="Literaturverzeichnis"/>
|
||||
<l:gentext key="Book" text="Buch"/>
|
||||
<l:gentext key="book" text="Buch"/>
|
||||
<l:gentext key="CAUTION" text="ACHTUNG"/>
|
||||
<l:gentext key="Caution" text="Achtung"/>
|
||||
<l:gentext key="caution" text="Achtung"/>
|
||||
<l:gentext key="Chapter" text="Kapitel"/>
|
||||
<l:gentext key="chapter" text="Kapitel"/>
|
||||
<l:gentext key="Colophon" text="Kolophon"/>
|
||||
<l:gentext key="colophon" text="Kolophon"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Widmung"/>
|
||||
<l:gentext key="dedication" text="Widmung"/>
|
||||
<l:gentext key="Edition" text="Ausgabe"/>
|
||||
<l:gentext key="edition" text="Ausgabe"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Gleichung"/>
|
||||
<l:gentext key="equation" text="Gleichung"/>
|
||||
<l:gentext key="Example" text="Beispiel"/>
|
||||
<l:gentext key="example" text="Beispiel"/>
|
||||
<l:gentext key="Figure" text="Abbildung"/>
|
||||
<l:gentext key="figure" text="Abbildung"/>
|
||||
<l:gentext key="Glossary" text="Glossar"/>
|
||||
<l:gentext key="glossary" text="Glossar"/>
|
||||
<l:gentext key="GlossSee" text="Siehe"/>
|
||||
<l:gentext key="glosssee" text="Siehe"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Siehe auch"/>
|
||||
<l:gentext key="glossseealso" text="Siehe auch"/>
|
||||
<l:gentext key="IMPORTANT" text="WICHTIG"/>
|
||||
<l:gentext key="important" text="Wichtig"/>
|
||||
<l:gentext key="Important" text="Wichtig"/>
|
||||
<l:gentext key="Index" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="index" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Rechtlicher Hinweis"/>
|
||||
<l:gentext key="legalnotice" text="Rechtlicher Hinweis"/>
|
||||
<l:gentext key="MsgAud" text="Zielgruppe"/>
|
||||
<l:gentext key="msgaud" text="Zielgruppe"/>
|
||||
<l:gentext key="MsgLevel" text="Dringlichkeit"/>
|
||||
<l:gentext key="msglevel" text="Dringlichkeit"/>
|
||||
<l:gentext key="MsgOrig" text="Ursprung"/>
|
||||
<l:gentext key="msgorig" text="Ursprung"/>
|
||||
<l:gentext key="NOTE" text="ANMERKUNG"/>
|
||||
<l:gentext key="Note" text="Anmerkung"/>
|
||||
<l:gentext key="note" text="Anmerkung"/>
|
||||
<l:gentext key="Part" text="Teil"/>
|
||||
<l:gentext key="part" text="Teil"/>
|
||||
<l:gentext key="Preface" text="Vorwort"/>
|
||||
<l:gentext key="preface" text="Vorwort"/>
|
||||
<l:gentext key="Procedure" text="Prozedur"/>
|
||||
<l:gentext key="procedure" text="Prozedur"/>
|
||||
<l:gentext key="ProductionSet" text="Produktion"/>
|
||||
<l:gentext key="PubDate" text="Veröffentlicht"/>
|
||||
<l:gentext key="pubdate" text="Veröffentlicht"/>
|
||||
<l:gentext key="Published" text="Veröffentlicht"/>
|
||||
<l:gentext key="published" text="Veröffentlicht"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="F & A"/>
|
||||
<l:gentext key="qandadiv" text="F & A"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="F:"/>
|
||||
<l:gentext key="question" text="F:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Verweis"/>
|
||||
<l:gentext key="reference" text="Verweis"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Name"/>
|
||||
<l:gentext key="refname" text="Name"/>
|
||||
<l:gentext key="RefSection" text="Abschnitt"/>
|
||||
<l:gentext key="refsection" text="Abschnitt"/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Versionsgeschichte"/>
|
||||
<l:gentext key="revhistory" text="Versionsgeschichte"/>
|
||||
<l:gentext key="revision" text="Version"/>
|
||||
<l:gentext key="Revision" text="Version"/>
|
||||
<l:gentext key="sect1" text="Abschnitt"/>
|
||||
<l:gentext key="sect2" text="Abschnitt"/>
|
||||
<l:gentext key="sect3" text="Abschnitt"/>
|
||||
<l:gentext key="sect4" text="Abschnitt"/>
|
||||
<l:gentext key="sect5" text="Abschnitt"/>
|
||||
<l:gentext key="section" text="Abschnitt"/>
|
||||
<l:gentext key="Section" text="Abschnitt"/>
|
||||
<l:gentext key="see" text="Siehe"/>
|
||||
<l:gentext key="See" text="Siehe"/>
|
||||
<l:gentext key="seealso" text="Siehe auch"/>
|
||||
<l:gentext key="Seealso" text="Siehe auch"/>
|
||||
<l:gentext key="SeeAlso" text="Siehe auch"/>
|
||||
<l:gentext key="set" text="Satz"/>
|
||||
<l:gentext key="Set" text="Satz"/>
|
||||
<l:gentext key="setindex" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="SetIndex" text="Stichwortverzeichnis"/>
|
||||
<l:gentext key="Sidebar" text="Randnotiz"/>
|
||||
<l:gentext key="sidebar" text="randnotiz"/>
|
||||
<l:gentext key="step" text="Schritt"/>
|
||||
<l:gentext key="Step" text="Schritt"/>
|
||||
<l:gentext key="table" text="Tabelle"/>
|
||||
<l:gentext key="Table" text="Tabelle"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Tipp"/>
|
||||
<l:gentext key="TIP" text="TIPP"/>
|
||||
<l:gentext key="Tip" text="Tipp"/>
|
||||
<l:gentext key="Warning" text="Warnung"/>
|
||||
<l:gentext key="warning" text="Warnung"/>
|
||||
<l:gentext key="WARNING" text="WARNUNG"/>
|
||||
<l:gentext key="and" text="und"/>
|
||||
<l:gentext key="by" text="von"/>
|
||||
<l:gentext key="Edited" text="Herausgegeben"/>
|
||||
<l:gentext key="edited" text="Herausgegeben"/>
|
||||
<l:gentext key="Editedby" text="Herausgegeben von"/>
|
||||
<l:gentext key="editedby" text="Herausgegeben von"/>
|
||||
<l:gentext key="in" text="in"/>
|
||||
<l:gentext key="lastlistcomma" text=""/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="nicht existierendes Element"/>
|
||||
<l:gentext key="notes" text="Fußnoten"/>
|
||||
<l:gentext key="Notes" text="Fußnoten"/>
|
||||
<l:gentext key="Pgs" text="Seiten"/>
|
||||
<l:gentext key="pgs" text="Seiten"/>
|
||||
<l:gentext key="Revisedby" text="Geändert durch: "/>
|
||||
<l:gentext key="revisedby" text="Geändert durch: "/>
|
||||
<l:gentext key="TableNotes" text="Bemerkungen"/>
|
||||
<l:gentext key="tablenotes" text="Bemerkungen"/>
|
||||
<l:gentext key="TableofContents" text="Inhaltsverzeichnis"/>
|
||||
<l:gentext key="tableofcontents" text="Inhaltsverzeichnis"/>
|
||||
<l:gentext key="unexpectedelementname" text="Unerwarteter Elementname"/>
|
||||
<l:gentext key="unsupported" text="wird nicht unterstützt"/>
|
||||
<l:gentext key="xrefto" text="xref auf"/>
|
||||
<l:gentext key="Authors" text="Autoren"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Gleichungen"/>
|
||||
<l:gentext key="ListofEquations" text="Gleichungen"/>
|
||||
<l:gentext key="ListofExamples" text="Beispiele"/>
|
||||
<l:gentext key="listofexamples" text="Beispiele"/>
|
||||
<l:gentext key="ListofFigures" text="Abbildungsverzeichnis"/>
|
||||
<l:gentext key="listoffigures" text="Abbildungsverzeichnis"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="Tabellenverzeichnis"/>
|
||||
<l:gentext key="ListofTables" text="Tabellenverzeichnis"/>
|
||||
<l:gentext key="ListofUnknown" text="???-Verzeichnis"/>
|
||||
<l:gentext key="listofunknown" text="???-Verzeichnis"/>
|
||||
<l:gentext key="nav-home" text="Zum Anfang"/>
|
||||
<l:gentext key="nav-next" text="Weiter"/>
|
||||
<l:gentext key="nav-next-sibling" text="Schnell weiter"/>
|
||||
<l:gentext key="nav-prev" text="Zurück"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Schnell zurück"/>
|
||||
<l:gentext key="nav-up" text="Nach oben"/>
|
||||
<l:gentext key="nav-toc" text="InhV"/>
|
||||
<l:gentext key="Draft" text="Entwurf"/>
|
||||
<l:gentext key="above" text="oben"/>
|
||||
<l:gentext key="below" text="unten"/>
|
||||
<l:gentext key="sectioncalled" text="der Abschnitt namens"/>
|
||||
<l:gentext key="index symbols" text="Symbole"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzäöüß"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÄÖÜß"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‚"/>
|
||||
<l:dingbat key="nestedendquote" text="‘"/>
|
||||
<l:dingbat key="singlestartquote" text="‚"/>
|
||||
<l:dingbat key="singleendquote" text="‘"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="3"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Anhang %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Gleichung %n. %t"/>
|
||||
<l:template name="example" text="Beispiel %n. %t"/>
|
||||
<l:template name="figure" text="Abbildung %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Teil %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Prozedur %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="F: %n"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabelle %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Anhang %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="part" text="Teil %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="A: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="F: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="F: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(Seite %p)"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(S. %p)"/>
|
||||
<l:template name="Page" text="Seite %p"/>
|
||||
<l:template name="bridgehead" text="„%t“"/>
|
||||
<l:template name="refsection" text="„%t“"/>
|
||||
<l:template name="refsect1" text="„%t“"/>
|
||||
<l:template name="refsect2" text="„%t“"/>
|
||||
<l:template name="refsect3" text="„%t“"/>
|
||||
<l:template name="sect1" text="„%t“"/>
|
||||
<l:template name="sect2" text="„%t“"/>
|
||||
<l:template name="sect3" text="„%t“"/>
|
||||
<l:template name="sect4" text="„%t“"/>
|
||||
<l:template name="sect5" text="„%t“"/>
|
||||
<l:template name="section" text="„%t“"/>
|
||||
<l:template name="simplesect" text="„%t“"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="A: %n"/>
|
||||
<l:template name="appendix" text="Anhang %n"/>
|
||||
<l:template name="bridgehead" text="Abschnitt %n"/>
|
||||
<l:template name="chapter" text="Kapitel %n"/>
|
||||
<l:template name="equation" text="Gleichung %n"/>
|
||||
<l:template name="example" text="Beispiel %n"/>
|
||||
<l:template name="figure" text="Abbildung %n"/>
|
||||
<l:template name="part" text="Teil %n"/>
|
||||
<l:template name="procedure" text="Prozedur %n"/>
|
||||
<l:template name="productionset" text="Produktion %n"/>
|
||||
<l:template name="qandadiv" text="F & A %n"/>
|
||||
<l:template name="qandaentry" text="F: %n"/>
|
||||
<l:template name="question" text="F: %n"/>
|
||||
<l:template name="sect1" text="Abschnitt %n"/>
|
||||
<l:template name="sect2" text="Abschnitt %n"/>
|
||||
<l:template name="sect3" text="Abschnitt %n"/>
|
||||
<l:template name="sect4" text="Abschnitt %n"/>
|
||||
<l:template name="sect5" text="Abschnitt %n"/>
|
||||
<l:template name="section" text="Abschnitt %n"/>
|
||||
<l:template name="table" text="Tabelle %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Anhang %n, %t"/>
|
||||
<l:template name="bridgehead" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="chapter" text="Kapitel %n, %t"/>
|
||||
<l:template name="equation" text="Gleichung %n, „%t“"/>
|
||||
<l:template name="example" text="Beispiel %n, „%t“"/>
|
||||
<l:template name="figure" text="Abbildung %n, „%t“"/>
|
||||
<l:template name="part" text="Teil %n, „%t“"/>
|
||||
<l:template name="procedure" text="Prozedur %n, „%t“"/>
|
||||
<l:template name="productionset" text="Produktion %n, „%t“"/>
|
||||
<l:template name="qandadiv" text="F & A %n, „%t“"/>
|
||||
<l:template name="refsect1" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="refsect2" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="refsect3" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="refsection" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="sect1" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect2" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect3" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect4" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="sect5" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="section" text="Abschnitt %n, „%t“"/>
|
||||
<l:template name="simplesect" text="der Abschnitt namens „%t“"/>
|
||||
<l:template name="table" text="Tabelle %n, „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" und "/>
|
||||
<l:template name="seplast" text=" und "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Siehe %t"/>
|
||||
<l:template name="seealso" text="Siehe auch %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Zielgruppe: "/>
|
||||
<l:template name="MsgLevel" text="Dringlichkeit: "/>
|
||||
<l:template name="MsgOrig" text="Ursprung: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d.m.Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Januar"/>
|
||||
<l:template name="February" text="Februar"/>
|
||||
<l:template name="March" text="März"/>
|
||||
<l:template name="April" text="April"/>
|
||||
<l:template name="May" text="Mai"/>
|
||||
<l:template name="June" text="Juni"/>
|
||||
<l:template name="July" text="Juli"/>
|
||||
<l:template name="August" text="August"/>
|
||||
<l:template name="September" text="September"/>
|
||||
<l:template name="October" text="Oktober"/>
|
||||
<l:template name="November" text="November"/>
|
||||
<l:template name="December" text="Dezember"/>
|
||||
<l:template name="Monday" text="Montag"/>
|
||||
<l:template name="Tuesday" text="Dienstag"/>
|
||||
<l:template name="Wednesday" text="Mittwoch"/>
|
||||
<l:template name="Thursday" text="Donnerstag"/>
|
||||
<l:template name="Friday" text="Freitag"/>
|
||||
<l:template name="Saturday" text="Samstag"/>
|
||||
<l:template name="Sunday" text="Sonntag"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Jan"/>
|
||||
<l:template name="Feb" text="Feb"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="Mai"/>
|
||||
<l:template name="Jun" text="Jun"/>
|
||||
<l:template name="Jul" text="Jul"/>
|
||||
<l:template name="Aug" text="Aug"/>
|
||||
<l:template name="Sep" text="Sep"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Nov"/>
|
||||
<l:template name="Dec" text="Dez"/>
|
||||
<l:template name="Mon" text="Mo"/>
|
||||
<l:template name="Tue" text="Di"/>
|
||||
<l:template name="Wed" text="Mi"/>
|
||||
<l:template name="Thu" text="Do"/>
|
||||
<l:template name="Fri" text="Fr"/>
|
||||
<l:template name="Sat" text="Sa"/>
|
||||
<l:template name="Sun" text="So"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0407 German (GERMANY)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Symbole</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">Ä</l:l>
|
||||
<l:l i="1">ä</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="15">Ö</l:l>
|
||||
<l:l i="15">ö</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="21">Ü</l:l>
|
||||
<l:l i="21">ü</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/el.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/el.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/en.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/en.xml
Normal file
File diff suppressed because it is too large
Load Diff
60
doc/reference/lib/docbook-xsl-snapshot/common/entities.ent
Normal file
60
doc/reference/lib/docbook-xsl-snapshot/common/entities.ent
Normal file
@@ -0,0 +1,60 @@
|
||||
<!-- ********************************************************************
|
||||
$Id: entities.ent 7602 2007-12-12 20:07:57Z mzjn $
|
||||
********************************************************************
|
||||
|
||||
This file contains common entity declarations used for
|
||||
sorting (and other things) by various templates.
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!ENTITY lowercase "'AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ'">
|
||||
<!ENTITY uppercase "'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ'">
|
||||
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas) or @sortas = ""]))'>
|
||||
<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas) or @sortas = ""]))'>
|
||||
<!ENTITY tertiary 'normalize-space(concat(tertiary/@sortas, tertiary[not(@sortas) or @sortas = ""]))'>
|
||||
|
||||
|
||||
<!ENTITY section '(ancestor-or-self::set|ancestor-or-self::book|ancestor-or-self::part|ancestor-or-self::reference|ancestor-or-self::partintro|ancestor-or-self::chapter|ancestor-or-self::appendix|ancestor-or-self::preface|ancestor-or-self::article|ancestor-or-self::section|ancestor-or-self::sect1|ancestor-or-self::sect2|ancestor-or-self::sect3|ancestor-or-self::sect4|ancestor-or-self::sect5|ancestor-or-self::refentry|ancestor-or-self::refsect1|ancestor-or-self::refsect2|ancestor-or-self::refsect3|ancestor-or-self::simplesect|ancestor-or-self::bibliography|ancestor-or-self::glossary|ancestor-or-self::index|ancestor-or-self::webpage)[last()]'>
|
||||
|
||||
<!ENTITY section.id 'generate-id(§ion;)'>
|
||||
<!ENTITY sep '" "'>
|
||||
|
||||
<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node()) and ($role = @role or $type = @type or (string-length($role) = 0 and string-length($type) = 0))'>
|
||||
|
||||
<!ENTITY setup-language-variable '
|
||||
<xsl:variable name="language" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="lowercase" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key">normalize.sort.input</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="uppercase" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key">normalize.sort.output</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
'>
|
||||
|
||||
<!-- Entity used in html/inline.xsl and fo/inline.xsl -->
|
||||
<!ENTITY comment.block.parents "parent::answer|parent::appendix|parent::article|parent::bibliodiv|
|
||||
parent::bibliography|parent::blockquote|parent::caution|parent::chapter|
|
||||
parent::glossary|parent::glossdiv|parent::important|parent::index|
|
||||
parent::indexdiv|parent::listitem|parent::note|parent::orderedlist|
|
||||
parent::partintro|parent::preface|parent::procedure|parent::qandadiv|
|
||||
parent::qandaset|parent::question|parent::refentry|parent::refnamediv|
|
||||
parent::refsect1|parent::refsect2|parent::refsect3|parent::refsection|
|
||||
parent::refsynopsisdiv|parent::sect1|parent::sect2|parent::sect3|parent::sect4|
|
||||
parent::sect5|parent::section|parent::setindex|parent::sidebar|
|
||||
parent::simplesect|parent::taskprerequisites|parent::taskrelated|
|
||||
parent::tasksummary|parent::warning">
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/eo.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/eo.xml
Normal file
File diff suppressed because it is too large
Load Diff
670
doc/reference/lib/docbook-xsl-snapshot/common/es.xml
Normal file
670
doc/reference/lib/docbook-xsl-snapshot/common/es.xml
Normal file
@@ -0,0 +1,670 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="es" english-language-name="Spanish">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/es.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited es.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Resumen"/>
|
||||
<l:gentext key="abstract" text="resumen"/>
|
||||
<l:gentext key="Answer" text="R:"/>
|
||||
<l:gentext key="answer" text="r:"/>
|
||||
<l:gentext key="Appendix" text="Apéndice"/>
|
||||
<l:gentext key="appendix" text="apéndice"/>
|
||||
<l:gentext key="Article" text="Artículo"/>
|
||||
<l:gentext key="article" text="artículo"/>
|
||||
<l:gentext key="Author" text="Autor"/>
|
||||
<l:gentext key="Bibliography" text="Bibliografía"/>
|
||||
<l:gentext key="bibliography" text="bibliografía"/>
|
||||
<l:gentext key="Book" text="Libro"/>
|
||||
<l:gentext key="book" text="libro"/>
|
||||
<l:gentext key="CAUTION" text="ATENCIÓN"/>
|
||||
<l:gentext key="Caution" text="Atención"/>
|
||||
<l:gentext key="caution" text="atención"/>
|
||||
<l:gentext key="Chapter" text="Capítulo"/>
|
||||
<l:gentext key="chapter" text="capítulo"/>
|
||||
<l:gentext key="Colophon" text="Colofón"/>
|
||||
<l:gentext key="colophon" text="colofón"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="copyright"/>
|
||||
<l:gentext key="Dedication" text="Dedicatoria"/>
|
||||
<l:gentext key="dedication" text="dedicatoria"/>
|
||||
<l:gentext key="Edition" text="Edición"/>
|
||||
<l:gentext key="edition" text="edición"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Ecuación"/>
|
||||
<l:gentext key="equation" text="ecuación"/>
|
||||
<l:gentext key="Example" text="Ejemplo"/>
|
||||
<l:gentext key="example" text="ejemplo"/>
|
||||
<l:gentext key="Figure" text="Figura"/>
|
||||
<l:gentext key="figure" text="figura"/>
|
||||
<l:gentext key="Glossary" text="Glosario"/>
|
||||
<l:gentext key="glossary" text="glosario"/>
|
||||
<l:gentext key="GlossSee" text="Ver"/>
|
||||
<l:gentext key="glosssee" text="ver"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Ver también"/>
|
||||
<l:gentext key="glossseealso" text="ver también"/>
|
||||
<l:gentext key="IMPORTANT" text="IMPORTANTE"/>
|
||||
<l:gentext key="important" text="importante"/>
|
||||
<l:gentext key="Important" text="Importante"/>
|
||||
<l:gentext key="Index" text="Índice"/>
|
||||
<l:gentext key="index" text="índice"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="isbn"/>
|
||||
<l:gentext key="LegalNotice" text="Aviso Legal"/>
|
||||
<l:gentext key="legalnotice" text="aviso legal"/>
|
||||
<l:gentext key="MsgAud" text="Audiencia"/>
|
||||
<l:gentext key="msgaud" text="audiencia"/>
|
||||
<l:gentext key="MsgLevel" text="Nivel"/>
|
||||
<l:gentext key="msglevel" text="nivel"/>
|
||||
<l:gentext key="MsgOrig" text="Origen"/>
|
||||
<l:gentext key="msgorig" text="origen"/>
|
||||
<l:gentext key="NOTE" text="NOTA"/>
|
||||
<l:gentext key="Note" text="Nota"/>
|
||||
<l:gentext key="note" text="nota"/>
|
||||
<l:gentext key="Part" text="Parte"/>
|
||||
<l:gentext key="part" text="parte"/>
|
||||
<l:gentext key="Preface" text="Prefacio"/>
|
||||
<l:gentext key="preface" text="prefacio"/>
|
||||
<l:gentext key="Procedure" text="Procedimiento"/>
|
||||
<l:gentext key="procedure" text="procedimiento"/>
|
||||
<l:gentext key="ProductionSet" text="Producción"/>
|
||||
<l:gentext key="PubDate" text="Fecha de publicación"/>
|
||||
<l:gentext key="pubdate" text="fecha de publicación"/>
|
||||
<l:gentext key="Published" text="Publicado"/>
|
||||
<l:gentext key="published" text="publicado"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="P y R"/>
|
||||
<l:gentext key="qandadiv" text="P y R"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="P:"/>
|
||||
<l:gentext key="question" text="p:"/>
|
||||
<l:gentext key="RefEntry" text="Entrada de referencia"/>
|
||||
<l:gentext key="refentry" text="entrada de referencia"/>
|
||||
<l:gentext key="Reference" text="Referencia"/>
|
||||
<l:gentext key="reference" text="referencia"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Nombre de referencia"/>
|
||||
<l:gentext key="refname" text="nombre de referencia"/>
|
||||
<l:gentext key="RefSection" text="Sección de referencia"/>
|
||||
<l:gentext key="refsection" text="sección de referencia"/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Sinopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="sinopsis"/>
|
||||
<l:gentext key="RevHistory" text="Historial de revisiones"/>
|
||||
<l:gentext key="revhistory" text="Historial de revisiones"/>
|
||||
<l:gentext key="revision" text="revisión"/>
|
||||
<l:gentext key="Revision" text="Revisión"/>
|
||||
<l:gentext key="sect1" text="Sección"/>
|
||||
<l:gentext key="sect2" text="Sección"/>
|
||||
<l:gentext key="sect3" text="Sección"/>
|
||||
<l:gentext key="sect4" text="Sección"/>
|
||||
<l:gentext key="sect5" text="Sección"/>
|
||||
<l:gentext key="section" text="sección"/>
|
||||
<l:gentext key="Section" text="Sección"/>
|
||||
<l:gentext key="see" text="ver"/>
|
||||
<l:gentext key="See" text="Ver"/>
|
||||
<l:gentext key="seealso" text="ver también"/>
|
||||
<l:gentext key="Seealso" text="Ver también"/>
|
||||
<l:gentext key="SeeAlso" text="Ver También"/>
|
||||
<l:gentext key="set" text="conjunto"/>
|
||||
<l:gentext key="Set" text="Conjunto"/>
|
||||
<l:gentext key="setindex" text="índice del conjunto"/>
|
||||
<l:gentext key="SetIndex" text="Índice del Conjunto"/>
|
||||
<l:gentext key="Sidebar" text="Barra lateral"/>
|
||||
<l:gentext key="sidebar" text="barra lateral"/>
|
||||
<l:gentext key="step" text="paso"/>
|
||||
<l:gentext key="Step" text="Paso"/>
|
||||
<l:gentext key="table" text="tabla"/>
|
||||
<l:gentext key="Table" text="Tabla"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="sugerencia"/>
|
||||
<l:gentext key="TIP" text="SUGERENCIA"/>
|
||||
<l:gentext key="Tip" text="Sugerencia"/>
|
||||
<l:gentext key="Warning" text="Aviso"/>
|
||||
<l:gentext key="warning" text="aviso"/>
|
||||
<l:gentext key="WARNING" text="AVISO"/>
|
||||
<l:gentext key="and" text="y"/>
|
||||
<l:gentext key="by" text="por"/>
|
||||
<l:gentext key="Edited" text="Editado"/>
|
||||
<l:gentext key="edited" text="editado"/>
|
||||
<l:gentext key="Editedby" text="Editado por"/>
|
||||
<l:gentext key="editedby" text="editado por"/>
|
||||
<l:gentext key="in" text="en"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="elemento inexistente"/>
|
||||
<l:gentext key="notes" text="notas"/>
|
||||
<l:gentext key="Notes" text="Notas"/>
|
||||
<l:gentext key="Pgs" text="Págs."/>
|
||||
<l:gentext key="pgs" text="págs."/>
|
||||
<l:gentext key="Revisedby" text="Revisado por: "/>
|
||||
<l:gentext key="revisedby" text="revisado por: "/>
|
||||
<l:gentext key="TableNotes" text="Notas de tabla"/>
|
||||
<l:gentext key="tablenotes" text="notas de tabla"/>
|
||||
<l:gentext key="TableofContents" text="Tabla de contenidos"/>
|
||||
<l:gentext key="tableofcontents" text="tabla de contenidos"/>
|
||||
<l:gentext key="unexpectedelementname" text="nombre de elemento inesperado"/>
|
||||
<l:gentext key="unsupported" text="no soportado"/>
|
||||
<l:gentext key="xrefto" text="referencia a"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="lista de ecuaciones"/>
|
||||
<l:gentext key="ListofEquations" text="Lista de ecuaciones"/>
|
||||
<l:gentext key="ListofExamples" text="Lista de ejemplos"/>
|
||||
<l:gentext key="listofexamples" text="lista de ejemplos"/>
|
||||
<l:gentext key="ListofFigures" text="Lista de figuras"/>
|
||||
<l:gentext key="listoffigures" text="lista de figuras"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="lista de tablas"/>
|
||||
<l:gentext key="ListofTables" text="Lista de tablas"/>
|
||||
<l:gentext key="ListofUnknown" text="Lista de desconocido"/>
|
||||
<l:gentext key="listofunknown" text="lista de desconocido"/>
|
||||
<l:gentext key="nav-home" text="Inicio"/>
|
||||
<l:gentext key="nav-next" text="Siguiente"/>
|
||||
<l:gentext key="nav-next-sibling" text="Avanzar"/>
|
||||
<l:gentext key="nav-prev" text="Anterior"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Retroceder"/>
|
||||
<l:gentext key="nav-up" text="Subir"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Borrador"/>
|
||||
<l:gentext key="above" text="arriba"/>
|
||||
<l:gentext key="below" text="abajo"/>
|
||||
<l:gentext key="sectioncalled" text="sección llamada"/>
|
||||
<l:gentext key="index symbols" text="Símbolos"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzáéíóúñ"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÁÉÍÓÚÑ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Apéndice %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Capítulo %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Ecuación %n. %t"/>
|
||||
<l:template name="example" text="Ejemplo %n. %t"/>
|
||||
<l:template name="figure" text="Figura %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Parte %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procedimiento %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Producción %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabla %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Apéndice %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Capítulo %n. %t"/>
|
||||
<l:template name="part" text="Parte %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="R: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="“%t”"/>
|
||||
<l:template name="refsection" text="“%t”"/>
|
||||
<l:template name="refsect1" text="“%t”"/>
|
||||
<l:template name="refsect2" text="“%t”"/>
|
||||
<l:template name="refsect3" text="“%t”"/>
|
||||
<l:template name="sect1" text="“%t”"/>
|
||||
<l:template name="sect2" text="“%t”"/>
|
||||
<l:template name="sect3" text="“%t”"/>
|
||||
<l:template name="sect4" text="“%t”"/>
|
||||
<l:template name="sect5" text="“%t”"/>
|
||||
<l:template name="section" text="“%t”"/>
|
||||
<l:template name="simplesect" text="“%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="R: %n"/>
|
||||
<l:template name="appendix" text="Apéndice %n"/>
|
||||
<l:template name="bridgehead" text="Sección %n"/>
|
||||
<l:template name="chapter" text="Capítulo %n"/>
|
||||
<l:template name="equation" text="Ecuación %n"/>
|
||||
<l:template name="example" text="Ejemplo %n"/>
|
||||
<l:template name="figure" text="Figura %n"/>
|
||||
<l:template name="part" text="Parte %n"/>
|
||||
<l:template name="procedure" text="Procedimiento %n"/>
|
||||
<l:template name="productionset" text="Producción %n"/>
|
||||
<l:template name="qandadiv" text="P y R %n"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="sect1" text="Sección %n"/>
|
||||
<l:template name="sect2" text="Sección %n"/>
|
||||
<l:template name="sect3" text="Sección %n"/>
|
||||
<l:template name="sect4" text="Sección %n"/>
|
||||
<l:template name="sect5" text="Sección %n"/>
|
||||
<l:template name="section" text="Sección %n"/>
|
||||
<l:template name="table" text="Tabla %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Apéndice %n, %t"/>
|
||||
<l:template name="bridgehead" text="Sección %n, “%t”"/>
|
||||
<l:template name="chapter" text="Capítulo %n, %t"/>
|
||||
<l:template name="equation" text="Ecuación %n, “%t”"/>
|
||||
<l:template name="example" text="Ejemplo %n, “%t”"/>
|
||||
<l:template name="figure" text="Figura %n, “%t”"/>
|
||||
<l:template name="part" text="Parte %n, “%t”"/>
|
||||
<l:template name="procedure" text="Procedimiento %n, “%t”"/>
|
||||
<l:template name="productionset" text="Producción %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="P y R %n, “%t”"/>
|
||||
<l:template name="refsect1" text="sección llamada “%t”"/>
|
||||
<l:template name="refsect2" text="sección llamada “%t”"/>
|
||||
<l:template name="refsect3" text="sección llamada “%t”"/>
|
||||
<l:template name="refsection" text="sección llamada “%t”"/>
|
||||
<l:template name="sect1" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect2" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect3" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect4" text="Sección %n, “%t”"/>
|
||||
<l:template name="sect5" text="Sección %n, “%t”"/>
|
||||
<l:template name="section" text="Sección %n, “%t”"/>
|
||||
<l:template name="simplesect" text="sección llamada “%t”"/>
|
||||
<l:template name="table" text="Tabla %n, “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" y "/>
|
||||
<l:template name="seplast" text=", y "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Ver %t"/>
|
||||
<l:template name="seealso" text="Ver también %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Audiencia: "/>
|
||||
<l:template name="MsgLevel" text="Nivel: "/>
|
||||
<l:template name="MsgOrig" text="Origen: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="m/d/Y" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="January" lang="en"/>
|
||||
<l:template name="February" text="February" lang="en"/>
|
||||
<l:template name="March" text="March" lang="en"/>
|
||||
<l:template name="April" text="April" lang="en"/>
|
||||
<l:template name="May" text="May" lang="en"/>
|
||||
<l:template name="June" text="June" lang="en"/>
|
||||
<l:template name="July" text="July" lang="en"/>
|
||||
<l:template name="August" text="August" lang="en"/>
|
||||
<l:template name="September" text="September" lang="en"/>
|
||||
<l:template name="October" text="October" lang="en"/>
|
||||
<l:template name="November" text="November" lang="en"/>
|
||||
<l:template name="December" text="December" lang="en"/>
|
||||
<l:template name="Monday" text="Monday" lang="en"/>
|
||||
<l:template name="Tuesday" text="Tuesday" lang="en"/>
|
||||
<l:template name="Wednesday" text="Wednesday" lang="en"/>
|
||||
<l:template name="Thursday" text="Thursday" lang="en"/>
|
||||
<l:template name="Friday" text="Friday" lang="en"/>
|
||||
<l:template name="Saturday" text="Saturday" lang="en"/>
|
||||
<l:template name="Sunday" text="Sunday" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Jan" lang="en"/>
|
||||
<l:template name="Feb" text="Feb" lang="en"/>
|
||||
<l:template name="Mar" text="Mar" lang="en"/>
|
||||
<l:template name="Apr" text="Apr" lang="en"/>
|
||||
<l:template name="May" text="May" lang="en"/>
|
||||
<l:template name="Jun" text="Jun" lang="en"/>
|
||||
<l:template name="Jul" text="Jul" lang="en"/>
|
||||
<l:template name="Aug" text="Aug" lang="en"/>
|
||||
<l:template name="Sep" text="Sep" lang="en"/>
|
||||
<l:template name="Oct" text="Oct" lang="en"/>
|
||||
<l:template name="Nov" text="Nov" lang="en"/>
|
||||
<l:template name="Dec" text="Dec" lang="en"/>
|
||||
<l:template name="Mon" text="Mon" lang="en"/>
|
||||
<l:template name="Tue" text="Tue" lang="en"/>
|
||||
<l:template name="Wed" text="Wed" lang="en"/>
|
||||
<l:template name="Thu" text="Thu" lang="en"/>
|
||||
<l:template name="Fri" text="Fri" lang="en"/>
|
||||
<l:template name="Sat" text="Sat" lang="en"/>
|
||||
<l:template name="Sun" text="Sun" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x040a Spanish (Traditional Sort)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Símbolos</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">á</l:l>
|
||||
<l:l i="1">Á</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">CH</l:l>
|
||||
<l:l i="4">ch</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="6">E</l:l>
|
||||
<l:l i="6">e</l:l>
|
||||
<l:l i="6">É</l:l>
|
||||
<l:l i="6">é</l:l>
|
||||
<l:l i="7">F</l:l>
|
||||
<l:l i="7">f</l:l>
|
||||
<l:l i="8">G</l:l>
|
||||
<l:l i="8">g</l:l>
|
||||
<l:l i="9">H</l:l>
|
||||
<l:l i="9">h</l:l>
|
||||
<l:l i="10">I</l:l>
|
||||
<l:l i="10">i</l:l>
|
||||
<l:l i="10">Í</l:l>
|
||||
<l:l i="10">í</l:l>
|
||||
<l:l i="11">J</l:l>
|
||||
<l:l i="11">j</l:l>
|
||||
<l:l i="12">K</l:l>
|
||||
<l:l i="12">k</l:l>
|
||||
<l:l i="13">L</l:l>
|
||||
<l:l i="13">l</l:l>
|
||||
<l:l i="14">LL</l:l>
|
||||
<l:l i="14">ll</l:l>
|
||||
<l:l i="15">M</l:l>
|
||||
<l:l i="15">m</l:l>
|
||||
<l:l i="16">N</l:l>
|
||||
<l:l i="16">n</l:l>
|
||||
<l:l i="17">Ñ</l:l>
|
||||
<l:l i="17">ñ</l:l>
|
||||
<l:l i="18">O</l:l>
|
||||
<l:l i="18">o</l:l>
|
||||
<l:l i="18">Ó</l:l>
|
||||
<l:l i="18">ó</l:l>
|
||||
<l:l i="19">P</l:l>
|
||||
<l:l i="19">p</l:l>
|
||||
<l:l i="20">Q</l:l>
|
||||
<l:l i="20">q</l:l>
|
||||
<l:l i="21">R</l:l>
|
||||
<l:l i="21">r</l:l>
|
||||
<l:l i="22">S</l:l>
|
||||
<l:l i="22">s</l:l>
|
||||
<l:l i="23">T</l:l>
|
||||
<l:l i="23">t</l:l>
|
||||
<l:l i="24">U</l:l>
|
||||
<l:l i="24">u</l:l>
|
||||
<l:l i="24">Ú</l:l>
|
||||
<l:l i="24">ú</l:l>
|
||||
<l:l i="25">V</l:l>
|
||||
<l:l i="25">v</l:l>
|
||||
<l:l i="26">W</l:l>
|
||||
<l:l i="26">w</l:l>
|
||||
<l:l i="27">X</l:l>
|
||||
<l:l i="27">x</l:l>
|
||||
<l:l i="28">Y</l:l>
|
||||
<l:l i="28">y</l:l>
|
||||
<l:l i="29">Z</l:l>
|
||||
<l:l i="29">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/et.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/et.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/eu.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/eu.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/fa.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/fa.xml
Normal file
File diff suppressed because it is too large
Load Diff
664
doc/reference/lib/docbook-xsl-snapshot/common/fi.xml
Normal file
664
doc/reference/lib/docbook-xsl-snapshot/common/fi.xml
Normal file
@@ -0,0 +1,664 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="fi" english-language-name="Finnish">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/fi.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited fi.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Tiivistelmä"/>
|
||||
<l:gentext key="abstract" text="tiivistelmä"/>
|
||||
<l:gentext key="Answer" text="V:"/>
|
||||
<l:gentext key="answer" text="V:"/>
|
||||
<l:gentext key="Appendix" text="Liite"/>
|
||||
<l:gentext key="appendix" text="liite"/>
|
||||
<l:gentext key="Article" text="Artikkeli"/>
|
||||
<l:gentext key="article" text="Artikkeli"/>
|
||||
<l:gentext key="Author" text="Author" lang="en"/>
|
||||
<l:gentext key="Bibliography" text="Lähteet"/>
|
||||
<l:gentext key="bibliography" text="Lähteet"/>
|
||||
<l:gentext key="Book" text="Kirja"/>
|
||||
<l:gentext key="book" text="Kirja"/>
|
||||
<l:gentext key="CAUTION" text="VARO"/>
|
||||
<l:gentext key="Caution" text="Varo"/>
|
||||
<l:gentext key="caution" text="varo"/>
|
||||
<l:gentext key="Chapter" text="Luku"/>
|
||||
<l:gentext key="chapter" text="luku"/>
|
||||
<l:gentext key="Colophon" text="Colophon"/>
|
||||
<l:gentext key="colophon" text="Colophon"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Omistus"/>
|
||||
<l:gentext key="dedication" text="omistus"/>
|
||||
<l:gentext key="Edition" text="Edition"/>
|
||||
<l:gentext key="edition" text="Edition"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Kaava"/>
|
||||
<l:gentext key="equation" text="Kaava"/>
|
||||
<l:gentext key="Example" text="Esimerkki"/>
|
||||
<l:gentext key="example" text="esimerkki"/>
|
||||
<l:gentext key="Figure" text="Kuva"/>
|
||||
<l:gentext key="figure" text="kuva"/>
|
||||
<l:gentext key="Glossary" text="Sanasto"/>
|
||||
<l:gentext key="glossary" text="sanasto"/>
|
||||
<l:gentext key="GlossSee" text="Katso"/>
|
||||
<l:gentext key="glosssee" text="katso"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Katso myös"/>
|
||||
<l:gentext key="glossseealso" text="Katso myös"/>
|
||||
<l:gentext key="IMPORTANT" text="TÄRKEÄÄ"/>
|
||||
<l:gentext key="important" text="tärkeää"/>
|
||||
<l:gentext key="Important" text="Tärkeää"/>
|
||||
<l:gentext key="Index" text="Indeksi"/>
|
||||
<l:gentext key="index" text="Indeksi"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Oikeudellinen ilmoitus"/>
|
||||
<l:gentext key="legalnotice" text="oikeudellinen ilmoitus"/>
|
||||
<l:gentext key="MsgAud" text="Yleisö"/>
|
||||
<l:gentext key="msgaud" text="Yleisö"/>
|
||||
<l:gentext key="MsgLevel" text="Taso"/>
|
||||
<l:gentext key="msglevel" text="Taso"/>
|
||||
<l:gentext key="MsgOrig" text="Alkuperä"/>
|
||||
<l:gentext key="msgorig" text="Alkuperä"/>
|
||||
<l:gentext key="NOTE" text="HUOMAA"/>
|
||||
<l:gentext key="Note" text="Huomaa"/>
|
||||
<l:gentext key="note" text="Huomaa"/>
|
||||
<l:gentext key="Part" text="Osa"/>
|
||||
<l:gentext key="part" text="Osa"/>
|
||||
<l:gentext key="Preface" text="Esipuhe"/>
|
||||
<l:gentext key="preface" text="Esipuhe"/>
|
||||
<l:gentext key="Procedure" text="Aliohjelma"/>
|
||||
<l:gentext key="procedure" text="Aliohjelma"/>
|
||||
<l:gentext key="ProductionSet" text="Production"/>
|
||||
<l:gentext key="PubDate" text="Publication Date" lang="en"/>
|
||||
<l:gentext key="pubdate" text="Publication date" lang="en"/>
|
||||
<l:gentext key="Published" text="Julkaistu"/>
|
||||
<l:gentext key="published" text="Julkaistu"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="K ja V"/>
|
||||
<l:gentext key="qandadiv" text="K ja V"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="K:"/>
|
||||
<l:gentext key="question" text="K:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Lähdeluettelo"/>
|
||||
<l:gentext key="reference" text="Lähdeluettelo"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Nimi"/>
|
||||
<l:gentext key="refname" text="Nimi"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Versiohistoria"/>
|
||||
<l:gentext key="revhistory" text="Versiohistoria"/>
|
||||
<l:gentext key="revision" text="Versio"/>
|
||||
<l:gentext key="Revision" text="Versio"/>
|
||||
<l:gentext key="sect1" text="Luku"/>
|
||||
<l:gentext key="sect2" text="Luku"/>
|
||||
<l:gentext key="sect3" text="Luku"/>
|
||||
<l:gentext key="sect4" text="Luku"/>
|
||||
<l:gentext key="sect5" text="Luku"/>
|
||||
<l:gentext key="section" text="kohta"/>
|
||||
<l:gentext key="Section" text="Kohta"/>
|
||||
<l:gentext key="see" text="Katso"/>
|
||||
<l:gentext key="See" text="Katso"/>
|
||||
<l:gentext key="seealso" text="katso myös"/>
|
||||
<l:gentext key="Seealso" text="Katso myös"/>
|
||||
<l:gentext key="SeeAlso" text="Katso myös"/>
|
||||
<l:gentext key="set" text="Kokoelma"/>
|
||||
<l:gentext key="Set" text="Kokoelma"/>
|
||||
<l:gentext key="setindex" text="Kokoelman indeksi"/>
|
||||
<l:gentext key="SetIndex" text="Kokoelman indeksi"/>
|
||||
<l:gentext key="Sidebar" text="Sivupalkki"/>
|
||||
<l:gentext key="sidebar" text="sivupalkki"/>
|
||||
<l:gentext key="step" text="step"/>
|
||||
<l:gentext key="Step" text="Step"/>
|
||||
<l:gentext key="table" text="Taulu"/>
|
||||
<l:gentext key="Table" text="Taulu"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Vihje"/>
|
||||
<l:gentext key="TIP" text="VIHJE"/>
|
||||
<l:gentext key="Tip" text="Vihje"/>
|
||||
<l:gentext key="Warning" text="Varoitus"/>
|
||||
<l:gentext key="warning" text="Varoitus"/>
|
||||
<l:gentext key="WARNING" text="VAROITUS"/>
|
||||
<l:gentext key="and" text="ja"/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Toim."/>
|
||||
<l:gentext key="edited" text="Toim."/>
|
||||
<l:gentext key="Editedby" text="Toimittanut"/>
|
||||
<l:gentext key="editedby" text="Toimittanut"/>
|
||||
<l:gentext key="in" text="teoksessa"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="elementtiä ei ole olemassa"/>
|
||||
<l:gentext key="notes" text=""/>
|
||||
<l:gentext key="Notes" text=""/>
|
||||
<l:gentext key="Pgs" text="Sivut"/>
|
||||
<l:gentext key="pgs" text="Sivut"/>
|
||||
<l:gentext key="Revisedby" text="Muokannut: "/>
|
||||
<l:gentext key="revisedby" text="muokannut: "/>
|
||||
<l:gentext key="TableNotes" text=""/>
|
||||
<l:gentext key="tablenotes" text=""/>
|
||||
<l:gentext key="TableofContents" text="Sisällys"/>
|
||||
<l:gentext key="tableofcontents" text="Sisällys"/>
|
||||
<l:gentext key="unexpectedelementname" text="Odottamaton elementin nimi"/>
|
||||
<l:gentext key="unsupported" text="ei tueta"/>
|
||||
<l:gentext key="xrefto" text="xref johonkin"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Luettelo esimerkeistä"/>
|
||||
<l:gentext key="ListofEquations" text="Luettelo esimerkeistä"/>
|
||||
<l:gentext key="ListofExamples" text="Luettelo esimerkeistä"/>
|
||||
<l:gentext key="listofexamples" text="Luettelo esimerkeistä"/>
|
||||
<l:gentext key="ListofFigures" text="Luettelo kuvista"/>
|
||||
<l:gentext key="listoffigures" text="Luettelo kuvista"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="Luettelo tauluista"/>
|
||||
<l:gentext key="ListofTables" text="Luettelo tauluista"/>
|
||||
<l:gentext key="ListofUnknown" text="Luettelo tuntemattomista"/>
|
||||
<l:gentext key="listofunknown" text="Luettelo tuntemattomista"/>
|
||||
<l:gentext key="nav-home" text="Alkuun"/>
|
||||
<l:gentext key="nav-next" text="Seuraava"/>
|
||||
<l:gentext key="nav-next-sibling" text="Nopeasti eteenpäin"/>
|
||||
<l:gentext key="nav-prev" text="Edellinen"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Nopeasti taaksepäin"/>
|
||||
<l:gentext key="nav-up" text="Ylös"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Luonnos"/>
|
||||
<l:gentext key="above" text="yllä"/>
|
||||
<l:gentext key="below" text="alla"/>
|
||||
<l:gentext key="sectioncalled" text="luku nimeltä"/>
|
||||
<l:gentext key="index symbols" text="Symbols"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzåäöšž"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖŠŽ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="”"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="’"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Liite %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Luku %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Kaava %n. %t"/>
|
||||
<l:template name="example" text="Esimerkki %n. %t"/>
|
||||
<l:template name="figure" text="Kuva %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Osa %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Aliohjelma %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Taulu %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Liite %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="Luku %n. %t"/>
|
||||
<l:template name="part" text="Osa %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="V: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="K: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="K: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(sivu %p)"/>
|
||||
<l:template name="docname" text=" kirjoitelmassa %o"/>
|
||||
<l:template name="docnamelong" text=" kirjoitelmassa otsikoltaan %o"/>
|
||||
<l:template name="pageabbrev" text="(s. %p)"/>
|
||||
<l:template name="Page" text="Sivu %p"/>
|
||||
<l:template name="bridgehead" text="”%t”"/>
|
||||
<l:template name="refsection" text="”%t”"/>
|
||||
<l:template name="refsect1" text="”%t”"/>
|
||||
<l:template name="refsect2" text="”%t”"/>
|
||||
<l:template name="refsect3" text="”%t”"/>
|
||||
<l:template name="sect1" text="”%t”"/>
|
||||
<l:template name="sect2" text="”%t”"/>
|
||||
<l:template name="sect3" text="”%t”"/>
|
||||
<l:template name="sect4" text="”%t”"/>
|
||||
<l:template name="sect5" text="”%t”"/>
|
||||
<l:template name="section" text="”%t”"/>
|
||||
<l:template name="simplesect" text="”%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="V: %n"/>
|
||||
<l:template name="appendix" text="Liite %n"/>
|
||||
<l:template name="bridgehead" text="Kohta %n"/>
|
||||
<l:template name="chapter" text="Luku %n"/>
|
||||
<l:template name="equation" text="Kaava %n"/>
|
||||
<l:template name="example" text="Esimerkki %n"/>
|
||||
<l:template name="figure" text="Kuva %n"/>
|
||||
<l:template name="part" text="Osa %n"/>
|
||||
<l:template name="procedure" text="Aliohjelma %n"/>
|
||||
<l:template name="productionset" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="K ja V %n"/>
|
||||
<l:template name="qandaentry" text="K: %n"/>
|
||||
<l:template name="question" text="K: %n"/>
|
||||
<l:template name="sect1" text="Kohta %n"/>
|
||||
<l:template name="sect2" text="Kohta %n"/>
|
||||
<l:template name="sect3" text="Kohta %n"/>
|
||||
<l:template name="sect4" text="Kohta %n"/>
|
||||
<l:template name="sect5" text="Kohta %n"/>
|
||||
<l:template name="section" text="Kohta %n"/>
|
||||
<l:template name="table" text="Taulu %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Liite %n, %t"/>
|
||||
<l:template name="bridgehead" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="chapter" text="Luku %n, %t"/>
|
||||
<l:template name="equation" text="Kaava %n, ”%t”"/>
|
||||
<l:template name="example" text="Esimerkki %n, ”%t”"/>
|
||||
<l:template name="figure" text="Kuva %n, ”%t”"/>
|
||||
<l:template name="part" text="Osa %n, ”%t”"/>
|
||||
<l:template name="procedure" text="Aliohjelma %n, ”%t”"/>
|
||||
<l:template name="productionset" text="Production %n, ”%t”"/>
|
||||
<l:template name="qandadiv" text="K ja V %n, ”%t”"/>
|
||||
<l:template name="refsect1" text="luku nimeltä ”%t”"/>
|
||||
<l:template name="refsect2" text="luku nimeltä ”%t”"/>
|
||||
<l:template name="refsect3" text="luku nimeltä ”%t”"/>
|
||||
<l:template name="refsection" text="luku nimeltä ”%t”"/>
|
||||
<l:template name="sect1" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="sect2" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="sect3" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="sect4" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="sect5" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="section" text="Kohta %n, ”%t”"/>
|
||||
<l:template name="simplesect" text="luku nimeltä ”%t”"/>
|
||||
<l:template name="table" text="Taulu %n, ”%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" ja "/>
|
||||
<l:template name="seplast" text=", ja "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Katso %t"/>
|
||||
<l:template name="seealso" text="Katso myös %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Yleisö: "/>
|
||||
<l:template name="MsgLevel" text="Taso: "/>
|
||||
<l:template name="MsgOrig" text="Alkuperä: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text=""/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text=""/>
|
||||
<l:template name="February" text=""/>
|
||||
<l:template name="March" text=""/>
|
||||
<l:template name="April" text=""/>
|
||||
<l:template name="May" text=""/>
|
||||
<l:template name="June" text=""/>
|
||||
<l:template name="July" text=""/>
|
||||
<l:template name="August" text=""/>
|
||||
<l:template name="September" text=""/>
|
||||
<l:template name="October" text=""/>
|
||||
<l:template name="November" text=""/>
|
||||
<l:template name="December" text=""/>
|
||||
<l:template name="Monday" text=""/>
|
||||
<l:template name="Tuesday" text=""/>
|
||||
<l:template name="Wednesday" text=""/>
|
||||
<l:template name="Thursday" text=""/>
|
||||
<l:template name="Friday" text=""/>
|
||||
<l:template name="Saturday" text=""/>
|
||||
<l:template name="Sunday" text=""/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text=""/>
|
||||
<l:template name="Feb" text=""/>
|
||||
<l:template name="Mar" text=""/>
|
||||
<l:template name="Apr" text=""/>
|
||||
<l:template name="May" text=""/>
|
||||
<l:template name="Jun" text=""/>
|
||||
<l:template name="Jul" text=""/>
|
||||
<l:template name="Aug" text=""/>
|
||||
<l:template name="Sep" text=""/>
|
||||
<l:template name="Oct" text=""/>
|
||||
<l:template name="Nov" text=""/>
|
||||
<l:template name="Dec" text=""/>
|
||||
<l:template name="Mon" text=""/>
|
||||
<l:template name="Tue" text=""/>
|
||||
<l:template name="Wed" text=""/>
|
||||
<l:template name="Thu" text=""/>
|
||||
<l:template name="Fri" text=""/>
|
||||
<l:template name="Sat" text=""/>
|
||||
<l:template name="Sun" text=""/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x040b Finnish"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Symbole</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">Š</l:l>
|
||||
<l:l i="20">š</l:l>
|
||||
<l:l i="21">T</l:l>
|
||||
<l:l i="21">t</l:l>
|
||||
<l:l i="22">U</l:l>
|
||||
<l:l i="22">u</l:l>
|
||||
<l:l i="23">V</l:l>
|
||||
<l:l i="23">v</l:l>
|
||||
<l:l i="24">W</l:l>
|
||||
<l:l i="24">w</l:l>
|
||||
<l:l i="25">X</l:l>
|
||||
<l:l i="25">x</l:l>
|
||||
<l:l i="26">Y</l:l>
|
||||
<l:l i="26">y</l:l>
|
||||
<l:l i="27">Z</l:l>
|
||||
<l:l i="27">z</l:l>
|
||||
<l:l i="28">Ž</l:l>
|
||||
<l:l i="28">ž</l:l>
|
||||
<l:l i="29">Å</l:l>
|
||||
<l:l i="29">å</l:l>
|
||||
<l:l i="30">Ä</l:l>
|
||||
<l:l i="30">ä</l:l>
|
||||
<l:l i="31">Ö</l:l>
|
||||
<l:l i="31">ö</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
684
doc/reference/lib/docbook-xsl-snapshot/common/fr.xml
Normal file
684
doc/reference/lib/docbook-xsl-snapshot/common/fr.xml
Normal file
@@ -0,0 +1,684 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="fr" english-language-name="French">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/fr.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited fr.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Résumé"/>
|
||||
<l:gentext key="abstract" text="Résumé"/>
|
||||
<l:gentext key="Answer" text="R :"/>
|
||||
<l:gentext key="answer" text="R :"/>
|
||||
<l:gentext key="Appendix" text="Annexe"/>
|
||||
<l:gentext key="appendix" text="annexe"/>
|
||||
<l:gentext key="Article" text="Article"/>
|
||||
<l:gentext key="article" text="Article"/>
|
||||
<l:gentext key="Author" text="Auteur"/>
|
||||
<l:gentext key="Bibliography" text="Bibliographie"/>
|
||||
<l:gentext key="bibliography" text="Bibliographie"/>
|
||||
<l:gentext key="Book" text="Livre"/>
|
||||
<l:gentext key="book" text="Livre"/>
|
||||
<l:gentext key="CAUTION" text="ATTENTION"/>
|
||||
<l:gentext key="Caution" text="Attention"/>
|
||||
<l:gentext key="caution" text="Attention"/>
|
||||
<l:gentext key="Chapter" text="Chapitre"/>
|
||||
<l:gentext key="chapter" text="chapitre"/>
|
||||
<l:gentext key="Colophon" text="Achevé d'imprimer"/>
|
||||
<l:gentext key="colophon" text="Achevé d'imprimer"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Dédicace"/>
|
||||
<l:gentext key="dedication" text="Dédicace"/>
|
||||
<l:gentext key="Edition" text="Édition"/>
|
||||
<l:gentext key="edition" text="Édition"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Équation"/>
|
||||
<l:gentext key="equation" text="Équation"/>
|
||||
<l:gentext key="Example" text="Exemple"/>
|
||||
<l:gentext key="example" text="Exemple"/>
|
||||
<l:gentext key="Figure" text="Figure"/>
|
||||
<l:gentext key="figure" text="Figure"/>
|
||||
<l:gentext key="Glossary" text="Glossaire"/>
|
||||
<l:gentext key="glossary" text="Glossaire"/>
|
||||
<l:gentext key="GlossSee" text="Voir"/>
|
||||
<l:gentext key="glosssee" text="Voir"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Voir aussi"/>
|
||||
<l:gentext key="glossseealso" text="Voir aussi"/>
|
||||
<l:gentext key="IMPORTANT" text="IMPORTANT"/>
|
||||
<l:gentext key="important" text="Important"/>
|
||||
<l:gentext key="Important" text="Important"/>
|
||||
<l:gentext key="Index" text="Index"/>
|
||||
<l:gentext key="index" text="Index"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Note légale"/>
|
||||
<l:gentext key="legalnotice" text="Note légale"/>
|
||||
<l:gentext key="MsgAud" text="Public visé"/>
|
||||
<l:gentext key="msgaud" text="Public visé"/>
|
||||
<l:gentext key="MsgLevel" text="Niveau"/>
|
||||
<l:gentext key="msglevel" text="Niveau"/>
|
||||
<l:gentext key="MsgOrig" text="Origine"/>
|
||||
<l:gentext key="msgorig" text="Origine"/>
|
||||
<l:gentext key="NOTE" text="NOTE"/>
|
||||
<l:gentext key="Note" text="Note"/>
|
||||
<l:gentext key="note" text="Note"/>
|
||||
<l:gentext key="Part" text="Partie"/>
|
||||
<l:gentext key="part" text="Partie"/>
|
||||
<l:gentext key="Preface" text="Préface"/>
|
||||
<l:gentext key="preface" text="Préface"/>
|
||||
<l:gentext key="Procedure" text="Procédure"/>
|
||||
<l:gentext key="procedure" text="Procédure"/>
|
||||
<l:gentext key="ProductionSet" text="Production"/>
|
||||
<l:gentext key="PubDate" text="Date de publication"/>
|
||||
<l:gentext key="pubdate" text="Date de publication"/>
|
||||
<l:gentext key="Published" text="Publié le"/>
|
||||
<l:gentext key="published" text="Publié le"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="Q & R"/>
|
||||
<l:gentext key="qandadiv" text="Q & R"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Q :"/>
|
||||
<l:gentext key="question" text="Q :"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Référence"/>
|
||||
<l:gentext key="reference" text="Référence"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Nom"/>
|
||||
<l:gentext key="refname" text="Nom"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Historique des versions"/>
|
||||
<l:gentext key="revhistory" text="Historique des versions"/>
|
||||
<l:gentext key="revision" text="Version"/>
|
||||
<l:gentext key="Revision" text="Version"/>
|
||||
<l:gentext key="sect1" text="Section"/>
|
||||
<l:gentext key="sect2" text="Section"/>
|
||||
<l:gentext key="sect3" text="Section"/>
|
||||
<l:gentext key="sect4" text="Section"/>
|
||||
<l:gentext key="sect5" text="Section"/>
|
||||
<l:gentext key="section" text="section"/>
|
||||
<l:gentext key="Section" text="Section"/>
|
||||
<l:gentext key="see" text="voir"/>
|
||||
<l:gentext key="See" text="Voir"/>
|
||||
<l:gentext key="seealso" text="voir aussi"/>
|
||||
<l:gentext key="Seealso" text="Voir aussi"/>
|
||||
<l:gentext key="SeeAlso" text="Voir Aussi"/>
|
||||
<l:gentext key="set" text="Ensemble"/>
|
||||
<l:gentext key="Set" text="Ensemble"/>
|
||||
<l:gentext key="setindex" text="Index"/>
|
||||
<l:gentext key="SetIndex" text="Index"/>
|
||||
<l:gentext key="Sidebar" text="Filet vertical"/>
|
||||
<l:gentext key="sidebar" text="Filet vertical"/>
|
||||
<l:gentext key="step" text="étape"/>
|
||||
<l:gentext key="Step" text="Étape"/>
|
||||
<l:gentext key="table" text="Tableau"/>
|
||||
<l:gentext key="Table" text="Tableau"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="ASTUCE"/>
|
||||
<l:gentext key="TIP" text="ASTUCE"/>
|
||||
<l:gentext key="Tip" text="Astuce"/>
|
||||
<l:gentext key="Warning" text="Avertissement"/>
|
||||
<l:gentext key="warning" text="AVERTISSEMENT"/>
|
||||
<l:gentext key="WARNING" text="AVERTISSEMENT"/>
|
||||
<l:gentext key="and" text="et"/>
|
||||
<l:gentext key="by" text="par"/>
|
||||
<l:gentext key="Edited" text="Publié"/>
|
||||
<l:gentext key="edited" text="Publié"/>
|
||||
<l:gentext key="Editedby" text="Publié par"/>
|
||||
<l:gentext key="editedby" text="Publié par"/>
|
||||
<l:gentext key="in" text="dans"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="Cet élément n'existe pas"/>
|
||||
<l:gentext key="notes" text="Notes"/>
|
||||
<l:gentext key="Notes" text="Notes"/>
|
||||
<l:gentext key="Pgs" text="Pages"/>
|
||||
<l:gentext key="pgs" text="Pages"/>
|
||||
<l:gentext key="Revisedby" text="Revu et corrigé par : "/>
|
||||
<l:gentext key="revisedby" text="Revu et corrigé par : "/>
|
||||
<l:gentext key="TableNotes" text="Remarques"/>
|
||||
<l:gentext key="tablenotes" text="Remarques"/>
|
||||
<l:gentext key="TableofContents" text="Table des matières"/>
|
||||
<l:gentext key="tableofcontents" text="Table des matières"/>
|
||||
<l:gentext key="unexpectedelementname" text="Nom d'élément inattendu"/>
|
||||
<l:gentext key="unsupported" text="Non reconnu par le système"/>
|
||||
<l:gentext key="xrefto" text="Référence vers"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Liste des équations"/>
|
||||
<l:gentext key="ListofEquations" text="Liste des équations"/>
|
||||
<l:gentext key="ListofExamples" text="Liste des exemples"/>
|
||||
<l:gentext key="listofexamples" text="Liste des exemples"/>
|
||||
<l:gentext key="ListofFigures" text="Liste des illustrations"/>
|
||||
<l:gentext key="listoffigures" text="Liste des illustrations"/>
|
||||
<l:gentext key="ListofProcedures" text="Liste des procédures"/>
|
||||
<l:gentext key="listofprocedures" text="Liste des procédures"/>
|
||||
<l:gentext key="listoftables" text="Liste des tableaux"/>
|
||||
<l:gentext key="ListofTables" text="Liste des tableaux"/>
|
||||
<l:gentext key="ListofUnknown" text="Liste inconnue"/>
|
||||
<l:gentext key="listofunknown" text="Liste inconnue"/>
|
||||
<l:gentext key="nav-home" text="Sommaire"/>
|
||||
<l:gentext key="nav-next" text="Suivant"/>
|
||||
<l:gentext key="nav-next-sibling" text="Avance rapide"/>
|
||||
<l:gentext key="nav-prev" text="Précédent"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Arrière rapide"/>
|
||||
<l:gentext key="nav-up" text="Niveau supérieur"/>
|
||||
<l:gentext key="nav-toc" text="TdM"/>
|
||||
<l:gentext key="Draft" text="Brouillon"/>
|
||||
<l:gentext key="above" text="au-dessus"/>
|
||||
<l:gentext key="below" text="au-dessous"/>
|
||||
<l:gentext key="sectioncalled" text="la section intitulée"/>
|
||||
<l:gentext key="index symbols" text="Symboles"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzâêîôûëïüàèùéçæœ"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÂÊÎÔÛËÏÜÀÈÙÉÇÆŒ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="« "/>
|
||||
<l:dingbat key="endquote" text=" »"/>
|
||||
<l:dingbat key="nestedstartquote" text="“"/>
|
||||
<l:dingbat key="nestedendquote" text="”"/>
|
||||
<l:dingbat key="singlestartquote" text="‹"/>
|
||||
<l:dingbat key="singleendquote" text="›"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Annexe %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Chapitre %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Équation %n. %t"/>
|
||||
<l:template name="example" text="Exemple %n. %t"/>
|
||||
<l:template name="figure" text="Figure %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procédure %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tableau %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Annexe %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Chapitre %n. %t"/>
|
||||
<l:template name="part" text="Partie %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="R : %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Q : %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Q : %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)"/>
|
||||
<l:template name="Page" text="Page %p"/>
|
||||
<l:template name="bridgehead" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsection" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect1" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect2" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect3" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect1" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect2" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect3" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect4" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect5" text="la section intitulée « %t »"/>
|
||||
<l:template name="section" text="la section intitulée « %t »"/>
|
||||
<l:template name="simplesect" text="la section intitulée « %t »"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="R : %n"/>
|
||||
<l:template name="appendix" text="Annexe %n"/>
|
||||
<l:template name="bridgehead" text="Section %n"/>
|
||||
<l:template name="chapter" text="Chapitre %n"/>
|
||||
<l:template name="equation" text="Équation %n"/>
|
||||
<l:template name="example" text="Exemple %n"/>
|
||||
<l:template name="figure" text="Figure %n"/>
|
||||
<l:template name="part" text="Partie %n"/>
|
||||
<l:template name="procedure" text="Procédure %n"/>
|
||||
<l:template name="productionset" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="Q & R %n"/>
|
||||
<l:template name="qandaentry" text="Q : %n"/>
|
||||
<l:template name="question" text="Q : %n"/>
|
||||
<l:template name="sect1" text="Section %n"/>
|
||||
<l:template name="sect2" text="Section %n"/>
|
||||
<l:template name="sect3" text="Section %n"/>
|
||||
<l:template name="sect4" text="Section %n"/>
|
||||
<l:template name="sect5" text="Section %n"/>
|
||||
<l:template name="section" text="Section %n"/>
|
||||
<l:template name="table" text="Tableau %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Annexe %n, %t"/>
|
||||
<l:template name="bridgehead" text="Section %n, « %t »"/>
|
||||
<l:template name="chapter" text="Chapitre %n, %t"/>
|
||||
<l:template name="equation" text="Équation %n, « %t »"/>
|
||||
<l:template name="example" text="Exemple %n, « %t »"/>
|
||||
<l:template name="figure" text="Figure %n, « %t »"/>
|
||||
<l:template name="part" text="Partie %n, « %t »"/>
|
||||
<l:template name="procedure" text="Procédure %n, « %t »"/>
|
||||
<l:template name="productionset" text="Production %n, « %t »"/>
|
||||
<l:template name="qandadiv" text="Q & R %n, « %t »"/>
|
||||
<l:template name="refsect1" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect2" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsect3" text="la section intitulée « %t »"/>
|
||||
<l:template name="refsection" text="la section intitulée « %t »"/>
|
||||
<l:template name="sect1" text="Section %n, « %t »"/>
|
||||
<l:template name="sect2" text="Section %n, « %t »"/>
|
||||
<l:template name="sect3" text="Section %n, « %t »"/>
|
||||
<l:template name="sect4" text="Section %n, « %t »"/>
|
||||
<l:template name="sect5" text="Section %n, « %t »"/>
|
||||
<l:template name="section" text="Section %n, « %t »"/>
|
||||
<l:template name="simplesect" text="la section intitulée « %t »"/>
|
||||
<l:template name="table" text="Tableau %n, « %t »"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" et "/>
|
||||
<l:template name="seplast" text=", et "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Voir %t"/>
|
||||
<l:template name="seealso" text="Voir aussi %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Public visé: "/>
|
||||
<l:template name="MsgLevel" text="Niveau: "/>
|
||||
<l:template name="MsgOrig" text="Origine: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d/m/Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="janvier"/>
|
||||
<l:template name="February" text="février"/>
|
||||
<l:template name="March" text="mars"/>
|
||||
<l:template name="April" text="avril"/>
|
||||
<l:template name="May" text="mai"/>
|
||||
<l:template name="June" text="juin"/>
|
||||
<l:template name="July" text="juillet"/>
|
||||
<l:template name="August" text="août"/>
|
||||
<l:template name="September" text="septembre"/>
|
||||
<l:template name="October" text="octobre"/>
|
||||
<l:template name="November" text="novembre"/>
|
||||
<l:template name="December" text="décembre"/>
|
||||
<l:template name="Monday" text="lundi"/>
|
||||
<l:template name="Tuesday" text="mardi"/>
|
||||
<l:template name="Wednesday" text="mercredi"/>
|
||||
<l:template name="Thursday" text="jeudi"/>
|
||||
<l:template name="Friday" text="vendredi"/>
|
||||
<l:template name="Saturday" text="samedi"/>
|
||||
<l:template name="Sunday" text="dimanche"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="jan"/>
|
||||
<l:template name="Feb" text="fév"/>
|
||||
<l:template name="Mar" text="mar"/>
|
||||
<l:template name="Apr" text="avr"/>
|
||||
<l:template name="May" text="mai"/>
|
||||
<l:template name="Jun" text="jun"/>
|
||||
<l:template name="Jul" text="jui"/>
|
||||
<l:template name="Aug" text="aoû"/>
|
||||
<l:template name="Sep" text="sep"/>
|
||||
<l:template name="Oct" text="oct"/>
|
||||
<l:template name="Nov" text="nov"/>
|
||||
<l:template name="Dec" text="déc"/>
|
||||
<l:template name="Mon" text="lun"/>
|
||||
<l:template name="Tue" text="mar"/>
|
||||
<l:template name="Wed" text="mer"/>
|
||||
<l:template name="Thu" text="jeu"/>
|
||||
<l:template name="Fri" text="ven"/>
|
||||
<l:template name="Sat" text="sam"/>
|
||||
<l:template name="Sun" text="dim"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x040c French (FRANCE)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Symboles</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">à</l:l>
|
||||
<l:l i="1">À</l:l>
|
||||
<l:l i="1">â</l:l>
|
||||
<l:l i="1">Â</l:l>
|
||||
<l:l i="1">Æ</l:l>
|
||||
<l:l i="1">æ</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="3">ç</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="5">ê</l:l>
|
||||
<l:l i="5">Ê</l:l>
|
||||
<l:l i="5">é</l:l>
|
||||
<l:l i="5">É</l:l>
|
||||
<l:l i="5">è</l:l>
|
||||
<l:l i="5">È</l:l>
|
||||
<l:l i="5">ë</l:l>
|
||||
<l:l i="5">Ë</l:l>
|
||||
<l:l i="5">€</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="9">Î</l:l>
|
||||
<l:l i="9">î</l:l>
|
||||
<l:l i="9">Ï</l:l>
|
||||
<l:l i="9">ï</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="15">Ö</l:l>
|
||||
<l:l i="15">ö</l:l>
|
||||
<l:l i="15">Œ</l:l>
|
||||
<l:l i="15">œ</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="21">Ù</l:l>
|
||||
<l:l i="21">ù</l:l>
|
||||
<l:l i="21">Û</l:l>
|
||||
<l:l i="21">û</l:l>
|
||||
<l:l i="21">Ü</l:l>
|
||||
<l:l i="21">ü</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/ga.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ga.xml
Normal file
File diff suppressed because it is too large
Load Diff
836
doc/reference/lib/docbook-xsl-snapshot/common/gentext.xsl
Normal file
836
doc/reference/lib/docbook-xsl-snapshot/common/gentext.xsl
Normal file
@@ -0,0 +1,836 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: gentext.xsl 8095 2008-08-03 13:04:59Z mzjn $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
|
||||
<xsl:template match="*" mode="object.title.template">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="chapter" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($chapter.autolabel) != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="appendix" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($appendix.autolabel) != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($part.autolabel) != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section|sect1|sect2|sect3|sect4|sect5|simplesect
|
||||
|bridgehead"
|
||||
mode="object.title.template">
|
||||
<xsl:variable name="is.numbered">
|
||||
<xsl:call-template name="label.this.section"/>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$is.numbered != 0">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-numbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title-unnumbered'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="procedure" mode="object.title.template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$formal.procedures != 0 and title">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
<xsl:text>.formal</xsl:text>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.subtitle.template">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'subtitle'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="is.autonumber">
|
||||
<xsl:value-of select="'0'"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section|sect1|sect2|sect3|sect4|sect5"
|
||||
mode="is.autonumber">
|
||||
<xsl:call-template name="label.this.section"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|example|table|equation" mode="is.autonumber">
|
||||
<xsl:value-of select="'1'"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="appendix" mode="is.autonumber">
|
||||
<xsl:value-of select="$appendix.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="chapter" mode="is.autonumber">
|
||||
<xsl:value-of select="$chapter.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="is.autonumber">
|
||||
<xsl:value-of select="$part.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface" mode="is.autonumber">
|
||||
<xsl:value-of select="$preface.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question|answer" mode="is.autonumber">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$qanda.defaultlabel = 'number'
|
||||
and not(label)">
|
||||
<xsl:value-of select="'1'"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="'0'"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandadiv" mode="is.autonumber">
|
||||
<xsl:value-of select="$qandadiv.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bridgehead" mode="is.autonumber">
|
||||
<xsl:value-of select="$section.autolabel"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="procedure" mode="is.autonumber">
|
||||
<xsl:value-of select="$formal.procedures"/>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<xsl:template match="*" mode="object.xref.template">
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
|
||||
<!-- Is autonumbering on? -->
|
||||
<xsl:variable name="autonumber">
|
||||
<xsl:apply-templates select="." mode="is.autonumber"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="number-and-title-template">
|
||||
<xsl:call-template name="gentext.template.exists">
|
||||
<xsl:with-param name="context" select="'xref-number-and-title'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="number-template">
|
||||
<xsl:call-template name="gentext.template.exists">
|
||||
<xsl:with-param name="context" select="'xref-number'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="context">
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($autonumber) != 0
|
||||
and $number-and-title-template != 0
|
||||
and $xref.with.number.and.title != 0">
|
||||
<xsl:value-of select="'xref-number-and-title'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="string($autonumber) != 0
|
||||
and $number-template != 0">
|
||||
<xsl:value-of select="'xref-number'"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="'xref'"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="$context"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="template">
|
||||
<xsl:apply-templates select="." mode="object.title.template"/>
|
||||
</xsl:variable>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:text>object.title.markup: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
<xsl:value-of select="$template"/>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="object.title.markup.textonly">
|
||||
<xsl:variable name="title">
|
||||
<xsl:apply-templates select="." mode="object.title.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:value-of select="normalize-space($title)"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<!-- Just for consistency in template naming -->
|
||||
|
||||
<xsl:apply-templates select="." mode="titleabbrev.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.subtitle.markup">
|
||||
<xsl:variable name="template">
|
||||
<xsl:apply-templates select="." mode="object.subtitle.template"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="object.xref.markup">
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="template">
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with(normalize-space($xrefstyle), 'select:')">
|
||||
<xsl:call-template name="make.gentext.template">
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="starts-with(normalize-space($xrefstyle), 'template:')">
|
||||
<xsl:value-of select="substring-after(normalize-space($xrefstyle), 'template:')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="object.xref.template">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:text>object.xref.markup: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text>(</xsl:text>
|
||||
<xsl:value-of select="$xrefstyle"/>
|
||||
<xsl:text>, </xsl:text>
|
||||
<xsl:value-of select="$purpose"/>
|
||||
<xsl:text>)</xsl:text>
|
||||
<xsl:text>: [</xsl:text>
|
||||
<xsl:value-of select="$template"/>
|
||||
<xsl:text>]</xsl:text>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:if test="$template = '' and $verbose != 0">
|
||||
<xsl:message>
|
||||
<xsl:text>object.xref.markup: empty xref template</xsl:text>
|
||||
<xsl:text> for linkend="</xsl:text>
|
||||
<xsl:value-of select="@id|@xml:id"/>
|
||||
<xsl:text>" and @xrefstyle="</xsl:text>
|
||||
<xsl:value-of select="$xrefstyle"/>
|
||||
<xsl:text>"</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="listitem" mode="object.xref.markup">
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="parent::orderedlist">
|
||||
<xsl:variable name="template">
|
||||
<xsl:apply-templates select="." mode="object.xref.template"/>
|
||||
</xsl:variable>
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$verbose != 0">
|
||||
<xsl:message>
|
||||
<xsl:text>Xref is only supported to listitems in an</xsl:text>
|
||||
<xsl:text> orderedlist: </xsl:text>
|
||||
<xsl:value-of select="@id|@xml:id"/>
|
||||
</xsl:message>
|
||||
<xsl:text>???</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question" mode="object.xref.markup">
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
|
||||
<xsl:variable name="deflabel">
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor-or-self::*[@defaultlabel]">
|
||||
<xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
|
||||
/@defaultlabel"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$qanda.defaultlabel"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="template">
|
||||
<xsl:choose>
|
||||
<!-- This avoids double Q: Q: in xref when defaultlabel=qanda -->
|
||||
<xsl:when test="$deflabel = 'qanda' and not(label)">%n</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="object.xref.template">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="template" select="$template"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="substitute-markup">
|
||||
<xsl:param name="template" select="''"/>
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:param name="title" select="''"/>
|
||||
<xsl:param name="subtitle" select="''"/>
|
||||
<xsl:param name="docname" select="''"/>
|
||||
<xsl:param name="label" select="''"/>
|
||||
<xsl:param name="pagenumber" select="''"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="verbose"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($template, '%')">
|
||||
<xsl:value-of select="substring-before($template, '%')"/>
|
||||
<xsl:variable name="candidate"
|
||||
select="substring(substring-after($template, '%'), 1, 1)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$candidate = 't'">
|
||||
<xsl:apply-templates select="." mode="insert.title.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="title">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title != ''">
|
||||
<xsl:copy-of select="$title"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 's'">
|
||||
<xsl:apply-templates select="." mode="insert.subtitle.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="subtitle">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$subtitle != ''">
|
||||
<xsl:copy-of select="$subtitle"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'n'">
|
||||
<xsl:apply-templates select="." mode="insert.label.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="label">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label != ''">
|
||||
<xsl:copy-of select="$label"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="label.markup"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'p'">
|
||||
<xsl:apply-templates select="." mode="insert.pagenumber.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="pagenumber">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pagenumber != ''">
|
||||
<xsl:copy-of select="$pagenumber"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="pagenumber.markup"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'o'">
|
||||
<!-- olink target document title -->
|
||||
<xsl:apply-templates select="." mode="insert.olink.docname.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="docname">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$docname != ''">
|
||||
<xsl:copy-of select="$docname"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="olink.docname.markup"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = 'd'">
|
||||
<xsl:apply-templates select="." mode="insert.direction.markup">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="direction">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$referrer">
|
||||
<xsl:variable name="referent-is-below">
|
||||
<xsl:for-each select="preceding::xref">
|
||||
<xsl:if test="generate-id(.) = generate-id($referrer)">1</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$referent-is-below = ''">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'above'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'below'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>Attempt to use %d in gentext with no referrer!</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="$candidate = '%' ">
|
||||
<xsl:text>%</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>%</xsl:text><xsl:value-of select="$candidate"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<!-- recurse with the rest of the template string -->
|
||||
<xsl:variable name="rest"
|
||||
select="substring($template,
|
||||
string-length(substring-before($template, '%'))+3)"/>
|
||||
<xsl:call-template name="substitute-markup">
|
||||
<xsl:with-param name="template" select="$rest"/>
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="title" select="$title"/>
|
||||
<xsl:with-param name="subtitle" select="$subtitle"/>
|
||||
<xsl:with-param name="docname" select="$docname"/>
|
||||
<xsl:with-param name="label" select="$label"/>
|
||||
<xsl:with-param name="pagenumber" select="$pagenumber"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$template"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="make.gentext.template">
|
||||
<xsl:param name="xrefstyle" select="''"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
<xsl:param name="target.elem" select="local-name(.)"/>
|
||||
|
||||
<!-- parse xrefstyle to get parts -->
|
||||
<xsl:variable name="parts"
|
||||
select="substring-after(normalize-space($xrefstyle), 'select:')"/>
|
||||
|
||||
<xsl:variable name="labeltype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($parts, 'labelnumber')">
|
||||
<xsl:text>labelnumber</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'labelname')">
|
||||
<xsl:text>labelname</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'label')">
|
||||
<xsl:text>label</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="titletype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($parts, 'quotedtitle')">
|
||||
<xsl:text>quotedtitle</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'title')">
|
||||
<xsl:text>title</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="pagetype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$insert.olink.page.number = 'no' and
|
||||
local-name($referrer) = 'olink'">
|
||||
<!-- suppress page numbers -->
|
||||
</xsl:when>
|
||||
<xsl:when test="$insert.xref.page.number = 'no' and
|
||||
local-name($referrer) != 'olink'">
|
||||
<!-- suppress page numbers -->
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'nopage')">
|
||||
<xsl:text>nopage</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'pagenumber')">
|
||||
<xsl:text>pagenumber</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'pageabbrev')">
|
||||
<xsl:text>pageabbrev</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'Page')">
|
||||
<xsl:text>Page</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'page')">
|
||||
<xsl:text>page</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="docnametype">
|
||||
<xsl:choose>
|
||||
<xsl:when test="($olink.doctitle = 0 or
|
||||
$olink.doctitle = 'no') and
|
||||
local-name($referrer) = 'olink'">
|
||||
<!-- suppress docname -->
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'nodocname')">
|
||||
<xsl:text>nodocname</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'docnamelong')">
|
||||
<xsl:text>docnamelong</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($parts, 'docname')">
|
||||
<xsl:text>docname</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$labeltype != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$labeltype = 'labelname'">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key">
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name($referrer) = 'olink'">
|
||||
<xsl:value-of select="$target.elem"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$labeltype = 'labelnumber'">
|
||||
<xsl:text>%n</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="$labeltype = 'label'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref-number'"/>
|
||||
<xsl:with-param name="name">
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name($referrer) = 'olink'">
|
||||
<xsl:value-of select="$target.elem"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="xpath.location"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titletype != ''">
|
||||
<xsl:value-of select="$xref.label-title.separator"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype != ''">
|
||||
<xsl:value-of select="$xref.label-page.separator"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$titletype != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titletype = 'title'">
|
||||
<xsl:text>%t</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="$titletype = 'quotedtitle'">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat" select="'startquote'"/>
|
||||
</xsl:call-template>
|
||||
<xsl:text>%t</xsl:text>
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat" select="'endquote'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pagetype != '' and $pagetype != 'nopage'">
|
||||
<xsl:value-of select="$xref.title-page.separator"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
|
||||
<!-- special case: use regular xref template if just turning off page -->
|
||||
<xsl:if test="($pagetype = 'nopage' or $docnametype = 'nodocname')
|
||||
and local-name($referrer) != 'olink'
|
||||
and $labeltype = ''
|
||||
and $titletype = ''">
|
||||
<xsl:apply-templates select="." mode="object.xref.template">
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="$pagetype != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pagetype = 'page'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'page'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'Page'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'Page'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'pageabbrev'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'pageabbrev'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$pagetype = 'pagenumber'">
|
||||
<xsl:text>%p</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:if>
|
||||
|
||||
<!-- Add reference to other document title -->
|
||||
<xsl:if test="$docnametype != '' and local-name($referrer) = 'olink'">
|
||||
<!-- Any separator should be in the gentext template -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$docnametype = 'docnamelong'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'docnamelong'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$docnametype = 'docname'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'xref'"/>
|
||||
<xsl:with-param name="name" select="'docname'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/gl.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/gl.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/gu.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/gu.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/he.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/he.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/hi.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/hi.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/hr.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/hr.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/hu.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/hu.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/id.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/id.xml
Normal file
File diff suppressed because it is too large
Load Diff
111
doc/reference/lib/docbook-xsl-snapshot/common/insertfile.xsl
Normal file
111
doc/reference/lib/docbook-xsl-snapshot/common/insertfile.xsl
Normal file
@@ -0,0 +1,111 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: insertfile.xsl 5262 2005-10-12 14:58:42Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:param name="textdata.default.encoding"></xsl:param>
|
||||
|
||||
<!-- * This stylesheet makes a copy of a source tree, replacing all -->
|
||||
<!-- * instances of the following with corresponding Xinclude instances -->
|
||||
<!-- * in the result tree. -->
|
||||
<!-- * -->
|
||||
<!-- * <textobject><textdata fileref="foo.txt"> -->
|
||||
<!-- * <imagedata format="linespecific" fileref="foo.txt"> -->
|
||||
<!-- * <inlinegraphic format="linespecific" fileref="foo.txt"> -->
|
||||
<!-- * -->
|
||||
<!-- * Those become: -->
|
||||
<!-- * -->
|
||||
<!-- * <xi:include href="foo.txt" parse="text"/> -->
|
||||
<!-- * -->
|
||||
<!-- * It also works as expected with entityref in place of fileref, -->
|
||||
<!-- * and copies over the value of the <textdata>“encoding” atrribute (if -->
|
||||
<!-- * found). It is basically intended as an alternative to using the -->
|
||||
<!-- * DocBook XSLT Java insertfile() extension. -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="get.external.filename">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@entityref">
|
||||
<xsl:value-of select="unparsed-entity-uri(@entityref)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="@fileref"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="textobject[child::textdata[@entityref|@fileref]]">
|
||||
<xsl:apply-templates select="textdata"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="textdata[@entityref|@fileref]">
|
||||
<xsl:variable name="filename">
|
||||
<xsl:call-template name="get.external.filename"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="encoding">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@encoding">
|
||||
<xsl:value-of select="@encoding"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$textdata.default.encoding"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xi:include href="{$filename}" parse="text" encoding="{$encoding}"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template
|
||||
match="inlinemediaobject
|
||||
[child::imageobject
|
||||
[child::imagedata
|
||||
[@format = 'linespecific' and
|
||||
(@entityref|@fileref)]]]">
|
||||
<xsl:apply-templates select="imageobject/imagedata"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="imagedata
|
||||
[@format = 'linespecific' and
|
||||
(@entityref|@fileref)]">
|
||||
<xsl:variable name="filename">
|
||||
<xsl:call-template name="get.external.filename"/>
|
||||
</xsl:variable>
|
||||
<xi:include href="{$filename}" parse="text" encoding="{$textdata.default.encoding}"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="inlinegraphic
|
||||
[@format = 'linespecific' and
|
||||
(@entityref|@fileref)]">
|
||||
<xsl:variable name="filename">
|
||||
<xsl:call-template name="get.external.filename"/>
|
||||
</xsl:variable>
|
||||
<xi:include href="{$filename}" parse="text" encoding="{$textdata.default.encoding}"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- * copy everything else into result tree as-is -->
|
||||
<xsl:template match="node() | @*">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@* | node()"/>
|
||||
</xsl:copy>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/it.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/it.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/ja.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ja.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/kn.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/kn.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/ko.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ko.xml
Normal file
File diff suppressed because it is too large
Load Diff
63
doc/reference/lib/docbook-xsl-snapshot/common/l10n.dtd
Normal file
63
doc/reference/lib/docbook-xsl-snapshot/common/l10n.dtd
Normal file
@@ -0,0 +1,63 @@
|
||||
<!ENTITY % prefix "l">
|
||||
|
||||
<!ENTITY % xmlns "xmlns:%prefix;">
|
||||
<!ENTITY % uri "'http://docbook.sourceforge.net/xmlns/l10n/1.0'">
|
||||
|
||||
<!ENTITY % i18n "%prefix;:i18n">
|
||||
<!ENTITY % l10n "%prefix;:l10n">
|
||||
<!ENTITY % gentext "%prefix;:gentext">
|
||||
<!ENTITY % dingbat "%prefix;:dingbat">
|
||||
<!ENTITY % context "%prefix;:context">
|
||||
<!ENTITY % template "%prefix;:template">
|
||||
<!ENTITY % letters "%prefix;:letters">
|
||||
<!ENTITY % l "%prefix;:l">
|
||||
<!ENTITY % lang "lang NMTOKEN #IMPLIED">
|
||||
|
||||
<!ELEMENT %i18n; ((%l10n;)+)>
|
||||
<!ATTLIST %i18n;
|
||||
%xmlns; CDATA #FIXED %uri;
|
||||
>
|
||||
|
||||
<!ELEMENT %l10n; (%gentext;|%dingbat;|%context;|%letters;)*>
|
||||
<!ATTLIST %l10n;
|
||||
%xmlns; CDATA #FIXED %uri;
|
||||
language CDATA #REQUIRED
|
||||
english-language-name CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT %gentext; EMPTY>
|
||||
<!ATTLIST %gentext;
|
||||
%lang;
|
||||
key CDATA #REQUIRED
|
||||
text CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT %dingbat; EMPTY>
|
||||
<!ATTLIST %dingbat;
|
||||
%lang;
|
||||
key CDATA #REQUIRED
|
||||
text CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT %context; ((%template;)+)>
|
||||
<!ATTLIST %context;
|
||||
name CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT %template; EMPTY>
|
||||
<!ATTLIST %template;
|
||||
%lang;
|
||||
name CDATA #REQUIRED
|
||||
text CDATA #REQUIRED
|
||||
style CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT %letters; ((%l;)+)>
|
||||
<!ATTLIST %letters;
|
||||
%lang;
|
||||
>
|
||||
|
||||
<!ELEMENT %l; (#PCDATA)>
|
||||
<!ATTLIST %l;
|
||||
i CDATA #REQUIRED
|
||||
>
|
||||
129
doc/reference/lib/docbook-xsl-snapshot/common/l10n.xml
Normal file
129
doc/reference/lib/docbook-xsl-snapshot/common/l10n.xml
Normal file
@@ -0,0 +1,129 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE l:i18n SYSTEM "l10n.dtd" [
|
||||
<!ENTITY af SYSTEM "af.xml">
|
||||
<!ENTITY am SYSTEM "am.xml">
|
||||
<!ENTITY ar SYSTEM "ar.xml">
|
||||
<!ENTITY az SYSTEM "az.xml">
|
||||
<!ENTITY bg SYSTEM "bg.xml">
|
||||
<!ENTITY bn SYSTEM "bn.xml">
|
||||
<!ENTITY bs SYSTEM "bs.xml">
|
||||
<!ENTITY ca SYSTEM "ca.xml">
|
||||
<!ENTITY cs SYSTEM "cs.xml">
|
||||
<!ENTITY cy SYSTEM "cy.xml">
|
||||
<!ENTITY da SYSTEM "da.xml">
|
||||
<!ENTITY de SYSTEM "de.xml">
|
||||
<!ENTITY el SYSTEM "el.xml">
|
||||
<!ENTITY en SYSTEM "en.xml">
|
||||
<!ENTITY eo SYSTEM "eo.xml">
|
||||
<!ENTITY es SYSTEM "es.xml">
|
||||
<!ENTITY et SYSTEM "et.xml">
|
||||
<!ENTITY eu SYSTEM "eu.xml">
|
||||
<!ENTITY fa SYSTEM "fa.xml">
|
||||
<!ENTITY fi SYSTEM "fi.xml">
|
||||
<!ENTITY fr SYSTEM "fr.xml">
|
||||
<!ENTITY ga SYSTEM "ga.xml">
|
||||
<!ENTITY gl SYSTEM "gl.xml">
|
||||
<!ENTITY gu SYSTEM "gu.xml">
|
||||
<!ENTITY he SYSTEM "he.xml">
|
||||
<!ENTITY hi SYSTEM "hi.xml">
|
||||
<!ENTITY hr SYSTEM "hr.xml">
|
||||
<!ENTITY hu SYSTEM "hu.xml">
|
||||
<!ENTITY id SYSTEM "id.xml">
|
||||
<!ENTITY it SYSTEM "it.xml">
|
||||
<!ENTITY ja SYSTEM "ja.xml">
|
||||
<!ENTITY kn SYSTEM "kn.xml">
|
||||
<!ENTITY ko SYSTEM "ko.xml">
|
||||
<!ENTITY la SYSTEM "la.xml">
|
||||
<!ENTITY lit SYSTEM "lt.xml">
|
||||
<!ENTITY lv SYSTEM "lv.xml">
|
||||
<!ENTITY mn SYSTEM "mn.xml">
|
||||
<!ENTITY nl SYSTEM "nl.xml">
|
||||
<!ENTITY nn SYSTEM "nn.xml">
|
||||
<!ENTITY nb SYSTEM "nb.xml">
|
||||
<!ENTITY or SYSTEM "or.xml">
|
||||
<!ENTITY pa SYSTEM "pa.xml">
|
||||
<!ENTITY pl SYSTEM "pl.xml">
|
||||
<!ENTITY pt_br SYSTEM "pt_br.xml">
|
||||
<!ENTITY pt SYSTEM "pt.xml">
|
||||
<!ENTITY ro SYSTEM "ro.xml">
|
||||
<!ENTITY ru SYSTEM "ru.xml">
|
||||
<!ENTITY sk SYSTEM "sk.xml">
|
||||
<!ENTITY sl SYSTEM "sl.xml">
|
||||
<!ENTITY sq SYSTEM "sq.xml">
|
||||
<!ENTITY sr_Latn SYSTEM "sr_Latn.xml">
|
||||
<!ENTITY sr SYSTEM "sr.xml">
|
||||
<!ENTITY sv SYSTEM "sv.xml">
|
||||
<!ENTITY ta SYSTEM "ta.xml">
|
||||
<!ENTITY th SYSTEM "th.xml">
|
||||
<!ENTITY tl SYSTEM "tl.xml">
|
||||
<!ENTITY tr SYSTEM "tr.xml">
|
||||
<!ENTITY uk SYSTEM "uk.xml">
|
||||
<!ENTITY vi SYSTEM "vi.xml">
|
||||
<!ENTITY xh SYSTEM "xh.xml">
|
||||
<!ENTITY zh_cn SYSTEM "zh_cn.xml">
|
||||
<!ENTITY zh_tw SYSTEM "zh_tw.xml">
|
||||
]>
|
||||
<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
|
||||
⁡
|
||||
&am;
|
||||
&ar;
|
||||
&az;
|
||||
&bg;
|
||||
&bn;
|
||||
&bs;
|
||||
&ca;
|
||||
&cs;
|
||||
&cy;
|
||||
&da;
|
||||
&de;
|
||||
⪙
|
||||
&en;
|
||||
&eo;
|
||||
&es;
|
||||
&et;
|
||||
&eu;
|
||||
&fa;
|
||||
&fi;
|
||||
&fr;
|
||||
&ga;
|
||||
≷
|
||||
&gu;
|
||||
&he;
|
||||
&hi;
|
||||
&hr;
|
||||
&hu;
|
||||
&id;
|
||||
⁢
|
||||
&ja;
|
||||
&kn;
|
||||
&ko;
|
||||
&la;
|
||||
&lit;
|
||||
&lv;
|
||||
&mn;
|
||||
&nl;
|
||||
&nn;
|
||||
&nb;
|
||||
∨
|
||||
&pa;
|
||||
&pl;
|
||||
&pt;
|
||||
&pt_br;
|
||||
&ro;
|
||||
&ru;
|
||||
&sk;
|
||||
&sl;
|
||||
&sq;
|
||||
&sr;
|
||||
&sr_Latn;
|
||||
&sv;
|
||||
&ta;
|
||||
&th;
|
||||
&tl;
|
||||
&tr;
|
||||
&uk;
|
||||
&vi;
|
||||
&xh;
|
||||
&zh_cn;
|
||||
&zh_tw;
|
||||
</l:i18n>
|
||||
497
doc/reference/lib/docbook-xsl-snapshot/common/l10n.xsl
Normal file
497
doc/reference/lib/docbook-xsl-snapshot/common/l10n.xsl
Normal file
@@ -0,0 +1,497 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"
|
||||
exclude-result-prefixes="l"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: l10n.xsl 8001 2008-04-15 03:19:23Z abdelazer $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
This file contains localization templates (for internationalization)
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:param name="l10n.xml" select="document('../common/l10n.xml')"/>
|
||||
<xsl:param name="local.l10n.xml" select="document('')"/>
|
||||
|
||||
<xsl:template name="l10n.language">
|
||||
<xsl:param name="target" select="."/>
|
||||
<xsl:param name="xref-context" select="false()"/>
|
||||
|
||||
<xsl:variable name="mc-language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.gentext.language != ''">
|
||||
<xsl:value-of select="$l10n.gentext.language"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$xref-context or $l10n.gentext.use.xref.language != 0">
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="$target/ancestor-or-self::*
|
||||
[@lang or @xml:lang][1]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="$target/ancestor-or-self::*
|
||||
[@lang or @xml:lang][1]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="language" select="translate($mc-language,
|
||||
'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
|
||||
'abcdefghijklmnopqrstuvwxyz')"/>
|
||||
|
||||
<xsl:variable name="adjusted.language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($language,'-')">
|
||||
<xsl:value-of select="substring-before($language,'-')"/>
|
||||
<xsl:text>_</xsl:text>
|
||||
<xsl:value-of select="substring-after($language,'-')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$language"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.xml/l:i18n/l:l10n[@language=$adjusted.language]">
|
||||
<xsl:value-of select="$adjusted.language"/>
|
||||
</xsl:when>
|
||||
<!-- try just the lang code without country -->
|
||||
<xsl:when test="$l10n.xml/l:i18n/l:l10n[@language=substring-before($adjusted.language,'_')]">
|
||||
<xsl:value-of select="substring-before($adjusted.language,'_')"/>
|
||||
</xsl:when>
|
||||
<!-- or use the default -->
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No localization exists for "</xsl:text>
|
||||
<xsl:value-of select="$adjusted.language"/>
|
||||
<xsl:text>" or "</xsl:text>
|
||||
<xsl:value-of select="substring-before($adjusted.language,'_')"/>
|
||||
<xsl:text>". Using default "</xsl:text>
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
<xsl:text>".</xsl:text>
|
||||
</xsl:message>
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="l10.language.name">
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
<xsl:value-of
|
||||
select="$l10n.xml/l:i18n/l:l10n[@language=$lang]/@english-language-name"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="language.attribute">
|
||||
<xsl:param name="node" select="."/>
|
||||
|
||||
<xsl:variable name="language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.gentext.language != ''">
|
||||
<xsl:value-of select="$l10n.gentext.language"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="$node/ancestor-or-self::*
|
||||
[@lang or @xml:lang][1]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$language != ''">
|
||||
<xsl:attribute name="lang">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.lang.value.rfc.compliant != 0">
|
||||
<xsl:value-of select="translate($language, '_', '-')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$language"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<!-- FIXME: This is sort of hack, but it was the easiest way to add at least partial support for dir attribute -->
|
||||
<xsl:copy-of select="ancestor-or-self::*[@dir][1]/@dir"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Duplication of language.attribute template to allow for xml:lang attribute
|
||||
creation for XHTML 1.1 and epub target -->
|
||||
<xsl:template name="xml.language.attribute">
|
||||
<xsl:param name="node" select="."/>
|
||||
|
||||
<xsl:variable name="language">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.gentext.language != ''">
|
||||
<xsl:value-of select="$l10n.gentext.language"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<!-- can't do this one step: attributes are unordered! -->
|
||||
<xsl:variable name="lang-scope"
|
||||
select="$node/ancestor-or-self::*
|
||||
[@lang or @xml:lang][1]"/>
|
||||
<xsl:variable name="lang-attr"
|
||||
select="($lang-scope/@lang | $lang-scope/@xml:lang)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($lang-attr) = ''">
|
||||
<xsl:value-of select="$l10n.gentext.default.language"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$lang-attr"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$language != ''">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$l10n.lang.value.rfc.compliant != 0">
|
||||
<xsl:value-of select="translate($language, '_', '-')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$language"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<!-- FIXME: This is sort of hack, but it was the easiest way to add at least partial support for dir attribute -->
|
||||
<xsl:copy-of select="ancestor-or-self::*[@dir][1]/@dir"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext">
|
||||
<xsl:param name="key" select="local-name(.)"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="local.l10n.gentext"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:gentext[@key=$key])[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.gentext"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:gentext[@key=$key])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$local.l10n.gentext">
|
||||
<xsl:value-of select="$local.l10n.gentext/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$l10n.gentext">
|
||||
<xsl:value-of select="$l10n.gentext/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of "</xsl:text>
|
||||
<xsl:value-of select="$key"/>
|
||||
<xsl:text>" exists</xsl:text>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$lang = 'en'">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>; using "en".</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:value-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:gentext[@key=$key])[1]/@text"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.element.name">
|
||||
<xsl:param name="element.name" select="local-name(.)"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="$element.name"/>
|
||||
<xsl:with-param name="lang" select="$lang"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.space">
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.edited.by">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Editedby'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.by">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'by'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.dingbat">
|
||||
<xsl:param name="dingbat">bullet</xsl:param>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="local.l10n.dingbat"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang]/l:dingbat[@key=$dingbat])[1]"/>
|
||||
|
||||
<xsl:variable name="l10n.dingbat"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang]/l:dingbat[@key=$dingbat])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$local.l10n.dingbat">
|
||||
<xsl:value-of select="$local.l10n.dingbat/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$l10n.dingbat">
|
||||
<xsl:value-of select="$l10n.dingbat/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization of dingbat </xsl:text>
|
||||
<xsl:value-of select="$dingbat"/>
|
||||
<xsl:text> exists; using "en".</xsl:text>
|
||||
</xsl:message>
|
||||
|
||||
<xsl:value-of select="($l10n.xml/l:i18n/l:l10n[@language='en']/l:dingbat[@key=$dingbat])[1]/@text"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.startquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">startquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.endquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">endquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nestedstartquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">nestedstartquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nestedendquote">
|
||||
<xsl:call-template name="gentext.dingbat">
|
||||
<xsl:with-param name="dingbat">nestedendquote</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.prev">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-prev'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.next">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-next'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.home">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-home'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="gentext.nav.up">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'nav-up'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="gentext.template">
|
||||
<xsl:param name="context" select="'default'"/>
|
||||
<xsl:param name="name" select="'default'"/>
|
||||
<xsl:param name="origname" select="$name"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="local.localization.node"
|
||||
select="($local.l10n.xml//l:i18n/l:l10n[@language=$lang])[1]"/>
|
||||
|
||||
<xsl:variable name="localization.node"
|
||||
select="($l10n.xml/l:i18n/l:l10n[@language=$lang])[1]"/>
|
||||
|
||||
<xsl:if test="count($localization.node) = 0
|
||||
and count($local.localization.node) = 0
|
||||
and $verbose != 0">
|
||||
<xsl:message>
|
||||
<xsl:text>No "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization exists.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="local.context.node"
|
||||
select="$local.localization.node/l:context[@name=$context]"/>
|
||||
|
||||
<xsl:variable name="context.node"
|
||||
select="$localization.node/l:context[@name=$context]"/>
|
||||
|
||||
<xsl:if test="count($context.node) = 0
|
||||
and count($local.context.node) = 0
|
||||
and $verbose != 0">
|
||||
<xsl:message>
|
||||
<xsl:text>No context named "</xsl:text>
|
||||
<xsl:value-of select="$context"/>
|
||||
<xsl:text>" exists in the "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="local.template.node"
|
||||
select="($local.context.node/l:template[@name=$name
|
||||
and @style
|
||||
and @style=$xrefstyle]
|
||||
|$local.context.node/l:template[@name=$name
|
||||
and not(@style)])[1]"/>
|
||||
|
||||
<xsl:variable name="template.node"
|
||||
select="($context.node/l:template[@name=$name
|
||||
and @style
|
||||
and @style=$xrefstyle]
|
||||
|$context.node/l:template[@name=$name
|
||||
and not(@style)])[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$local.template.node/@text">
|
||||
<xsl:value-of select="$local.template.node/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$template.node/@text">
|
||||
<xsl:value-of select="$template.node/@text"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($name, '/')">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="$context"/>
|
||||
<xsl:with-param name="name" select="substring-after($name, '/')"/>
|
||||
<xsl:with-param name="origname" select="$origname"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="lang" select="$lang"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$verbose = 0">
|
||||
<!-- silence -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>No template for "</xsl:text>
|
||||
<xsl:value-of select="$origname"/>
|
||||
<xsl:text>" (or any of its leaves) exists
|
||||
in the context named "</xsl:text>
|
||||
<xsl:value-of select="$context"/>
|
||||
<xsl:text>" in the "</xsl:text>
|
||||
<xsl:value-of select="$lang"/>
|
||||
<xsl:text>" localization.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- silently test if a gentext template exists -->
|
||||
|
||||
<xsl:template name="gentext.template.exists">
|
||||
<xsl:param name="context" select="'default'"/>
|
||||
<xsl:param name="name" select="'default'"/>
|
||||
<xsl:param name="origname" select="$name"/>
|
||||
<xsl:param name="purpose"/>
|
||||
<xsl:param name="xrefstyle"/>
|
||||
<xsl:param name="referrer"/>
|
||||
<xsl:param name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="template">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="$context"/>
|
||||
<xsl:with-param name="name" select="$name"/>
|
||||
<xsl:with-param name="origname" select="$origname"/>
|
||||
<xsl:with-param name="purpose" select="$purpose"/>
|
||||
<xsl:with-param name="xrefstyle" select="$xrefstyle"/>
|
||||
<xsl:with-param name="referrer" select="$referrer"/>
|
||||
<xsl:with-param name="lang" select="$lang"/>
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string-length($template) != 0">1</xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/la.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/la.xml
Normal file
File diff suppressed because it is too large
Load Diff
869
doc/reference/lib/docbook-xsl-snapshot/common/labels.xsl
Normal file
869
doc/reference/lib/docbook-xsl-snapshot/common/labels.xsl
Normal file
@@ -0,0 +1,869 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: labels.xsl 7031 2007-07-14 19:58:59Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- label markup -->
|
||||
|
||||
<doc:mode mode="label.markup" xmlns="">
|
||||
<refpurpose>Provides access to element labels</refpurpose>
|
||||
<refdescription id="label.markup-desc">
|
||||
<para>Processing an element in the
|
||||
<literal role="mode">label.markup</literal> mode produces the
|
||||
element label.</para>
|
||||
<para>Trailing punctuation is not added to the label.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<xsl:template match="*" mode="intralabel.punctuation">
|
||||
<xsl:text>.</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="label.markup">
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
<xsl:if test="$verbose">
|
||||
<xsl:message>
|
||||
<xsl:text>Request for label of unexpected element: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set|book" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="string($part.autolabel) != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$part.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:number from="book" count="part" format="{$format}"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="partintro" mode="label.markup">
|
||||
<!-- no label -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="string($preface.autolabel) != 0">
|
||||
<xsl:if test="$component.label.includes.part.label != 0 and
|
||||
ancestor::part">
|
||||
<xsl:variable name="part.label">
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$part.label != ''">
|
||||
<xsl:value-of select="$part.label"/>
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$preface.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="preface" format="{$format}" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book" count="preface" format="{$format}" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="chapter" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="string($chapter.autolabel) != 0">
|
||||
<xsl:if test="$component.label.includes.part.label != 0 and
|
||||
ancestor::part">
|
||||
<xsl:variable name="part.label">
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$part.label != ''">
|
||||
<xsl:value-of select="$part.label"/>
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$chapter.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="chapter" format="{$format}" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book" count="chapter" format="{$format}" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="appendix" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="string($appendix.autolabel) != 0">
|
||||
<xsl:if test="$component.label.includes.part.label != 0 and
|
||||
ancestor::part">
|
||||
<xsl:variable name="part.label">
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$part.label != ''">
|
||||
<xsl:value-of select="$part.label"/>
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$appendix.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="appendix" format="{$format}" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book|article"
|
||||
count="appendix" format="{$format}" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dedication|colophon" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="string($reference.autolabel) != 0">
|
||||
<xsl:if test="$component.label.includes.part.label != 0 and
|
||||
ancestor::part">
|
||||
<xsl:variable name="part.label">
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$part.label != ''">
|
||||
<xsl:value-of select="$part.label"/>
|
||||
<xsl:apply-templates select="ancestor::part"
|
||||
mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$reference.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$label.from.part != 0 and ancestor::part">
|
||||
<xsl:number from="part" count="reference" format="{$format}" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number from="book" count="reference" format="{$format}" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section" mode="label.markup">
|
||||
<!-- if this is a nested section, label the parent -->
|
||||
<xsl:if test="local-name(..) = 'section'">
|
||||
<xsl:variable name="parent.section.label">
|
||||
<xsl:call-template name="label.this.section">
|
||||
<xsl:with-param name="section" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.section.label != '0'">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<!-- if the parent is a component, maybe label that too -->
|
||||
<xsl:variable name="parent.is.component">
|
||||
<xsl:call-template name="is.component">
|
||||
<xsl:with-param name="node" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- does this section get labelled? -->
|
||||
<xsl:variable name="label">
|
||||
<xsl:call-template name="label.this.section">
|
||||
<xsl:with-param name="section" select="."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$section.label.includes.component.label != 0
|
||||
and $parent.is.component != 0">
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
test: <xsl:value-of select="$label"/>, <xsl:number count="section"/>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$label != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$section.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:number format="{$format}" count="section"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect1" mode="label.markup">
|
||||
<!-- if the parent is a component, maybe label that too -->
|
||||
<xsl:variable name="parent.is.component">
|
||||
<xsl:call-template name="is.component">
|
||||
<xsl:with-param name="node" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="component.label">
|
||||
<xsl:if test="$section.label.includes.component.label != 0
|
||||
and $parent.is.component != 0">
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
|
||||
<xsl:variable name="is.numbered">
|
||||
<xsl:call-template name="label.this.section"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$is.numbered != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$section.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:copy-of select="$component.label"/>
|
||||
<xsl:number format="{$format}" count="sect1"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect2|sect3|sect4|sect5" mode="label.markup">
|
||||
<!-- label the parent -->
|
||||
<xsl:variable name="parent.section.label">
|
||||
<xsl:call-template name="label.this.section">
|
||||
<xsl:with-param name="section" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.section.label != '0'">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="is.numbered">
|
||||
<xsl:call-template name="label.this.section"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$is.numbered != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$section.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name(.) = 'sect2'">
|
||||
<xsl:number format="{$format}" count="sect2"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'sect3'">
|
||||
<xsl:number format="{$format}" count="sect3"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'sect4'">
|
||||
<xsl:number format="{$format}" count="sect4"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'sect5'">
|
||||
<xsl:number format="{$format}" count="sect5"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>label.markup: this can't happen!</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bridgehead" mode="label.markup">
|
||||
<!-- FIXME: could we do a better job here? -->
|
||||
<xsl:variable name="contsec"
|
||||
select="(ancestor::section
|
||||
|ancestor::simplesect
|
||||
|ancestor::sect1
|
||||
|ancestor::sect2
|
||||
|ancestor::sect3
|
||||
|ancestor::sect4
|
||||
|ancestor::sect5
|
||||
|ancestor::refsect1
|
||||
|ancestor::refsect2
|
||||
|ancestor::refsect3
|
||||
|ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::preface)[last()]"/>
|
||||
|
||||
<xsl:apply-templates select="$contsec" mode="label.markup"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsect1" mode="label.markup">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$section.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:number count="refsect1" format="{$format}"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsect2|refsect3" mode="label.markup">
|
||||
<!-- label the parent -->
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$section.autolabel != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$section.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name(.) = 'refsect2'">
|
||||
<xsl:number count="refsect2" format="{$format}"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number count="refsect3" format="{$format}"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="simplesect" mode="label.markup">
|
||||
<!-- if this is a nested section, label the parent -->
|
||||
<xsl:if test="local-name(..) = 'section'
|
||||
or local-name(..) = 'sect1'
|
||||
or local-name(..) = 'sect2'
|
||||
or local-name(..) = 'sect3'
|
||||
or local-name(..) = 'sect4'
|
||||
or local-name(..) = 'sect5'">
|
||||
<xsl:variable name="parent.section.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.section.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<!-- if the parent is a component, maybe label that too -->
|
||||
<xsl:variable name="parent.is.component">
|
||||
<xsl:call-template name="is.component">
|
||||
<xsl:with-param name="node" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- does this section get labelled? -->
|
||||
<xsl:variable name="label">
|
||||
<xsl:call-template name="label.this.section">
|
||||
<xsl:with-param name="section" select="."/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$section.label.includes.component.label != 0
|
||||
and $parent.is.component != 0">
|
||||
<xsl:variable name="parent.label">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="$parent.label != ''">
|
||||
<xsl:apply-templates select=".." mode="label.markup"/>
|
||||
<xsl:apply-templates select=".." mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$label != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$section.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:number format="{$format}" count="simplesect"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandadiv" mode="label.markup">
|
||||
<xsl:variable name="lparent" select="(ancestor::set
|
||||
|ancestor::book
|
||||
|ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::preface
|
||||
|ancestor::section
|
||||
|ancestor::simplesect
|
||||
|ancestor::sect1
|
||||
|ancestor::sect2
|
||||
|ancestor::sect3
|
||||
|ancestor::sect4
|
||||
|ancestor::sect5
|
||||
|ancestor::refsect1
|
||||
|ancestor::refsect2
|
||||
|ancestor::refsect3)[last()]"/>
|
||||
|
||||
<xsl:variable name="lparent.prefix">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="$qanda.inherit.numeration != 0">
|
||||
<xsl:if test="$lparent.prefix != ''">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$lparent" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$qandadiv.autolabel != 0">
|
||||
<xsl:variable name="format">
|
||||
<xsl:call-template name="autolabel.format">
|
||||
<xsl:with-param name="format" select="$qandadiv.autolabel"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:value-of select="$prefix"/>
|
||||
<xsl:number level="multiple" count="qandadiv" format="{$format}"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question|answer" mode="label.markup">
|
||||
<xsl:variable name="lparent" select="(ancestor::set
|
||||
|ancestor::book
|
||||
|ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::preface
|
||||
|ancestor::section
|
||||
|ancestor::simplesect
|
||||
|ancestor::sect1
|
||||
|ancestor::sect2
|
||||
|ancestor::sect3
|
||||
|ancestor::sect4
|
||||
|ancestor::sect5
|
||||
|ancestor::refsect1
|
||||
|ancestor::refsect2
|
||||
|ancestor::refsect3)[last()]"/>
|
||||
|
||||
<xsl:variable name="lparent.prefix">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="$qanda.inherit.numeration != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor::qandadiv">
|
||||
<xsl:apply-templates select="ancestor::qandadiv[1]" mode="label.markup"/>
|
||||
<xsl:apply-templates select="ancestor::qandadiv[1]"
|
||||
mode="intralabel.punctuation"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$lparent.prefix != ''">
|
||||
<xsl:apply-templates select="$lparent" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$lparent" mode="intralabel.punctuation"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="inhlabel"
|
||||
select="ancestor-or-self::qandaset/@defaultlabel[1]"/>
|
||||
|
||||
<xsl:variable name="deflabel">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$inhlabel != ''">
|
||||
<xsl:value-of select="$inhlabel"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$qanda.defaultlabel"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="label" select="label"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($label)>0">
|
||||
<xsl:apply-templates select="$label"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$deflabel = 'qanda' and local-name(.) = 'question'">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Question'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$deflabel = 'qanda' and local-name(.) = 'answer'">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Answer'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$deflabel = 'number' and local-name(.) = 'question'">
|
||||
<xsl:value-of select="$prefix"/>
|
||||
<xsl:number level="multiple" count="qandaentry" format="1"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bibliography|glossary|
|
||||
qandaset|index|setindex" mode="label.markup">
|
||||
<xsl:if test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|table|example" mode="label.markup">
|
||||
<xsl:variable name="pchap"
|
||||
select="ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::article[ancestor::book]"/>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="count($pchap) > 0">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$prefix != ''">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$pchap" mode="intralabel.punctuation"/>
|
||||
<xsl:number format="1" from="chapter|appendix" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number format="1" from="book|article" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="procedure" mode="label.markup">
|
||||
<xsl:variable name="pchap"
|
||||
select="ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::article[ancestor::book]"/>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="count($pchap) > 0">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$formal.procedures = 0">
|
||||
<!-- No label -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($pchap)>0">
|
||||
<xsl:if test="$prefix != ''">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$pchap" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
<xsl:number count="procedure[title]" format="1"
|
||||
from="chapter|appendix" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number count="procedure[title]" format="1"
|
||||
from="book|article" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="equation" mode="label.markup">
|
||||
<xsl:variable name="pchap"
|
||||
select="ancestor::chapter
|
||||
|ancestor::appendix
|
||||
|ancestor::article[ancestor::book]"/>
|
||||
|
||||
<xsl:variable name="prefix">
|
||||
<xsl:if test="count($pchap) > 0">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@label">
|
||||
<xsl:value-of select="@label"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($pchap)>0">
|
||||
<xsl:if test="$prefix != ''">
|
||||
<xsl:apply-templates select="$pchap" mode="label.markup"/>
|
||||
<xsl:apply-templates select="$pchap" mode="intralabel.punctuation"/>
|
||||
</xsl:if>
|
||||
<xsl:number format="1" count="equation[title or info/title]"
|
||||
from="chapter|appendix" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number format="1" count="equation[title or info/title]"
|
||||
from="book|article" level="any"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="orderedlist/listitem" mode="label.markup">
|
||||
<xsl:variable name="numeration">
|
||||
<xsl:call-template name="list.numeration">
|
||||
<xsl:with-param name="node" select="parent::orderedlist"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="type">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$numeration='arabic'">1</xsl:when>
|
||||
<xsl:when test="$numeration='loweralpha'">a</xsl:when>
|
||||
<xsl:when test="$numeration='lowerroman'">i</xsl:when>
|
||||
<xsl:when test="$numeration='upperalpha'">A</xsl:when>
|
||||
<xsl:when test="$numeration='upperroman'">I</xsl:when>
|
||||
<!-- What!? This should never happen -->
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>Unexpected numeration: </xsl:text>
|
||||
<xsl:value-of select="$numeration"/>
|
||||
</xsl:message>
|
||||
<xsl:value-of select="1."/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="item-number">
|
||||
<xsl:call-template name="orderedlist-item-number"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:number value="$item-number" format="{$type}"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="abstract" mode="label.markup">
|
||||
<!-- nop -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sidebar" mode="label.markup">
|
||||
<!-- nop -->
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="label.this.section">
|
||||
<xsl:param name="section" select="."/>
|
||||
|
||||
<xsl:variable name="level">
|
||||
<xsl:call-template name="section.level"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$level <= $section.autolabel.max.depth">
|
||||
<xsl:value-of select="$section.autolabel"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<doc:template name="label.this.section" xmlns="">
|
||||
<refpurpose>Returns true if $section should be labelled</refpurpose>
|
||||
<refdescription id="label.this.section-desc">
|
||||
<para>Returns true if the specified section should be labelled.
|
||||
By default, this template returns zero unless
|
||||
the section level is less than or equal to the value of the
|
||||
<literal>$section.autolabel.max.depth</literal> parameter, in
|
||||
which case it returns
|
||||
<literal>$section.autolabel</literal>.
|
||||
Custom stylesheets may override it to get more selective behavior.</para>
|
||||
</refdescription>
|
||||
</doc:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template name="default.autolabel.format">
|
||||
<xsl:param name="context" select="."/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name($context) = 'appendix'">
|
||||
<xsl:value-of select="'A'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name($context) = 'part'">
|
||||
<xsl:value-of select="'I'"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="autolabel.format">
|
||||
<xsl:param name="context" select="."/>
|
||||
<xsl:param name="format"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($format) != 0">
|
||||
<xsl:choose>
|
||||
<xsl:when test="string($format)='arabic' or $format='1'">1</xsl:when>
|
||||
<xsl:when test="$format='loweralpha' or $format='a'">
|
||||
<xsl:value-of select="'a'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$format='lowerroman' or $format='i'">
|
||||
<xsl:value-of select="'i'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$format='upperalpha' or $format='A'">
|
||||
<xsl:value-of select="'A'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$format='upperroman' or $format='I'">
|
||||
<xsl:value-of select="'I'"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$format='arabicindic' or $format='١'">
|
||||
<xsl:value-of select="'١'"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>Unexpected </xsl:text><xsl:value-of select="local-name(.)"/><xsl:text>.autolabel value: </xsl:text>
|
||||
<xsl:value-of select="$format"/><xsl:text>; using default.</xsl:text>
|
||||
</xsl:message>
|
||||
<xsl:call-template name="default.autolabel.format"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<doc:template name="autolabel.format" xmlns="">
|
||||
<refpurpose>Returns format for autolabel parameters</refpurpose>
|
||||
<refdescription id="autolabel.format-desc">
|
||||
<para>Returns format passed as parameter if non zero. Supported
|
||||
format are 'arabic' or '1', 'loweralpha' or 'a', 'lowerroman' or 'i',
|
||||
'upperlapha' or 'A', 'upperroman' or 'I', 'arabicindic' or '١'.
|
||||
If its not one of these then
|
||||
returns the default format.</para>
|
||||
</refdescription>
|
||||
</doc:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
672
doc/reference/lib/docbook-xsl-snapshot/common/lt.xml
Normal file
672
doc/reference/lib/docbook-xsl-snapshot/common/lt.xml
Normal file
@@ -0,0 +1,672 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="lt" english-language-name="Lithuanian">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/lt.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited lt.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Santrauka"/>
|
||||
<l:gentext key="abstract" text="Santrauka"/>
|
||||
<l:gentext key="Answer" text="Ats:"/>
|
||||
<l:gentext key="answer" text="Ats:"/>
|
||||
<l:gentext key="Appendix" text="Priedas"/>
|
||||
<l:gentext key="appendix" text="Priedas"/>
|
||||
<l:gentext key="Article" text="Straipsnis"/>
|
||||
<l:gentext key="article" text="Straipsnis"/>
|
||||
<l:gentext key="Author" text="Autorius"/>
|
||||
<l:gentext key="Bibliography" text="Bibliografija"/>
|
||||
<l:gentext key="bibliography" text="Bibliografija"/>
|
||||
<l:gentext key="Book" text="Knyga"/>
|
||||
<l:gentext key="book" text="Knyga"/>
|
||||
<l:gentext key="CAUTION" text="ATSARGIAI"/>
|
||||
<l:gentext key="Caution" text="Atsargiai"/>
|
||||
<l:gentext key="caution" text="Atsargiai"/>
|
||||
<l:gentext key="Chapter" text="Skyrius"/>
|
||||
<l:gentext key="chapter" text="Skyrius"/>
|
||||
<l:gentext key="Colophon" text="Knygos metrika"/>
|
||||
<l:gentext key="colophon" text="Knygos metrika"/>
|
||||
<l:gentext key="Copyright" text="Autorinės teisės"/>
|
||||
<l:gentext key="copyright" text="Autorinės teisės"/>
|
||||
<l:gentext key="Dedication" text="Dedikacija"/>
|
||||
<l:gentext key="dedication" text="Dedikacija"/>
|
||||
<l:gentext key="Edition" text="Leidimas"/>
|
||||
<l:gentext key="edition" text="Leidimas"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Lygtis"/>
|
||||
<l:gentext key="equation" text="Lygtis"/>
|
||||
<l:gentext key="Example" text="Pavyzdys"/>
|
||||
<l:gentext key="example" text="Pavyzdys"/>
|
||||
<l:gentext key="Figure" text="Pav."/>
|
||||
<l:gentext key="figure" text="Pav."/>
|
||||
<l:gentext key="Glossary" text="Terminų žodynas"/>
|
||||
<l:gentext key="glossary" text="Terminų žodynas"/>
|
||||
<l:gentext key="GlossSee" text="Žr."/>
|
||||
<l:gentext key="glosssee" text="Žr."/>
|
||||
<l:gentext key="GlossSeeAlso" text="Taip pat žr."/>
|
||||
<l:gentext key="glossseealso" text="Taip pat žr."/>
|
||||
<l:gentext key="IMPORTANT" text="SVARBU"/>
|
||||
<l:gentext key="important" text="Svarbu"/>
|
||||
<l:gentext key="Important" text="Svarbu"/>
|
||||
<l:gentext key="Index" text="Rodyklė"/>
|
||||
<l:gentext key="index" text="Rodyklė"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Teisinė pastaba"/>
|
||||
<l:gentext key="legalnotice" text="Teisinė pastaba"/>
|
||||
<l:gentext key="MsgAud" text="Auditorija"/>
|
||||
<l:gentext key="msgaud" text="Auditorija"/>
|
||||
<l:gentext key="MsgLevel" text="Lygmuo"/>
|
||||
<l:gentext key="msglevel" text="Lygmuo"/>
|
||||
<l:gentext key="MsgOrig" text="Kilmė"/>
|
||||
<l:gentext key="msgorig" text="Kilmė"/>
|
||||
<l:gentext key="NOTE" text="PASTABA"/>
|
||||
<l:gentext key="Note" text="Pastaba"/>
|
||||
<l:gentext key="note" text="Pastaba"/>
|
||||
<l:gentext key="Part" text="Dalis"/>
|
||||
<l:gentext key="part" text="Dalis"/>
|
||||
<l:gentext key="Preface" text="Įvadas"/>
|
||||
<l:gentext key="preface" text="Įvadas"/>
|
||||
<l:gentext key="Procedure" text="Procedūra"/>
|
||||
<l:gentext key="procedure" text="Procedūra"/>
|
||||
<l:gentext key="ProductionSet" text="Produkcija"/>
|
||||
<l:gentext key="PubDate" text="Išleidimo data"/>
|
||||
<l:gentext key="pubdate" text="Išleidimo data"/>
|
||||
<l:gentext key="Published" text="Išleistas"/>
|
||||
<l:gentext key="published" text="Išleistas"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="Klaus. ir Ats."/>
|
||||
<l:gentext key="qandadiv" text="Klaus. ir Ats."/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Klaus.:"/>
|
||||
<l:gentext key="question" text="Klaus.:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Nuoroda"/>
|
||||
<l:gentext key="reference" text="Nuoroda"/>
|
||||
<l:gentext key="References" text="Nuorodos"/>
|
||||
<l:gentext key="RefName" text="Pavadinimas"/>
|
||||
<l:gentext key="refname" text="Pavadinimas"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Trumpa apžvalga"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Trumpa apžvalga"/>
|
||||
<l:gentext key="RevHistory" text="Pataisymų istorija"/>
|
||||
<l:gentext key="revhistory" text="Pataisymų istorija"/>
|
||||
<l:gentext key="revision" text="Pataisytas leidimas"/>
|
||||
<l:gentext key="Revision" text="Pataisytas leidimas"/>
|
||||
<l:gentext key="sect1" text="Skyrius"/>
|
||||
<l:gentext key="sect2" text="Skyrius"/>
|
||||
<l:gentext key="sect3" text="Skyrius"/>
|
||||
<l:gentext key="sect4" text="Skyrius"/>
|
||||
<l:gentext key="sect5" text="Skyrius"/>
|
||||
<l:gentext key="section" text="Skyrius"/>
|
||||
<l:gentext key="Section" text="Skyrius"/>
|
||||
<l:gentext key="see" text="žr."/>
|
||||
<l:gentext key="See" text="Žr."/>
|
||||
<l:gentext key="seealso" text="taip pat žr."/>
|
||||
<l:gentext key="Seealso" text="Taip pat žr."/>
|
||||
<l:gentext key="SeeAlso" text="Taip pat žr."/>
|
||||
<l:gentext key="set" text="Set"/>
|
||||
<l:gentext key="Set" text="Set"/>
|
||||
<l:gentext key="setindex" text="Set Index"/>
|
||||
<l:gentext key="SetIndex" text="Set Index"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="žingsnis"/>
|
||||
<l:gentext key="Step" text="Žingsnis"/>
|
||||
<l:gentext key="table" text="Lentelė"/>
|
||||
<l:gentext key="Table" text="Lentelė"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Patarimas"/>
|
||||
<l:gentext key="TIP" text="PATARIMAS"/>
|
||||
<l:gentext key="Tip" text="Patarimas"/>
|
||||
<l:gentext key="Warning" text="Įspėjimas"/>
|
||||
<l:gentext key="warning" text="Įspėjimas"/>
|
||||
<l:gentext key="WARNING" text="ĮSPĖJIMAS"/>
|
||||
<l:gentext key="and" text="ir"/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Redaguotas"/>
|
||||
<l:gentext key="edited" text="Redaguotas"/>
|
||||
<l:gentext key="Editedby" text="Redagavo"/>
|
||||
<l:gentext key="editedby" text="Redagavo"/>
|
||||
<l:gentext key="in" text=""/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="neegzistuojantis elementas"/>
|
||||
<l:gentext key="notes" text="Pastabos"/>
|
||||
<l:gentext key="Notes" text="Pastabos"/>
|
||||
<l:gentext key="Pgs" text="P."/>
|
||||
<l:gentext key="pgs" text="P."/>
|
||||
<l:gentext key="Revisedby" text="Pataisė: "/>
|
||||
<l:gentext key="revisedby" text="Pataisė: "/>
|
||||
<l:gentext key="TableNotes" text="Pastabos"/>
|
||||
<l:gentext key="tablenotes" text="Pastabos"/>
|
||||
<l:gentext key="TableofContents" text="Turinys"/>
|
||||
<l:gentext key="tableofcontents" text="Turinys"/>
|
||||
<l:gentext key="unexpectedelementname" text="Nenumatyto elemento pavadinimas"/>
|
||||
<l:gentext key="unsupported" text="nepalaikomas"/>
|
||||
<l:gentext key="xrefto" text="xref į"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Lygčių sąrašas"/>
|
||||
<l:gentext key="ListofEquations" text="Lygčių sąrašas"/>
|
||||
<l:gentext key="ListofExamples" text="Pavyzdžių sąrašas"/>
|
||||
<l:gentext key="listofexamples" text="Pavyzdžių sąrašas"/>
|
||||
<l:gentext key="ListofFigures" text="Paveikslų sąrašas"/>
|
||||
<l:gentext key="listoffigures" text="Paveikslų sąrašas"/>
|
||||
<l:gentext key="ListofProcedures" text="Procedūrų sąrašas"/>
|
||||
<l:gentext key="listofprocedures" text="Procedūrų sąrašas"/>
|
||||
<l:gentext key="listoftables" text="Lentelių sąrašas"/>
|
||||
<l:gentext key="ListofTables" text="Lentelių sąrašas"/>
|
||||
<l:gentext key="ListofUnknown" text="Nežinomas sąrašas"/>
|
||||
<l:gentext key="listofunknown" text="Nežinomas sąrašas"/>
|
||||
<l:gentext key="nav-home" text="Į pradžią"/>
|
||||
<l:gentext key="nav-next" text="Tolesnis"/>
|
||||
<l:gentext key="nav-next-sibling" text="Spartus pirmyn"/>
|
||||
<l:gentext key="nav-prev" text="Ankstesnis"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Spartus atgal"/>
|
||||
<l:gentext key="nav-up" text="Aukštyn"/>
|
||||
<l:gentext key="nav-toc" text="Turinys"/>
|
||||
<l:gentext key="Draft" text="Planas"/>
|
||||
<l:gentext key="above" text="aukščiau"/>
|
||||
<l:gentext key="below" text="žemiau"/>
|
||||
<l:gentext key="sectioncalled" text="skyrius pavadinimu"/>
|
||||
<l:gentext key="index symbols" text="Simboliai"/>
|
||||
<l:gentext key="lowercase.alpha" text="aąbcčdeęėfghiįyjklmnoprsštuųūvzžqwx"/>
|
||||
<l:gentext key="uppercase.alpha" text="AĄBCČDEĘĖFGHIĮYJKLMNOPRSŠTUŲŪVZŽQWX"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Priedas %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Skyrius %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Lygtis %n. %t"/>
|
||||
<l:template name="example" text="Pavyzdys %n. %t"/>
|
||||
<l:template name="figure" text="Pav. %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Dalis %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procedūra %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produkcija %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Lentelė %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Priedas %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Skyrius %n. %t"/>
|
||||
<l:template name="part" text="Dalis %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Ats: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Klaus.: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Klaus.: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(%p puslapis)"/>
|
||||
<l:template name="docname" text=" dokumente %o"/>
|
||||
<l:template name="docnamelong" text=" dokumente %o"/>
|
||||
<l:template name="pageabbrev" text="(%p p.)"/>
|
||||
<l:template name="Page" text="%p puslapis"/>
|
||||
<l:template name="bridgehead" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsection" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsect1" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsect2" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsect3" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="sect1" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="sect2" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="sect3" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="sect4" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="sect5" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="section" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="simplesect" text="skyrius pavadinimu „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="Ats: %n"/>
|
||||
<l:template name="appendix" text="Priedas %n"/>
|
||||
<l:template name="bridgehead" text="Skyrius %n"/>
|
||||
<l:template name="chapter" text="Skyrius %n"/>
|
||||
<l:template name="equation" text="Lygtis %n"/>
|
||||
<l:template name="example" text="Pavyzdys %n"/>
|
||||
<l:template name="figure" text="Pav. %n"/>
|
||||
<l:template name="part" text="Dalis %n"/>
|
||||
<l:template name="procedure" text="Procedūra %n"/>
|
||||
<l:template name="productionset" text="Produkcija %n"/>
|
||||
<l:template name="qandadiv" text="Klaus. ir Ats. %n"/>
|
||||
<l:template name="qandaentry" text="Klaus.: %n"/>
|
||||
<l:template name="question" text="Klaus.: %n"/>
|
||||
<l:template name="sect1" text="Skyrius %n"/>
|
||||
<l:template name="sect2" text="Skyrius %n"/>
|
||||
<l:template name="sect3" text="Skyrius %n"/>
|
||||
<l:template name="sect4" text="Skyrius %n"/>
|
||||
<l:template name="sect5" text="Skyrius %n"/>
|
||||
<l:template name="section" text="Skyrius %n"/>
|
||||
<l:template name="table" text="Lentelė %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Priedas %n, %t"/>
|
||||
<l:template name="bridgehead" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="chapter" text="Skyrius %n, %t"/>
|
||||
<l:template name="equation" text="Lygtis %n, „%t“"/>
|
||||
<l:template name="example" text="Pavyzdys %n, „%t“"/>
|
||||
<l:template name="figure" text="Pav. %n, „%t“"/>
|
||||
<l:template name="part" text="Dalis %n, „%t“"/>
|
||||
<l:template name="procedure" text="Procedūra %n, „%t“"/>
|
||||
<l:template name="productionset" text="Produkcija %n, „%t“"/>
|
||||
<l:template name="qandadiv" text="Klaus. ir Ats. %n, „%t“"/>
|
||||
<l:template name="refsect1" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsect2" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsect3" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="refsection" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="sect1" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="sect2" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="sect3" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="sect4" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="sect5" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="section" text="Skyrius %n, „%t“"/>
|
||||
<l:template name="simplesect" text="skyrius pavadinimu „%t“"/>
|
||||
<l:template name="table" text="Lentelė %n, „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" ir "/>
|
||||
<l:template name="seplast" text=", ir "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Žr. %t"/>
|
||||
<l:template name="seealso" text="Taip pat žr. %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Auditorija: "/>
|
||||
<l:template name="MsgLevel" text="Lygmuo: "/>
|
||||
<l:template name="MsgOrig" text="Kilmė: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="Y-m-d"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Apibrėžimas: "/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Sausis"/>
|
||||
<l:template name="February" text="Vasaris"/>
|
||||
<l:template name="March" text="Kovas"/>
|
||||
<l:template name="April" text="Balandis"/>
|
||||
<l:template name="May" text="Gegužė"/>
|
||||
<l:template name="June" text="Birželis"/>
|
||||
<l:template name="July" text="Liepa"/>
|
||||
<l:template name="August" text="Rugpjūtis"/>
|
||||
<l:template name="September" text="Rugsėjis"/>
|
||||
<l:template name="October" text="Spalis"/>
|
||||
<l:template name="November" text="Lapkritis"/>
|
||||
<l:template name="December" text="Gruodis"/>
|
||||
<l:template name="Monday" text="Pirmadienis"/>
|
||||
<l:template name="Tuesday" text="Antradienis"/>
|
||||
<l:template name="Wednesday" text="Trečiadienis"/>
|
||||
<l:template name="Thursday" text="Ketvirtadienis"/>
|
||||
<l:template name="Friday" text="Penktadienis"/>
|
||||
<l:template name="Saturday" text="Šeštadienis"/>
|
||||
<l:template name="Sunday" text="Sekmadienis"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Sau"/>
|
||||
<l:template name="Feb" text="Vas"/>
|
||||
<l:template name="Mar" text="Kov"/>
|
||||
<l:template name="Apr" text="Bal"/>
|
||||
<l:template name="May" text="Geg"/>
|
||||
<l:template name="Jun" text="Bir"/>
|
||||
<l:template name="Jul" text="Lie"/>
|
||||
<l:template name="Aug" text="Rugp"/>
|
||||
<l:template name="Sep" text="Rugs"/>
|
||||
<l:template name="Oct" text="Spa"/>
|
||||
<l:template name="Nov" text="Lap"/>
|
||||
<l:template name="Dec" text="Gru"/>
|
||||
<l:template name="Mon" text="Pr"/>
|
||||
<l:template name="Tue" text="An"/>
|
||||
<l:template name="Wed" text="Tr"/>
|
||||
<l:template name="Thu" text="Kt"/>
|
||||
<l:template name="Fri" text="Pn"/>
|
||||
<l:template name="Sat" text="Št"/>
|
||||
<l:template name="Sun" text="Sk"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0427 Lithuanian"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", "/>
|
||||
<l:template name="number-separator" text=", "/>
|
||||
<l:template name="range-separator" text="-"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Simboliai</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="1">Ą</l:l>
|
||||
<l:l i="1">ą</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="3">Č</l:l>
|
||||
<l:l i="3">č</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="5">Ę</l:l>
|
||||
<l:l i="5">ę</l:l>
|
||||
<l:l i="5">Ė</l:l>
|
||||
<l:l i="5">ė</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="9">Į</l:l>
|
||||
<l:l i="9">į</l:l>
|
||||
<l:l i="10">Y</l:l>
|
||||
<l:l i="10">y</l:l>
|
||||
<l:l i="11">J</l:l>
|
||||
<l:l i="11">j</l:l>
|
||||
<l:l i="12">K</l:l>
|
||||
<l:l i="12">k</l:l>
|
||||
<l:l i="13">L</l:l>
|
||||
<l:l i="13">l</l:l>
|
||||
<l:l i="14">M</l:l>
|
||||
<l:l i="14">m</l:l>
|
||||
<l:l i="15">N</l:l>
|
||||
<l:l i="15">n</l:l>
|
||||
<l:l i="16">O</l:l>
|
||||
<l:l i="16">o</l:l>
|
||||
<l:l i="17">P</l:l>
|
||||
<l:l i="17">p</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="19">Š</l:l>
|
||||
<l:l i="19">š</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="21">Ų</l:l>
|
||||
<l:l i="21">ų</l:l>
|
||||
<l:l i="21">Ū</l:l>
|
||||
<l:l i="21">ū</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">Z</l:l>
|
||||
<l:l i="23">z</l:l>
|
||||
<l:l i="23">Ž</l:l>
|
||||
<l:l i="23">ž</l:l>
|
||||
<l:l i="24">Q</l:l>
|
||||
<l:l i="24">q</l:l>
|
||||
<l:l i="25">W</l:l>
|
||||
<l:l i="25">w</l:l>
|
||||
<l:l i="26">X</l:l>
|
||||
<l:l i="26">x</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/lv.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/lv.xml
Normal file
File diff suppressed because it is too large
Load Diff
724
doc/reference/lib/docbook-xsl-snapshot/common/mn.xml
Normal file
724
doc/reference/lib/docbook-xsl-snapshot/common/mn.xml
Normal file
@@ -0,0 +1,724 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="mn" english-language-name="Mongolian">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/mn.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited mn.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Товч агуулга"/>
|
||||
<l:gentext key="abstract" text="товч агуулга"/>
|
||||
<l:gentext key="Answer" text="Х:"/>
|
||||
<l:gentext key="answer" text="Х:"/>
|
||||
<l:gentext key="Appendix" text="Хавсралт"/>
|
||||
<l:gentext key="appendix" text="хавсралт"/>
|
||||
<l:gentext key="Article" text="Өгүүлэл"/>
|
||||
<l:gentext key="article" text="өгүүлэл"/>
|
||||
<l:gentext key="Author" text="Зохиогч"/>
|
||||
<l:gentext key="Bibliography" text="Ном зүй"/>
|
||||
<l:gentext key="bibliography" text="ном зүй"/>
|
||||
<l:gentext key="Book" text="Ном"/>
|
||||
<l:gentext key="book" text="ном"/>
|
||||
<l:gentext key="CAUTION" text="АНХААРУУЛГА"/>
|
||||
<l:gentext key="Caution" text="Анхааруулга"/>
|
||||
<l:gentext key="caution" text="анхааруулга"/>
|
||||
<l:gentext key="Chapter" text="Бүлэг"/>
|
||||
<l:gentext key="chapter" text="бүлэг"/>
|
||||
<l:gentext key="Colophon" text="Сүүл тайлбар"/>
|
||||
<l:gentext key="colophon" text="сүүл тайлбар"/>
|
||||
<l:gentext key="Copyright" text="Зохиогчийн эрх"/>
|
||||
<l:gentext key="copyright" text="зохиогчийн эрх"/>
|
||||
<l:gentext key="Dedication" text="Зохиогчийн үг"/>
|
||||
<l:gentext key="dedication" text="зохиогчийн үг"/>
|
||||
<l:gentext key="Edition" text="Хэвлэл"/>
|
||||
<l:gentext key="edition" text="хэвлэл"/>
|
||||
<l:gentext key="Editor" text="Хянан тохиолдуулагч"/>
|
||||
<l:gentext key="Equation" text="Тэгшитгэл"/>
|
||||
<l:gentext key="equation" text="тэгшитгэл"/>
|
||||
<l:gentext key="Example" text="Жишээ"/>
|
||||
<l:gentext key="example" text="жишээ"/>
|
||||
<l:gentext key="Figure" text="Зураг"/>
|
||||
<l:gentext key="figure" text="зураг"/>
|
||||
<l:gentext key="Glossary" text="Нэр томъёо"/>
|
||||
<l:gentext key="glossary" text="нэр томъёо"/>
|
||||
<l:gentext key="GlossSee" text="харна уу"/>
|
||||
<l:gentext key="glosssee" text="харна уу"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Бас харна уу"/>
|
||||
<l:gentext key="glossseealso" text="бас харна уу"/>
|
||||
<l:gentext key="IMPORTANT" text="ЧУХАЛ"/>
|
||||
<l:gentext key="important" text="чухал"/>
|
||||
<l:gentext key="Important" text="Чухал"/>
|
||||
<l:gentext key="Index" text="Үгийн жагсаалт"/>
|
||||
<l:gentext key="index" text="үгийн жагсаалт"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Хуулийн заалт"/>
|
||||
<l:gentext key="legalnotice" text="хуулийн заалт"/>
|
||||
<l:gentext key="MsgAud" text="Зориулалт"/>
|
||||
<l:gentext key="msgaud" text="зориулалт"/>
|
||||
<l:gentext key="MsgLevel" text="Түвшин"/>
|
||||
<l:gentext key="msglevel" text="түвшин"/>
|
||||
<l:gentext key="MsgOrig" text="Үүсэл"/>
|
||||
<l:gentext key="msgorig" text="үүсэл"/>
|
||||
<l:gentext key="NOTE" text="ТЭМДЭГЛЭЛ"/>
|
||||
<l:gentext key="Note" text="Тэмдэглэл"/>
|
||||
<l:gentext key="note" text="тэмдэглэл"/>
|
||||
<l:gentext key="Part" text="хэсэг"/>
|
||||
<l:gentext key="part" text="Хэсэг"/>
|
||||
<l:gentext key="Preface" text="Өмнөх үг"/>
|
||||
<l:gentext key="preface" text="өмнөх үг"/>
|
||||
<l:gentext key="Procedure" text="Гүйцэтгэл"/>
|
||||
<l:gentext key="procedure" text="гүйцэтгэл"/>
|
||||
<l:gentext key="ProductionSet" text="Бүтээгдэхүүн"/>
|
||||
<l:gentext key="PubDate" text="Хэвлэгдсэн огноо"/>
|
||||
<l:gentext key="pubdate" text="хэвлэгдсэн огноо"/>
|
||||
<l:gentext key="Published" text="Хэвлэгдсэн"/>
|
||||
<l:gentext key="published" text="хэвлэгдсэн"/>
|
||||
<l:gentext key="Publisher" text="Хэвлэсэн компани"/>
|
||||
<l:gentext key="Qandadiv" text="А ба Х"/>
|
||||
<l:gentext key="qandadiv" text="А ба Х"/>
|
||||
<l:gentext key="QandASet" text="Түгээмэл тавигддаг асуултууд"/>
|
||||
<l:gentext key="Question" text="А:"/>
|
||||
<l:gentext key="question" text="А:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Ашигласан ном"/>
|
||||
<l:gentext key="reference" text="ашигласан ном"/>
|
||||
<l:gentext key="References" text="Ашигласан номнууд"/>
|
||||
<l:gentext key="RefName" text="Нэр"/>
|
||||
<l:gentext key="refname" text="нэр"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Ерөнхий агуулга"/>
|
||||
<l:gentext key="refsynopsisdiv" text="ерөнхий агуулга"/>
|
||||
<l:gentext key="RevHistory" text="Залруулалтын түүх"/>
|
||||
<l:gentext key="revhistory" text="залруулалтын түүх"/>
|
||||
<l:gentext key="revision" text="залруулалт"/>
|
||||
<l:gentext key="Revision" text="Залруулалт"/>
|
||||
<l:gentext key="sect1" text="Хэсэг"/>
|
||||
<l:gentext key="sect2" text="Хэсэг"/>
|
||||
<l:gentext key="sect3" text="Хэсэг"/>
|
||||
<l:gentext key="sect4" text="Хэсэг"/>
|
||||
<l:gentext key="sect5" text="Хэсэг"/>
|
||||
<l:gentext key="section" text="Хэсэг"/>
|
||||
<l:gentext key="Section" text="Хэсэг"/>
|
||||
<l:gentext key="see" text="Харна уу"/>
|
||||
<l:gentext key="See" text="харна уу"/>
|
||||
<l:gentext key="seealso" text="бас харна уу"/>
|
||||
<l:gentext key="Seealso" text="Бас харна уу"/>
|
||||
<l:gentext key="SeeAlso" text="Бас харна уу"/>
|
||||
<l:gentext key="set" text="цуглуулга"/>
|
||||
<l:gentext key="Set" text="Цуглуулга"/>
|
||||
<l:gentext key="setindex" text="цуглуулгын жагсаалт"/>
|
||||
<l:gentext key="SetIndex" text="Цуглуулгын жагсаалт"/>
|
||||
<l:gentext key="Sidebar" text="Хажуу самбар"/>
|
||||
<l:gentext key="sidebar" text="хажуу самбар"/>
|
||||
<l:gentext key="step" text="алхам"/>
|
||||
<l:gentext key="Step" text="Алхам"/>
|
||||
<l:gentext key="table" text="хүснэгт"/>
|
||||
<l:gentext key="Table" text="Хүснэгт"/>
|
||||
<l:gentext key="task" text="даалгавар"/>
|
||||
<l:gentext key="Task" text="Даалгавар"/>
|
||||
<l:gentext key="tip" text="зөвлөгөө"/>
|
||||
<l:gentext key="TIP" text="ЗӨВЛӨГӨӨ"/>
|
||||
<l:gentext key="Tip" text="Зөвлөгөө"/>
|
||||
<l:gentext key="Warning" text="Сануулга"/>
|
||||
<l:gentext key="warning" text="сануулга"/>
|
||||
<l:gentext key="WARNING" text="САНУУЛГА"/>
|
||||
<l:gentext key="and" text="ба"/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Хянасан"/>
|
||||
<l:gentext key="edited" text="хянасан"/>
|
||||
<l:gentext key="Editedby" text="Хянан тохиолдуулсан"/>
|
||||
<l:gentext key="editedby" text="хянан тохиолдуулсан"/>
|
||||
<l:gentext key="in" text="дотор"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="байхгүй элемент"/>
|
||||
<l:gentext key="notes" text="тайлбар"/>
|
||||
<l:gentext key="Notes" text="Тайлбар"/>
|
||||
<l:gentext key="Pgs" text="Хуудас"/>
|
||||
<l:gentext key="pgs" text="хуудас"/>
|
||||
<l:gentext key="Revisedby" text="Залруулсан: "/>
|
||||
<l:gentext key="revisedby" text="залруулсан: "/>
|
||||
<l:gentext key="TableNotes" text="Тайлбар"/>
|
||||
<l:gentext key="tablenotes" text="тайлбар"/>
|
||||
<l:gentext key="TableofContents" text="Гарчиг"/>
|
||||
<l:gentext key="tableofcontents" text="гарчиг"/>
|
||||
<l:gentext key="unexpectedelementname" text="Санамсаргүй элемент"/>
|
||||
<l:gentext key="unsupported" text="дэмжигдээгүй"/>
|
||||
<l:gentext key="xrefto" text="xref руу"/>
|
||||
<l:gentext key="Authors" text="Зохиогчид"/>
|
||||
<l:gentext key="copyeditor" text="Хуулбар хянан тохиолдуулагч"/>
|
||||
<l:gentext key="graphicdesigner" text="График дизайнч"/>
|
||||
<l:gentext key="productioneditor" text="Бүтээгдэхүүн хянан тохиолдуулагч"/>
|
||||
<l:gentext key="technicaleditor" text="Техникийн хянан тохиолдуулагч"/>
|
||||
<l:gentext key="translator" text="Орчуулагч"/>
|
||||
<l:gentext key="listofequations" text="тэгшитгэлийн жагсаалт"/>
|
||||
<l:gentext key="ListofEquations" text="Тэгшитгэлийн жагсаалт"/>
|
||||
<l:gentext key="ListofExamples" text="Жишээний жагсаалт"/>
|
||||
<l:gentext key="listofexamples" text="жишээний жагсаалт"/>
|
||||
<l:gentext key="ListofFigures" text="Зургийн жагсаалт"/>
|
||||
<l:gentext key="listoffigures" text="зургийн жагсаалт"/>
|
||||
<l:gentext key="ListofProcedures" text="Гүйцэтгэлийн жагсаалт"/>
|
||||
<l:gentext key="listofprocedures" text="гүйцэтгэлийн жагсаалт"/>
|
||||
<l:gentext key="listoftables" text="хүснэгтийн жагсаалт"/>
|
||||
<l:gentext key="ListofTables" text="Хүснэгтийн жагсаалт"/>
|
||||
<l:gentext key="ListofUnknown" text="Тодорхойгүй жагсаалт"/>
|
||||
<l:gentext key="listofunknown" text="тодорхойгүй жагсаалт"/>
|
||||
<l:gentext key="nav-home" text="Эхлэл"/>
|
||||
<l:gentext key="nav-next" text="Дараах"/>
|
||||
<l:gentext key="nav-next-sibling" text="Дараах"/>
|
||||
<l:gentext key="nav-prev" text="Өмнөх"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Өмнөх"/>
|
||||
<l:gentext key="nav-up" text="Дээш"/>
|
||||
<l:gentext key="nav-toc" text="Гарчиг"/>
|
||||
<l:gentext key="Draft" text="Ноорог"/>
|
||||
<l:gentext key="above" text="дээр"/>
|
||||
<l:gentext key="below" text="доор"/>
|
||||
<l:gentext key="sectioncalled" text="Хэсгийн нэр"/>
|
||||
<l:gentext key="index symbols" text="тэмдэгтүүд"/>
|
||||
<l:gentext key="lowercase.alpha" text="абвгдеёжзийклмноөпрстуүфхцчшщъыьэюя"/>
|
||||
<l:gentext key="uppercase.alpha" text="АБВГДЕЁЖЗИЙКЛМНОӨПРСТУҮФХЦЧШЩЪЫЬЭЮЯ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="«"/>
|
||||
<l:dingbat key="endquote" text="»"/>
|
||||
<l:dingbat key="nestedstartquote" text="„"/>
|
||||
<l:dingbat key="nestedendquote" text="“"/>
|
||||
<l:dingbat key="singlestartquote" text="‚"/>
|
||||
<l:dingbat key="singleendquote" text="‘"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="3"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="овог-нэр"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Хавсралт %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Бүлэг %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Тэгшитгэл %n. %t"/>
|
||||
<l:template name="example" text="Жишээ %n. %t"/>
|
||||
<l:template name="figure" text="Зураг %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="хэсэг %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Гүйцэтгэл %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Бүтээгдэхүүн %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="А: %n"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Хүснэгт %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t"/>
|
||||
<l:template name="taskprerequisites" text="%t"/>
|
||||
<l:template name="taskrelated" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Хавсралт %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Бүлэг %n. %t"/>
|
||||
<l:template name="part" text="хэсэг %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Х: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="А: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="А: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" %o "/>
|
||||
<l:template name="olink.page.citation" text=" (хуудас %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(Хуудас %p)"/>
|
||||
<l:template name="docname" text=" %o "/>
|
||||
<l:template name="docnamelong" text=" %o гарчигтай баримтад"/>
|
||||
<l:template name="pageabbrev" text="(Х. %p)"/>
|
||||
<l:template name="Page" text="Хуудас %p"/>
|
||||
<l:template name="bridgehead" text="«%t»"/>
|
||||
<l:template name="refsection" text="«%t»"/>
|
||||
<l:template name="refsect1" text="«%t»"/>
|
||||
<l:template name="refsect2" text="«%t»"/>
|
||||
<l:template name="refsect3" text="«%t»"/>
|
||||
<l:template name="sect1" text="«%t»"/>
|
||||
<l:template name="sect2" text="«%t»"/>
|
||||
<l:template name="sect3" text="«%t»"/>
|
||||
<l:template name="sect4" text="«%t»"/>
|
||||
<l:template name="sect5" text="«%t»"/>
|
||||
<l:template name="section" text="«%t»"/>
|
||||
<l:template name="simplesect" text="«%t»"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="Х: %n"/>
|
||||
<l:template name="appendix" text="Хавсралт %n"/>
|
||||
<l:template name="bridgehead" text="Хэсэг %n"/>
|
||||
<l:template name="chapter" text="Бүлэг %n"/>
|
||||
<l:template name="equation" text="Тэгшитгэл %n"/>
|
||||
<l:template name="example" text="Жишээ %n"/>
|
||||
<l:template name="figure" text="Зураг %n"/>
|
||||
<l:template name="part" text="хэсэг %n"/>
|
||||
<l:template name="procedure" text="Гүйцэтгэл %n"/>
|
||||
<l:template name="productionset" text="Бүтээгдэхүүн %n"/>
|
||||
<l:template name="qandadiv" text="А ба Х %n"/>
|
||||
<l:template name="qandaentry" text="А: %n"/>
|
||||
<l:template name="question" text="А: %n"/>
|
||||
<l:template name="sect1" text="Хэсэг %n"/>
|
||||
<l:template name="sect2" text="Хэсэг %n"/>
|
||||
<l:template name="sect3" text="Хэсэг %n"/>
|
||||
<l:template name="sect4" text="Хэсэг %n"/>
|
||||
<l:template name="sect5" text="Хэсэг %n"/>
|
||||
<l:template name="section" text="Хэсэг %n"/>
|
||||
<l:template name="table" text="Хүснэгт %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Хавсралт %n, %t"/>
|
||||
<l:template name="bridgehead" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="chapter" text="Бүлэг %n, %t"/>
|
||||
<l:template name="equation" text="Тэгшитгэл %n, «%t»"/>
|
||||
<l:template name="example" text="Жишээ %n, «%t»"/>
|
||||
<l:template name="figure" text="Зураг %n, «%t»"/>
|
||||
<l:template name="part" text="хэсэг %n, «%t»"/>
|
||||
<l:template name="procedure" text="Гүйцэтгэл %n, «%t»"/>
|
||||
<l:template name="productionset" text="Бүтээгдэхүүн %n, «%t»"/>
|
||||
<l:template name="qandadiv" text="А ба Х %n, «%t»"/>
|
||||
<l:template name="refsect1" text="Хэсгийн нэр «%t»"/>
|
||||
<l:template name="refsect2" text="Хэсгийн нэр «%t»"/>
|
||||
<l:template name="refsect3" text="Хэсгийн нэр «%t»"/>
|
||||
<l:template name="refsection" text="Хэсгийн нэр «%t»"/>
|
||||
<l:template name="sect1" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="sect2" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="sect3" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="sect4" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="sect5" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="section" text="Хэсэг %n, «%t»"/>
|
||||
<l:template name="simplesect" text="Хэсгийн нэр «%t»"/>
|
||||
<l:template name="table" text="Хүснэгт %n, «%t»"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" ба "/>
|
||||
<l:template name="seplast" text=", ба "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="харна уу %t"/>
|
||||
<l:template name="seealso" text="Бас харна уу %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Зориулалт: "/>
|
||||
<l:template name="MsgLevel" text="Түвшин: "/>
|
||||
<l:template name="MsgOrig" text="Үүсэл: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="Y/m/d"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Тодорхойлолт: "/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Хулгана сарын"/>
|
||||
<l:template name="February" text="Үхэр сарын"/>
|
||||
<l:template name="March" text="Бар сарын"/>
|
||||
<l:template name="April" text="Туулай сарын"/>
|
||||
<l:template name="May" text="Луу сарын"/>
|
||||
<l:template name="June" text="Могой сарын"/>
|
||||
<l:template name="July" text="Морь сарын"/>
|
||||
<l:template name="August" text="Хонь сарын"/>
|
||||
<l:template name="September" text="Бич сарын"/>
|
||||
<l:template name="October" text="Тахиа сарын"/>
|
||||
<l:template name="November" text="Нохой сарын"/>
|
||||
<l:template name="December" text="Гахай сарын"/>
|
||||
<l:template name="Monday" text="Даваа"/>
|
||||
<l:template name="Tuesday" text="Мягмар"/>
|
||||
<l:template name="Wednesday" text="Лхагва"/>
|
||||
<l:template name="Thursday" text="Пүрэв"/>
|
||||
<l:template name="Friday" text="Баасан"/>
|
||||
<l:template name="Saturday" text="Бямба"/>
|
||||
<l:template name="Sunday" text="Ням"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Хул"/>
|
||||
<l:template name="Feb" text="Үхэ"/>
|
||||
<l:template name="Mar" text="Бар"/>
|
||||
<l:template name="Apr" text="Туу"/>
|
||||
<l:template name="May" text="Луу"/>
|
||||
<l:template name="Jun" text="Мог"/>
|
||||
<l:template name="Jul" text="Мор"/>
|
||||
<l:template name="Aug" text="Хон"/>
|
||||
<l:template name="Sep" text="Бич"/>
|
||||
<l:template name="Oct" text="Тах"/>
|
||||
<l:template name="Nov" text="Нох"/>
|
||||
<l:template name="Dec" text="Гах"/>
|
||||
<l:template name="Mon" text="Да"/>
|
||||
<l:template name="Tue" text="Мя"/>
|
||||
<l:template name="Wed" text="Лх"/>
|
||||
<l:template name="Thu" text="Пү"/>
|
||||
<l:template name="Fri" text="Ба"/>
|
||||
<l:template name="Sat" text="Бя"/>
|
||||
<l:template name="Sun" text="Ня"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0450 Mongolian (MONGOLIA)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", "/>
|
||||
<l:template name="number-separator" text=", "/>
|
||||
<l:template name="range-separator" text="-"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Тэмдэгтүүд</l:l>
|
||||
<l:l i="10">A</l:l>
|
||||
<l:l i="10">a</l:l>
|
||||
<l:l i="20">B</l:l>
|
||||
<l:l i="20">b</l:l>
|
||||
<l:l i="30">C</l:l>
|
||||
<l:l i="30">c</l:l>
|
||||
<l:l i="40">D</l:l>
|
||||
<l:l i="40">d</l:l>
|
||||
<l:l i="50">E</l:l>
|
||||
<l:l i="50">e</l:l>
|
||||
<l:l i="60">F</l:l>
|
||||
<l:l i="60">f</l:l>
|
||||
<l:l i="70">G</l:l>
|
||||
<l:l i="70">g</l:l>
|
||||
<l:l i="80">H</l:l>
|
||||
<l:l i="80">h</l:l>
|
||||
<l:l i="90">I</l:l>
|
||||
<l:l i="90">i</l:l>
|
||||
<l:l i="100">J</l:l>
|
||||
<l:l i="100">j</l:l>
|
||||
<l:l i="110">K</l:l>
|
||||
<l:l i="110">k</l:l>
|
||||
<l:l i="120">L</l:l>
|
||||
<l:l i="120">l</l:l>
|
||||
<l:l i="130">M</l:l>
|
||||
<l:l i="130">m</l:l>
|
||||
<l:l i="140">N</l:l>
|
||||
<l:l i="140">n</l:l>
|
||||
<l:l i="150">O</l:l>
|
||||
<l:l i="150">o</l:l>
|
||||
<l:l i="160">P</l:l>
|
||||
<l:l i="160">p</l:l>
|
||||
<l:l i="170">Q</l:l>
|
||||
<l:l i="170">q</l:l>
|
||||
<l:l i="180">R</l:l>
|
||||
<l:l i="180">r</l:l>
|
||||
<l:l i="190">S</l:l>
|
||||
<l:l i="190">s</l:l>
|
||||
<l:l i="200">T</l:l>
|
||||
<l:l i="200">t</l:l>
|
||||
<l:l i="210">U</l:l>
|
||||
<l:l i="210">u</l:l>
|
||||
<l:l i="220">V</l:l>
|
||||
<l:l i="220">v</l:l>
|
||||
<l:l i="230">W</l:l>
|
||||
<l:l i="230">w</l:l>
|
||||
<l:l i="240">X</l:l>
|
||||
<l:l i="240">x</l:l>
|
||||
<l:l i="250">Y</l:l>
|
||||
<l:l i="250">y</l:l>
|
||||
<l:l i="260">Z</l:l>
|
||||
<l:l i="260">z</l:l>
|
||||
<l:l i="270">А</l:l>
|
||||
<l:l i="270">а</l:l>
|
||||
<l:l i="280">Б</l:l>
|
||||
<l:l i="280">б</l:l>
|
||||
<l:l i="290">В</l:l>
|
||||
<l:l i="290">в</l:l>
|
||||
<l:l i="300">Г</l:l>
|
||||
<l:l i="300">г</l:l>
|
||||
<l:l i="310">Д</l:l>
|
||||
<l:l i="310">д</l:l>
|
||||
<l:l i="320">Е</l:l>
|
||||
<l:l i="320">е</l:l>
|
||||
<l:l i="330">Ё</l:l>
|
||||
<l:l i="330">ё</l:l>
|
||||
<l:l i="340">Ж</l:l>
|
||||
<l:l i="340">ж</l:l>
|
||||
<l:l i="350">З</l:l>
|
||||
<l:l i="350">з</l:l>
|
||||
<l:l i="360">И</l:l>
|
||||
<l:l i="360">и</l:l>
|
||||
<l:l i="370">Й</l:l>
|
||||
<l:l i="370">й</l:l>
|
||||
<l:l i="380">К</l:l>
|
||||
<l:l i="380">к</l:l>
|
||||
<l:l i="390">Л</l:l>
|
||||
<l:l i="390">л</l:l>
|
||||
<l:l i="400">М</l:l>
|
||||
<l:l i="400">м</l:l>
|
||||
<l:l i="410">Н</l:l>
|
||||
<l:l i="410">н</l:l>
|
||||
<l:l i="420">О</l:l>
|
||||
<l:l i="420">о</l:l>
|
||||
<l:l i="430">Ө</l:l>
|
||||
<l:l i="430">ө</l:l>
|
||||
<l:l i="440">П</l:l>
|
||||
<l:l i="440">п</l:l>
|
||||
<l:l i="450">Р</l:l>
|
||||
<l:l i="450">р</l:l>
|
||||
<l:l i="460">С</l:l>
|
||||
<l:l i="460">с</l:l>
|
||||
<l:l i="470">Т</l:l>
|
||||
<l:l i="470">т</l:l>
|
||||
<l:l i="480">У</l:l>
|
||||
<l:l i="480">у</l:l>
|
||||
<l:l i="490">Ү</l:l>
|
||||
<l:l i="490">ү</l:l>
|
||||
<l:l i="500">Ф</l:l>
|
||||
<l:l i="500">ф</l:l>
|
||||
<l:l i="510">Х</l:l>
|
||||
<l:l i="510">х</l:l>
|
||||
<l:l i="520">Ц</l:l>
|
||||
<l:l i="520">ц</l:l>
|
||||
<l:l i="530">Ч</l:l>
|
||||
<l:l i="530">ч</l:l>
|
||||
<l:l i="540">Ш</l:l>
|
||||
<l:l i="540">ш</l:l>
|
||||
<l:l i="550">Щ</l:l>
|
||||
<l:l i="550">щ</l:l>
|
||||
<l:l i="560">Ъ</l:l>
|
||||
<l:l i="560">ъ</l:l>
|
||||
<l:l i="570">Ы</l:l>
|
||||
<l:l i="570">ы</l:l>
|
||||
<l:l i="580">Ь</l:l>
|
||||
<l:l i="580">ь</l:l>
|
||||
<l:l i="590">Э</l:l>
|
||||
<l:l i="590">э</l:l>
|
||||
<l:l i="600">Ю</l:l>
|
||||
<l:l i="600">ю</l:l>
|
||||
<l:l i="610">Я</l:l>
|
||||
<l:l i="610">я</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/nb.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/nb.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/nl.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/nl.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/nn.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/nn.xml
Normal file
File diff suppressed because it is too large
Load Diff
1149
doc/reference/lib/docbook-xsl-snapshot/common/olink.xsl
Normal file
1149
doc/reference/lib/docbook-xsl-snapshot/common/olink.xsl
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/or.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/or.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/pa.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/pa.xml
Normal file
File diff suppressed because it is too large
Load Diff
165
doc/reference/lib/docbook-xsl-snapshot/common/pi.xml
Normal file
165
doc/reference/lib/docbook-xsl-snapshot/common/pi.xml
Normal file
@@ -0,0 +1,165 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<reference><info><title>Common Processing Instruction Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: pi.xsl 7107 2007-07-22 10:22:06Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
|
||||
<para>This is generated reference documentation for all
|
||||
user-specifiable processing instructions (PIs) in the
|
||||
“common” part of the DocBook XSL stylesheets.
|
||||
<note>
|
||||
|
||||
<para>You add these PIs at particular points in a document to
|
||||
cause specific “exceptions” to formatting/output behavior. To
|
||||
make global changes in formatting/output behavior across an
|
||||
entire document, it’s better to do it by setting an
|
||||
appropriate stylesheet parameter (if there is one).</para>
|
||||
|
||||
</note>
|
||||
</para>
|
||||
|
||||
</partintro>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="dbchoice_choice">
|
||||
<refnamediv>
|
||||
<refname>dbchoice_choice</refname>
|
||||
<refpurpose>Generates a localized choice separator</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
|
||||
<synopsis><tag class="xmlpi">dbchoice choice="and"|"or"|<replaceable>string</replaceable>"</tag></synopsis>
|
||||
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>Use the <tag class="xmlpi">dbchoice choice</tag> PI to
|
||||
generate an appropriate localized “choice” separator (for
|
||||
example, <literal>and</literal> or <literal>or</literal>)
|
||||
before the final item in an inline <tag>simplelist</tag></para>
|
||||
|
||||
<warning>
|
||||
|
||||
<para>This PI is a less-than-ideal hack; support for it may
|
||||
disappear in the future (particularly if and when a more
|
||||
appropriate means for marking up "choice" lists becomes
|
||||
available in DocBook).</para>
|
||||
|
||||
</warning>
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>choice="and"</term>
|
||||
<listitem>
|
||||
|
||||
<para>generates a localized <literal>and</literal> separator</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>choice="or"</term>
|
||||
<listitem>
|
||||
|
||||
<para>generates a localized <literal>or</literal> separator</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>choice="<replaceable>string</replaceable>"</term>
|
||||
<listitem>
|
||||
|
||||
<para>generates a literal <replaceable>string</replaceable> separator</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="dbtimestamp">
|
||||
<refnamediv>
|
||||
<refname>dbtimestamp</refname>
|
||||
<refpurpose>Inserts a date timestamp</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
|
||||
<synopsis><tag class="xmlpi">dbtimestamp format="<replaceable>formatstring</replaceable>" [padding="0"|"1"]</tag></synopsis>
|
||||
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>Use the <tag class="xmlpi">dbtimestamp</tag> PI at any point in a
|
||||
source document to cause a date timestamp (a formatted
|
||||
string representing the current date and time) to be
|
||||
inserted in output of the document.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>format="<replaceable>formatstring</replaceable>"</term>
|
||||
<listitem>
|
||||
|
||||
<para>Specifies format in which the date and time are
|
||||
output</para>
|
||||
|
||||
<note>
|
||||
|
||||
<para>For details of the content of the format string,
|
||||
see <link role="tcg" xlink:href="Datetime.html">Date and time</link>.</para>
|
||||
|
||||
</note>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>padding="0"|"1"</term>
|
||||
<listitem>
|
||||
|
||||
<para>Specifies padding behavior; if non-zero, padding is is added</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="dbtex_delims">
|
||||
<refnamediv>
|
||||
<refname>dbtex_delims</refname>
|
||||
<refpurpose>Generates delimiters around embedded TeX equations
|
||||
in output</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
|
||||
<synopsis><tag class="xmlpi">dbtex delims="no"|"yes"</tag></synopsis>
|
||||
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>Use the <tag class="xmlpi">dbtex delims</tag> PI as a
|
||||
child of a <tag>textobject</tag> containing embedded TeX
|
||||
markup, to cause that markup to be surrounded by
|
||||
<literal>$</literal> delimiter characters in output.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>dbtex delims="no"|"yes"</term>
|
||||
<listitem>
|
||||
|
||||
<para>Specifies whether delimiters are output</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1 role="params"><title>Related Global Parameters</title>
|
||||
|
||||
<para><parameter>tex.math.delims</parameter></para>
|
||||
|
||||
</refsect1><refsect1 role="tcg"><title>Related Information in <link xlink:href="http://www.sagehill.net/docbookxsl/">DocBook XSL: The Complete Guide</link></title>
|
||||
|
||||
<para><link role="tcg" xlink:href="TexMath.html">DBTeXMath</link></para>
|
||||
|
||||
</refsect1></refentry>
|
||||
</reference>
|
||||
|
||||
346
doc/reference/lib/docbook-xsl-snapshot/common/pi.xsl
Normal file
346
doc/reference/lib/docbook-xsl-snapshot/common/pi.xsl
Normal file
@@ -0,0 +1,346 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
xmlns:date="http://exslt.org/dates-and-times"
|
||||
xmlns:exsl="http://exslt.org/common"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
exclude-result-prefixes="doc date exsl"
|
||||
extension-element-prefixes="date exsl"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: pi.xsl 7107 2007-07-22 10:22:06Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<doc:reference xmlns=""><info><title>Common Processing Instruction Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: pi.xsl 7107 2007-07-22 10:22:06Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
<partintro id="partintro">
|
||||
<title>Introduction</title>
|
||||
<para>This is generated reference documentation for all
|
||||
user-specifiable processing instructions (PIs) in the
|
||||
“common” part of the DocBook XSL stylesheets.
|
||||
<note>
|
||||
<para>You add these PIs at particular points in a document to
|
||||
cause specific “exceptions” to formatting/output behavior. To
|
||||
make global changes in formatting/output behavior across an
|
||||
entire document, it’s better to do it by setting an
|
||||
appropriate stylesheet parameter (if there is one).</para>
|
||||
</note>
|
||||
</para>
|
||||
</partintro>
|
||||
</doc:reference>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<doc:pi name="dbchoice_choice" xmlns="">
|
||||
<refpurpose>Generates a localized choice separator</refpurpose>
|
||||
<refdescription id="select.choice.separator-desc">
|
||||
<para>Use the <tag class="xmlpi">dbchoice choice</tag> PI to
|
||||
generate an appropriate localized “choice” separator (for
|
||||
example, <literal>and</literal> or <literal>or</literal>)
|
||||
before the final item in an inline <tag>simplelist</tag></para>
|
||||
<warning>
|
||||
<para>This PI is a less-than-ideal hack; support for it may
|
||||
disappear in the future (particularly if and when a more
|
||||
appropriate means for marking up "choice" lists becomes
|
||||
available in DocBook).</para>
|
||||
</warning>
|
||||
</refdescription>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><tag class="xmlpi">dbchoice choice="and"|"or"|<replaceable>string</replaceable>"</tag></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refparameter>
|
||||
<variablelist>
|
||||
<varlistentry><term>choice="and"</term>
|
||||
<listitem>
|
||||
<para>generates a localized <literal>and</literal> separator</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>choice="or"</term>
|
||||
<listitem>
|
||||
<para>generates a localized <literal>or</literal> separator</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>choice="<replaceable>string</replaceable>"</term>
|
||||
<listitem>
|
||||
<para>generates a literal <replaceable>string</replaceable> separator</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
</doc:pi>
|
||||
<xsl:template name="pi.dbchoice_choice">
|
||||
<xsl:param name="node" select="."/>
|
||||
<xsl:call-template name="pi-attribute">
|
||||
<xsl:with-param name="pis" select="$node/processing-instruction('dbchoice')"/>
|
||||
<xsl:with-param name="attribute">choice</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<doc:pi name="dbtimestamp" xmlns="">
|
||||
<refpurpose>Inserts a date timestamp</refpurpose>
|
||||
<refdescription>
|
||||
<para>Use the <tag class="xmlpi">dbtimestamp</tag> PI at any point in a
|
||||
source document to cause a date timestamp (a formatted
|
||||
string representing the current date and time) to be
|
||||
inserted in output of the document.</para>
|
||||
</refdescription>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><tag class="xmlpi">dbtimestamp format="<replaceable>formatstring</replaceable>" [padding="0"|"1"]</tag></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refparameter>
|
||||
<variablelist>
|
||||
<varlistentry><term>format="<replaceable>formatstring</replaceable>"</term>
|
||||
<listitem>
|
||||
<para>Specifies format in which the date and time are
|
||||
output</para>
|
||||
<note>
|
||||
<para>For details of the content of the format string,
|
||||
see <link role="tcg" xlink:href="Datetime.html"
|
||||
>Date and time</link>.</para>
|
||||
</note>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>padding="0"|"1"</term>
|
||||
<listitem>
|
||||
<para>Specifies padding behavior; if non-zero, padding is is added</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
</doc:pi>
|
||||
<xsl:template name="pi.dbtimestamp">
|
||||
<xsl:variable name="format">
|
||||
<xsl:variable name="pi-format">
|
||||
<xsl:call-template name="pi-attribute">
|
||||
<xsl:with-param name="pis" select="."/>
|
||||
<xsl:with-param name="attribute">format</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-format != ''">
|
||||
<xsl:value-of select="$pi-format"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime'"/>
|
||||
<xsl:with-param name="name" select="'format'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="padding">
|
||||
<xsl:variable name="pi-padding">
|
||||
<xsl:call-template name="pi-attribute">
|
||||
<xsl:with-param name="pis" select="."/>
|
||||
<xsl:with-param name="attribute">padding</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-padding != ''">
|
||||
<xsl:value-of select="$pi-padding"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="date">
|
||||
<xsl:choose>
|
||||
<xsl:when test="function-available('date:date-time')">
|
||||
<xsl:value-of select="date:date-time()"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="function-available('date:dateTime')">
|
||||
<!-- Xalan quirk -->
|
||||
<xsl:value-of select="date:dateTime()"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="function-available('date:date-time') or
|
||||
function-available('date:dateTime')">
|
||||
<xsl:call-template name="datetime.format">
|
||||
<xsl:with-param name="date" select="$date"/>
|
||||
<xsl:with-param name="format" select="$format"/>
|
||||
<xsl:with-param name="padding" select="$padding"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
Timestamp processing requires XSLT processor with EXSLT date support.
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<doc:pi name="dbtex_delims" xmlns="">
|
||||
<refpurpose>Generates delimiters around embedded TeX equations
|
||||
in output</refpurpose>
|
||||
<refdescription>
|
||||
<para>Use the <tag class="xmlpi">dbtex delims</tag> PI as a
|
||||
child of a <tag>textobject</tag> containing embedded TeX
|
||||
markup, to cause that markup to be surrounded by
|
||||
<literal>$</literal> delimiter characters in output.</para>
|
||||
</refdescription>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><tag class="xmlpi">dbtex delims="no"|"yes"</tag></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refparameter>
|
||||
<variablelist>
|
||||
<varlistentry><term>dbtex delims="no"|"yes"</term>
|
||||
<listitem>
|
||||
<para>Specifies whether delimiters are output</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
<refsee role="params">
|
||||
<para><parameter>tex.math.delims</parameter></para>
|
||||
</refsee>
|
||||
<refsee role="tcg">
|
||||
<para><link role="tcg"
|
||||
xlink:href="TexMath.html"
|
||||
>DBTeXMath</link></para>
|
||||
</refsee>
|
||||
</doc:pi>
|
||||
<xsl:template name="pi.dbtex_delims">
|
||||
<xsl:param name="node" select="."/>
|
||||
<xsl:call-template name="pi-attribute">
|
||||
<xsl:with-param name="pis" select="$node/processing-instruction('dbtex')"/>
|
||||
<xsl:with-param name="attribute" select="'delims'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="processing-instruction()" mode="titlepage.mode">
|
||||
<!-- * Als process PIs on title pages -->
|
||||
<xsl:apply-templates select="."/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="processing-instruction('dbtimestamp')">
|
||||
<xsl:call-template name="pi.dbtimestamp"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="datetime.format">
|
||||
<xsl:param name="date"/>
|
||||
<xsl:param name="format"/>
|
||||
<xsl:param name="padding" select="1"/>
|
||||
<xsl:if test="$format != ''">
|
||||
<!-- replace any whitespace in the format string with a non-breaking space -->
|
||||
<xsl:variable name="format-nbsp"
|
||||
select="translate($format,
|
||||
' 	
',
|
||||
'    ')"/>
|
||||
<xsl:variable name="tokenized-format-string">
|
||||
<xsl:call-template name="str.tokenize.keep.delimiters">
|
||||
<xsl:with-param name="string" select="$format-nbsp"/>
|
||||
<xsl:with-param name="delimiters" select="' ,./-()[]:'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<!-- include extra test for Xalan quirk -->
|
||||
<xsl:when test="function-available('exsl:node-set') or
|
||||
contains(system-property('xsl:vendor'),'Apache Software Foundation')">
|
||||
<!-- We must preserve context node in order to get valid language -->
|
||||
<xsl:variable name="context" select="."/>
|
||||
<xsl:for-each select="exsl:node-set($tokenized-format-string)/node()">
|
||||
<xsl:variable name="token">
|
||||
<xsl:value-of select="."/>
|
||||
</xsl:variable>
|
||||
<!-- Restore context node -->
|
||||
<xsl:for-each select="$context">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$token = 'a'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-abbrev'"/>
|
||||
<xsl:with-param name="name" select="date:day-abbreviation($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'A'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-full'"/>
|
||||
<xsl:with-param name="name" select="date:day-name($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'b'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-abbrev'"/>
|
||||
<xsl:with-param name="name" select="date:month-abbreviation($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'c'">
|
||||
<xsl:value-of select="date:date($date)"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="date:time($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'B'">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'datetime-full'"/>
|
||||
<xsl:with-param name="name" select="date:month-name($date)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'd'">
|
||||
<xsl:if test="$padding = 1 and
|
||||
string-length(date:day-in-month($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:day-in-month($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'H'">
|
||||
<xsl:if test="$padding = 1 and string-length(date:hour-in-day($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:hour-in-day($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'j'">
|
||||
<xsl:value-of select="date:day-in-year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'm'">
|
||||
<xsl:if test="$padding = 1 and string-length(date:month-in-year($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:month-in-year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'M'">
|
||||
<xsl:if test="string-length(date:minute-in-hour($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:minute-in-hour($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'S'">
|
||||
<xsl:if test="string-length(date:second-in-minute($date)) = 1">0</xsl:if>
|
||||
<xsl:value-of select="date:second-in-minute($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'U'">
|
||||
<xsl:value-of select="date:week-in-year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'w'">
|
||||
<xsl:value-of select="date:day-in-week($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'x'">
|
||||
<xsl:value-of select="date:date($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'X'">
|
||||
<xsl:value-of select="date:time($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$token = 'Y'">
|
||||
<xsl:value-of select="date:year($date)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$token"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:for-each>
|
||||
</xsl:for-each>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
Timestamp processing requires an XSLT processor with support
|
||||
for the EXSLT node-set() function.
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/pl.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/pl.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/pt.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/pt.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/pt_br.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/pt_br.xml
Normal file
File diff suppressed because it is too large
Load Diff
781
doc/reference/lib/docbook-xsl-snapshot/common/refentry.xml
Normal file
781
doc/reference/lib/docbook-xsl-snapshot/common/refentry.xml
Normal file
@@ -0,0 +1,781 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<reference xml:id="refentry">
|
||||
<info>
|
||||
<title>Common » Refentry Metadata Template Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: refentry.xsl 7867 2008-03-07 09:54:25Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
|
||||
<para>This is technical reference documentation for the “refentry
|
||||
metadata” templates in the DocBook XSL Stylesheets.</para>
|
||||
|
||||
|
||||
<para>This is not intended to be user documentation. It is provided
|
||||
for developers writing customization layers for the stylesheets.</para>
|
||||
|
||||
<note>
|
||||
|
||||
<para>Currently, only the manpages stylesheets make use of these
|
||||
templates. They are, however, potentially useful elsewhere.</para>
|
||||
|
||||
</note>
|
||||
</partintro>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.metadata">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.metadata</refname>
|
||||
<refpurpose>Gathers metadata from a refentry and its ancestors</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.metadata">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="prefs"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>Reference documentation for particular commands, functions,
|
||||
etc., is sometimes viewed in isolation from its greater "context". For
|
||||
example, users view Unix man pages as, well, individual pages, not as
|
||||
part of a "book" of some kind. Therefore, it is sometimes necessary to
|
||||
embed "context" information in output for each <tag>refentry</tag>.</para>
|
||||
|
||||
|
||||
|
||||
<para>However, one problem is that different users mark up that
|
||||
context information in different ways. Often (usually), the
|
||||
context information is not actually part of the content of the
|
||||
<tag>refentry</tag> itself, but instead part of the content of a
|
||||
parent or ancestor element to the <tag>refentry</tag>. And
|
||||
even then, DocBook provides a variety of elements that users might
|
||||
potentially use to mark up the same kind of information. One user
|
||||
might use the <tag>productnumber</tag> element to mark up version
|
||||
information about a particular product, while another might use
|
||||
the <tag>releaseinfo</tag> element.</para>
|
||||
|
||||
|
||||
|
||||
<para>Taking all that in mind, the
|
||||
<function>get.refentry.metadata</function> template tries to gather
|
||||
metadata from a <tag>refentry</tag> element and its ancestor
|
||||
elements in an intelligent and user-configurable way. The basic
|
||||
mechanism used in the XPath expressions throughout this stylesheet
|
||||
is to select the relevant metadata from the *info element that is
|
||||
closest to the actual <tag>refentry</tag> – either on the
|
||||
<tag>refentry</tag> itself, or on its nearest ancestor.</para>
|
||||
|
||||
|
||||
<note>
|
||||
|
||||
<para>The <function>get.refentry.metadata</function>
|
||||
template is actually just sort of a "driver" template; it
|
||||
calls other templates that do the actual data collection,
|
||||
then returns the data as a set.</para>
|
||||
|
||||
</note>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of info nodes (from a <tag>refentry</tag>
|
||||
element and its ancestors)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>prefs</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing user preferences (from global
|
||||
stylesheet parameters)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a node set with the following elements. The
|
||||
descriptions are verbatim from the <literal>man(7)</literal> man
|
||||
page.
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>title</term>
|
||||
<listitem>
|
||||
|
||||
<para>the title of the man page (e.g., <literal>MAN</literal>)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>section</term>
|
||||
<listitem>
|
||||
|
||||
<para>the section number the man page should be placed in (e.g.,
|
||||
<literal>7</literal>)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>date</term>
|
||||
<listitem>
|
||||
|
||||
<para>the date of the last revision</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>source</term>
|
||||
<listitem>
|
||||
|
||||
<para>the source of the command</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>manual</term>
|
||||
<listitem>
|
||||
|
||||
<para>the title of the manual (e.g., <citetitle>Linux
|
||||
Programmer's Manual</citetitle>)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.title">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.title</refname>
|
||||
<refpurpose>Gets title metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.title">
|
||||
<xsl:param name="refname"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <literal>man(7)</literal> man page describes this as "the
|
||||
title of the man page (e.g., <literal>MAN</literal>). This differs
|
||||
from <tag>refname</tag> in that, if the <tag>refentry</tag> has a
|
||||
<tag>refentrytitle</tag>, we use that as the <tag>title</tag>;
|
||||
otherwise, we just use first <tag>refname</tag> in the first
|
||||
<tag>refnamediv</tag> in the source.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a <tag>title</tag> node.</para>
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.section">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.section</refname>
|
||||
<refpurpose>Gets section metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.section">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="quiet" select="0"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <literal>man(7)</literal> man page describes this as "the
|
||||
section number the man page should be placed in (e.g.,
|
||||
<literal>7</literal>)". If we do not find a <tag>manvolnum</tag>
|
||||
specified in the source, and we find that the <tag>refentry</tag> is
|
||||
for a function, we use the section number <literal>3</literal>
|
||||
["Library calls (functions within program libraries)"]; otherwise, we
|
||||
default to using <literal>1</literal> ["Executable programs or shell
|
||||
commands"].</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>quiet</term>
|
||||
<listitem>
|
||||
|
||||
<para>If non-zero, no "missing" message is emitted</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a string representing a section number.</para>
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.date">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.date</refname>
|
||||
<refpurpose>Gets date metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.date">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="prefs"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <literal>man(7)</literal> man page describes this as "the
|
||||
date of the last revision". If we cannot find a date in the source, we
|
||||
generate one.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of info nodes (from a <tag>refentry</tag>
|
||||
element and its ancestors)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>prefs</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing users preferences (from global stylesheet parameters)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a <tag>date</tag> node.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.source">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.source</refname>
|
||||
<refpurpose>Gets source metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.source">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="prefs"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <literal>man(7)</literal> man page describes this as "the
|
||||
source of the command", and provides the following examples:
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
||||
<para>For binaries, use something like: GNU, NET-2, SLS
|
||||
Distribution, MCC Distribution.</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para>For system calls, use the version of the kernel that you are
|
||||
currently looking at: Linux 0.99.11.</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para>For library calls, use the source of the function: GNU, BSD
|
||||
4.3, Linux DLL 4.4.1.</para>
|
||||
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<para>The <literal>solbook(5)</literal> man page describes
|
||||
something very much like what <literal>man(7)</literal> calls
|
||||
"source", except that <literal>solbook(5)</literal> names it
|
||||
"software" and describes it like this:
|
||||
<blockquote>
|
||||
|
||||
<para>This is the name of the software product that the topic
|
||||
discussed on the reference page belongs to. For example UNIX
|
||||
commands are part of the <literal>SunOS x.x</literal>
|
||||
release.</para>
|
||||
|
||||
</blockquote>
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<para>In practice, there are many pages that simply have a version
|
||||
number in the "source" field. So, it looks like what we have is a
|
||||
two-part field,
|
||||
<replaceable>Name</replaceable> <replaceable>Version</replaceable>,
|
||||
where:
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>Name</term>
|
||||
<listitem>
|
||||
|
||||
<para>product name (e.g., BSD) or org. name (e.g., GNU)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>Version</term>
|
||||
<listitem>
|
||||
|
||||
<para>version name</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
Each part is optional. If the <replaceable>Name</replaceable> is a
|
||||
product name, then the <replaceable>Version</replaceable> is probably
|
||||
the version of the product. Or there may be no
|
||||
<replaceable>Name</replaceable>, in which case, if there is a
|
||||
<replaceable>Version</replaceable>, it is probably the version of the
|
||||
item itself, not the product it is part of. Or, if the
|
||||
<replaceable>Name</replaceable> is an organization name, then there
|
||||
probably will be no <replaceable>Version</replaceable>.
|
||||
</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of info nodes (from a <tag>refentry</tag>
|
||||
element and its ancestors)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>prefs</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing users preferences (from global
|
||||
stylesheet parameters)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a <tag>source</tag> node.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.source.name">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.source.name</refname>
|
||||
<refpurpose>Gets source-name metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.source.name">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="prefs"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>A "source name" is one part of a (potentially) two-part
|
||||
<replaceable>Name</replaceable> <replaceable>Version</replaceable>
|
||||
source field. For more details, see the documentation for the
|
||||
<function>get.refentry.source</function> template.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of info nodes (from a <tag>refentry</tag>
|
||||
element and its ancestors)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>prefs</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing users preferences (from global
|
||||
stylesheet parameters)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Depending on what output method is used for the
|
||||
current stylesheet, either returns a text node or possibly an element
|
||||
node, containing "source name" data.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.version">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.version</refname>
|
||||
<refpurpose>Gets version metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.version">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="prefs"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>A "version" is one part of a (potentially) two-part
|
||||
<replaceable>Name</replaceable> <replaceable>Version</replaceable>
|
||||
source field. For more details, see the documentation for the
|
||||
<function>get.refentry.source</function> template.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of info nodes (from a <tag>refentry</tag>
|
||||
element and its ancestors)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>prefs</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing users preferences (from global
|
||||
stylesheet parameters)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Depending on what output method is used for the
|
||||
current stylesheet, either returns a text node or possibly an element
|
||||
node, containing "version" data.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.manual">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.manual</refname>
|
||||
<refpurpose>Gets source metadata for a refentry</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.manual">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="prefs"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <literal>man(7)</literal> man page describes this as "the
|
||||
title of the manual (e.g., <citetitle>Linux Programmer's
|
||||
Manual</citetitle>)". Here are some examples from existing man pages:
|
||||
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>dpkg utilities</citetitle>
|
||||
(<command>dpkg-name</command>)</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>User Contributed Perl Documentation</citetitle>
|
||||
(<command>GET</command>)</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>GNU Development Tools</citetitle>
|
||||
(<command>ld</command>)</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>Emperor Norton Utilities</citetitle>
|
||||
(<command>ddate</command>)</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>Debian GNU/Linux manual</citetitle>
|
||||
(<command>faked</command>)</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>GIMP Manual Pages</citetitle>
|
||||
(<command>gimp</command>)</para>
|
||||
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
||||
<para><citetitle>KDOC Documentation System</citetitle>
|
||||
(<command>qt2kdoc</command>)</para>
|
||||
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
|
||||
<para>The <literal>solbook(5)</literal> man page describes
|
||||
something very much like what <literal>man(7)</literal> calls
|
||||
"manual", except that <literal>solbook(5)</literal> names it
|
||||
"sectdesc" and describes it like this:
|
||||
<blockquote>
|
||||
|
||||
<para>This is the section title of the reference page; for
|
||||
example <literal>User Commands</literal>.</para>
|
||||
|
||||
</blockquote>
|
||||
</para>
|
||||
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A set of info nodes (from a <tag>refentry</tag>
|
||||
element and its ancestors)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>prefs</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing users preferences (from global
|
||||
stylesheet parameters)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a <tag>manual</tag> node.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.refentry.metadata.prefs">
|
||||
<refnamediv>
|
||||
<refname>get.refentry.metadata.prefs</refname>
|
||||
<refpurpose>Gets user preferences for refentry metadata gathering</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.refentry.metadata.prefs"/></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The DocBook XSL stylesheets include several user-configurable
|
||||
global stylesheet parameters for controlling <tag>refentry</tag>
|
||||
metadata gathering. Those parameters are not read directly by the
|
||||
other <tag>refentry</tag> metadata-gathering
|
||||
templates. Instead, they are read only by the
|
||||
<function>get.refentry.metadata.prefs</function> template,
|
||||
which assembles them into a structure that is then passed to
|
||||
the other <tag>refentry</tag> metadata-gathering
|
||||
templates.</para>
|
||||
|
||||
|
||||
|
||||
<para>So the, <function>get.refentry.metadata.prefs</function>
|
||||
template is the only interface to collecting stylesheet parameters for
|
||||
controlling <tag>refentry</tag> metadata gathering.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<para>There are no local parameters for this template; however, it
|
||||
does rely on a number of global parameters.</para>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a <tag>manual</tag> node.</para>
|
||||
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.set.refentry.metadata">
|
||||
<refnamediv>
|
||||
<refname>set.refentry.metadata</refname>
|
||||
<refpurpose>Sets content of a refentry metadata item</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="set.refentry.metadata">
|
||||
<xsl:param name="refname"/>
|
||||
<xsl:param name="info"/>
|
||||
<xsl:param name="contents"/>
|
||||
<xsl:param name="context"/>
|
||||
<xsl:param name="preferred"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <function>set.refentry.metadata</function> template is
|
||||
called each time a suitable source element is found for a certain
|
||||
metadata field.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>refname</term>
|
||||
<listitem>
|
||||
|
||||
<para>The first <tag>refname</tag> in the refentry</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>info</term>
|
||||
<listitem>
|
||||
|
||||
<para>A single *info node that contains the selected source element.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>contents</term>
|
||||
<listitem>
|
||||
|
||||
<para>A node containing the selected source element.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term>context</term>
|
||||
<listitem>
|
||||
|
||||
<para>A string describing the metadata context in which the
|
||||
<function>set.refentry.metadata</function> template was
|
||||
called: either "date", "source", "version", or "manual".</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns formatted contents of a selected source element.</para>
|
||||
</refsect1></refentry>
|
||||
</reference>
|
||||
|
||||
1352
doc/reference/lib/docbook-xsl-snapshot/common/refentry.xsl
Normal file
1352
doc/reference/lib/docbook-xsl-snapshot/common/refentry.xsl
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/ro.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ro.xml
Normal file
File diff suppressed because it is too large
Load Diff
720
doc/reference/lib/docbook-xsl-snapshot/common/ru.xml
Normal file
720
doc/reference/lib/docbook-xsl-snapshot/common/ru.xml
Normal file
@@ -0,0 +1,720 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="ru" english-language-name="Russian">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/ru.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited ru.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Аннотация"/>
|
||||
<l:gentext key="abstract" text="Аннотация"/>
|
||||
<l:gentext key="Answer" text="О:"/>
|
||||
<l:gentext key="answer" text="О:"/>
|
||||
<l:gentext key="Appendix" text="Приложение"/>
|
||||
<l:gentext key="appendix" text="приложение"/>
|
||||
<l:gentext key="Article" text="Статья"/>
|
||||
<l:gentext key="article" text="Статья"/>
|
||||
<l:gentext key="Author" text="Автор"/>
|
||||
<l:gentext key="Bibliography" text="Литература"/>
|
||||
<l:gentext key="bibliography" text="Литература"/>
|
||||
<l:gentext key="Book" text="Книга"/>
|
||||
<l:gentext key="book" text="Книга"/>
|
||||
<l:gentext key="CAUTION" text="ПРЕДОСТЕРЕЖЕНИЕ"/>
|
||||
<l:gentext key="Caution" text="Предостережение"/>
|
||||
<l:gentext key="caution" text="Предостережение"/>
|
||||
<l:gentext key="Chapter" text="Глава"/>
|
||||
<l:gentext key="chapter" text="глава"/>
|
||||
<l:gentext key="Colophon" text="Colophon"/>
|
||||
<l:gentext key="colophon" text="Colophon"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Посвящение"/>
|
||||
<l:gentext key="dedication" text="Посвящение"/>
|
||||
<l:gentext key="Edition" text="Редакция"/>
|
||||
<l:gentext key="edition" text="Редакция"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Формула"/>
|
||||
<l:gentext key="equation" text="Формула"/>
|
||||
<l:gentext key="Example" text="Пример"/>
|
||||
<l:gentext key="example" text="Пример"/>
|
||||
<l:gentext key="Figure" text="Рисунок"/>
|
||||
<l:gentext key="figure" text="Рисунок"/>
|
||||
<l:gentext key="Glossary" text="Глоссарий"/>
|
||||
<l:gentext key="glossary" text="Глоссарий"/>
|
||||
<l:gentext key="GlossSee" text="См."/>
|
||||
<l:gentext key="glosssee" text="См."/>
|
||||
<l:gentext key="GlossSeeAlso" text="См. также"/>
|
||||
<l:gentext key="glossseealso" text="См. также"/>
|
||||
<l:gentext key="IMPORTANT" text="ВАЖНО"/>
|
||||
<l:gentext key="important" text="Важно"/>
|
||||
<l:gentext key="Important" text="Важно"/>
|
||||
<l:gentext key="Index" text="Предметный указатель"/>
|
||||
<l:gentext key="index" text="Предметный указатель"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Авторские права"/>
|
||||
<l:gentext key="legalnotice" text="Авторские права"/>
|
||||
<l:gentext key="MsgAud" text="Audience"/>
|
||||
<l:gentext key="msgaud" text="Audience"/>
|
||||
<l:gentext key="MsgLevel" text="Level"/>
|
||||
<l:gentext key="msglevel" text="Level"/>
|
||||
<l:gentext key="MsgOrig" text="Origin"/>
|
||||
<l:gentext key="msgorig" text="Origin"/>
|
||||
<l:gentext key="NOTE" text="ЗАМЕЧАНИЕ"/>
|
||||
<l:gentext key="Note" text="Замечание"/>
|
||||
<l:gentext key="note" text="Замечание"/>
|
||||
<l:gentext key="Part" text="Часть"/>
|
||||
<l:gentext key="part" text="Часть"/>
|
||||
<l:gentext key="Preface" text="Предисловие"/>
|
||||
<l:gentext key="preface" text="Предисловие"/>
|
||||
<l:gentext key="Procedure" text="Процедура"/>
|
||||
<l:gentext key="procedure" text="Процедура"/>
|
||||
<l:gentext key="ProductionSet" text="Production"/>
|
||||
<l:gentext key="PubDate" text="Publication Date" lang="en"/>
|
||||
<l:gentext key="pubdate" text="Publication date" lang="en"/>
|
||||
<l:gentext key="Published" text="Опубликовано"/>
|
||||
<l:gentext key="published" text="Опубликовано"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="В и О"/>
|
||||
<l:gentext key="qandadiv" text="В и О"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="В:"/>
|
||||
<l:gentext key="question" text="В:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Ссылка"/>
|
||||
<l:gentext key="reference" text="Ссылка"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Название"/>
|
||||
<l:gentext key="refname" text="Название"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Синтаксис"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Синтаксис"/>
|
||||
<l:gentext key="RevHistory" text="История переиздания"/>
|
||||
<l:gentext key="revhistory" text="История переиздания"/>
|
||||
<l:gentext key="revision" text="Издание"/>
|
||||
<l:gentext key="Revision" text="Издание"/>
|
||||
<l:gentext key="sect1" text="Раздел"/>
|
||||
<l:gentext key="sect2" text="Раздел"/>
|
||||
<l:gentext key="sect3" text="Раздел"/>
|
||||
<l:gentext key="sect4" text="Раздел"/>
|
||||
<l:gentext key="sect5" text="Раздел"/>
|
||||
<l:gentext key="section" text="раздел"/>
|
||||
<l:gentext key="Section" text="Раздел"/>
|
||||
<l:gentext key="see" text="См."/>
|
||||
<l:gentext key="See" text="См."/>
|
||||
<l:gentext key="seealso" text="См. также"/>
|
||||
<l:gentext key="Seealso" text="См. также"/>
|
||||
<l:gentext key="SeeAlso" text="См. также"/>
|
||||
<l:gentext key="set" text="Подборка"/>
|
||||
<l:gentext key="Set" text="Подборка"/>
|
||||
<l:gentext key="setindex" text="Индекс подборки"/>
|
||||
<l:gentext key="SetIndex" text="Индекс подборки"/>
|
||||
<l:gentext key="Sidebar" text="Выделение"/>
|
||||
<l:gentext key="sidebar" text="выделение"/>
|
||||
<l:gentext key="step" text="шаг"/>
|
||||
<l:gentext key="Step" text="Шаг"/>
|
||||
<l:gentext key="table" text="Таблица"/>
|
||||
<l:gentext key="Table" text="Таблица"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Подсказка"/>
|
||||
<l:gentext key="TIP" text="ПОДСКАЗКА"/>
|
||||
<l:gentext key="Tip" text="Подсказка"/>
|
||||
<l:gentext key="Warning" text="Внимание"/>
|
||||
<l:gentext key="warning" text="Внимание"/>
|
||||
<l:gentext key="WARNING" text="ВНИМАНИЕ"/>
|
||||
<l:gentext key="and" text=""/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Под редакцией"/>
|
||||
<l:gentext key="edited" text="Под редакцией"/>
|
||||
<l:gentext key="Editedby" text="Под редакцией"/>
|
||||
<l:gentext key="editedby" text="Под редакцией"/>
|
||||
<l:gentext key="in" text="в"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="non-existant element"/>
|
||||
<l:gentext key="notes" text="Примечания"/>
|
||||
<l:gentext key="Notes" text="Примечания"/>
|
||||
<l:gentext key="Pgs" text="Стр."/>
|
||||
<l:gentext key="pgs" text="Стр."/>
|
||||
<l:gentext key="Revisedby" text="Revised by: "/>
|
||||
<l:gentext key="revisedby" text="Revised by: "/>
|
||||
<l:gentext key="TableNotes" text="Примечания"/>
|
||||
<l:gentext key="tablenotes" text="Примечания"/>
|
||||
<l:gentext key="TableofContents" text="Содержание"/>
|
||||
<l:gentext key="tableofcontents" text="Содержание"/>
|
||||
<l:gentext key="unexpectedelementname" text="unexpected element name"/>
|
||||
<l:gentext key="unsupported" text="unsupported"/>
|
||||
<l:gentext key="xrefto" text="xref to"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Список формул"/>
|
||||
<l:gentext key="ListofEquations" text="Список формул"/>
|
||||
<l:gentext key="ListofExamples" text="Список примеров"/>
|
||||
<l:gentext key="listofexamples" text="Список примеров"/>
|
||||
<l:gentext key="ListofFigures" text="Список иллюстраций"/>
|
||||
<l:gentext key="listoffigures" text="Список иллюстраций"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="Список таблиц"/>
|
||||
<l:gentext key="ListofTables" text="Список таблиц"/>
|
||||
<l:gentext key="ListofUnknown" text="Неопределенный список"/>
|
||||
<l:gentext key="listofunknown" text="Неопределенный список"/>
|
||||
<l:gentext key="nav-home" text="Начало"/>
|
||||
<l:gentext key="nav-next" text="След."/>
|
||||
<l:gentext key="nav-next-sibling" text="След. подраздел"/>
|
||||
<l:gentext key="nav-prev" text="Пред."/>
|
||||
<l:gentext key="nav-prev-sibling" text="Пред. подраздел"/>
|
||||
<l:gentext key="nav-up" text="Уровень выше"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Черновик"/>
|
||||
<l:gentext key="above" text="выше"/>
|
||||
<l:gentext key="below" text="ниже"/>
|
||||
<l:gentext key="sectioncalled" text="the section called"/>
|
||||
<l:gentext key="index symbols" text="Symbols"/>
|
||||
<l:gentext key="lowercase.alpha" text="абвгдеёжзийклмнопрстуфхцчшщъыьэюя"/>
|
||||
<l:gentext key="uppercase.alpha" text="АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="«"/>
|
||||
<l:dingbat key="endquote" text="»"/>
|
||||
<l:dingbat key="nestedstartquote" text="„"/>
|
||||
<l:dingbat key="nestedendquote" text="“"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Приложение %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Глава %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Формула %n. %t"/>
|
||||
<l:template name="example" text="Пример %n. %t"/>
|
||||
<l:template name="figure" text="Рисунок %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Часть %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Процедура %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Таблица %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Приложение %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="Глава %n. %t"/>
|
||||
<l:template name="part" text="Часть %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="О: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="В: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="В: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="«%t»"/>
|
||||
<l:template name="refsection" text="«%t»"/>
|
||||
<l:template name="refsect1" text="«%t»"/>
|
||||
<l:template name="refsect2" text="«%t»"/>
|
||||
<l:template name="refsect3" text="«%t»"/>
|
||||
<l:template name="sect1" text="«%t»"/>
|
||||
<l:template name="sect2" text="«%t»"/>
|
||||
<l:template name="sect3" text="«%t»"/>
|
||||
<l:template name="sect4" text="«%t»"/>
|
||||
<l:template name="sect5" text="«%t»"/>
|
||||
<l:template name="section" text="«%t»"/>
|
||||
<l:template name="simplesect" text="«%t»"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="О: %n"/>
|
||||
<l:template name="appendix" text="Приложение %n"/>
|
||||
<l:template name="bridgehead" text="Раздел %n"/>
|
||||
<l:template name="chapter" text="Глава %n"/>
|
||||
<l:template name="equation" text="Формула %n"/>
|
||||
<l:template name="example" text="Пример %n"/>
|
||||
<l:template name="figure" text="Рисунок %n"/>
|
||||
<l:template name="part" text="Часть %n"/>
|
||||
<l:template name="procedure" text="Процедура %n"/>
|
||||
<l:template name="productionset" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="В и О %n"/>
|
||||
<l:template name="qandaentry" text="В: %n"/>
|
||||
<l:template name="question" text="В: %n"/>
|
||||
<l:template name="sect1" text="Раздел %n"/>
|
||||
<l:template name="sect2" text="Раздел %n"/>
|
||||
<l:template name="sect3" text="Раздел %n"/>
|
||||
<l:template name="sect4" text="Раздел %n"/>
|
||||
<l:template name="sect5" text="Раздел %n"/>
|
||||
<l:template name="section" text="Раздел %n"/>
|
||||
<l:template name="table" text="Таблица %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Приложение %n, %t"/>
|
||||
<l:template name="bridgehead" text="Раздел %n, «%t»"/>
|
||||
<l:template name="chapter" text="Глава %n, %t"/>
|
||||
<l:template name="equation" text="Формула %n, «%t»"/>
|
||||
<l:template name="example" text="Пример %n, «%t»"/>
|
||||
<l:template name="figure" text="Рисунок %n, «%t»"/>
|
||||
<l:template name="part" text="Часть %n, «%t»"/>
|
||||
<l:template name="procedure" text="Процедура %n, «%t»"/>
|
||||
<l:template name="productionset" text="Production %n, «%t»"/>
|
||||
<l:template name="qandadiv" text="В и О %n, «%t»"/>
|
||||
<l:template name="refsect1" text="the section called «%t»"/>
|
||||
<l:template name="refsect2" text="the section called «%t»"/>
|
||||
<l:template name="refsect3" text="the section called «%t»"/>
|
||||
<l:template name="refsection" text="the section called «%t»"/>
|
||||
<l:template name="sect1" text="Раздел %n, «%t»"/>
|
||||
<l:template name="sect2" text="Раздел %n, «%t»"/>
|
||||
<l:template name="sect3" text="Раздел %n, «%t»"/>
|
||||
<l:template name="sect4" text="Раздел %n, «%t»"/>
|
||||
<l:template name="sect5" text="Раздел %n, «%t»"/>
|
||||
<l:template name="section" text="Раздел %n, «%t»"/>
|
||||
<l:template name="simplesect" text="the section called «%t»"/>
|
||||
<l:template name="table" text="Таблица %n, «%t»"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" "/>
|
||||
<l:template name="seplast" text=", "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="См. %t"/>
|
||||
<l:template name="seealso" text="См. также %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Audience: "/>
|
||||
<l:template name="MsgLevel" text="Level: "/>
|
||||
<l:template name="MsgOrig" text="Origin: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="m/d/Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="января"/>
|
||||
<l:template name="February" text="февраля"/>
|
||||
<l:template name="March" text="марта"/>
|
||||
<l:template name="April" text="апреля"/>
|
||||
<l:template name="May" text="мая"/>
|
||||
<l:template name="June" text="июня"/>
|
||||
<l:template name="July" text="июля"/>
|
||||
<l:template name="August" text="августа"/>
|
||||
<l:template name="September" text="сентября"/>
|
||||
<l:template name="October" text="октября"/>
|
||||
<l:template name="November" text="ноября"/>
|
||||
<l:template name="December" text="декабря"/>
|
||||
<l:template name="Monday" text="понедельник"/>
|
||||
<l:template name="Tuesday" text="вторник"/>
|
||||
<l:template name="Wednesday" text="среда"/>
|
||||
<l:template name="Thursday" text="четвэрг"/>
|
||||
<l:template name="Friday" text="пятница"/>
|
||||
<l:template name="Saturday" text="суббота"/>
|
||||
<l:template name="Sunday" text="воскресенье"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Янв"/>
|
||||
<l:template name="Feb" text="Фев"/>
|
||||
<l:template name="Mar" text="Мар"/>
|
||||
<l:template name="Apr" text="Апр"/>
|
||||
<l:template name="May" text="Май"/>
|
||||
<l:template name="Jun" text="Июн"/>
|
||||
<l:template name="Jul" text="Июл"/>
|
||||
<l:template name="Aug" text="Авг"/>
|
||||
<l:template name="Sep" text="Сен"/>
|
||||
<l:template name="Oct" text="Окт"/>
|
||||
<l:template name="Nov" text="Ноя"/>
|
||||
<l:template name="Dec" text="Дек"/>
|
||||
<l:template name="Mon" text="Пнд"/>
|
||||
<l:template name="Tue" text="Втр"/>
|
||||
<l:template name="Wed" text="Срд"/>
|
||||
<l:template name="Thu" text="Чтв"/>
|
||||
<l:template name="Fri" text="Птн"/>
|
||||
<l:template name="Sat" text="Сбт"/>
|
||||
<l:template name="Sun" text="Вск"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0419 Russian"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0"/>
|
||||
<l:l i="10">A</l:l>
|
||||
<l:l i="10">a</l:l>
|
||||
<l:l i="20">B</l:l>
|
||||
<l:l i="20">b</l:l>
|
||||
<l:l i="30">C</l:l>
|
||||
<l:l i="30">c</l:l>
|
||||
<l:l i="40">D</l:l>
|
||||
<l:l i="40">d</l:l>
|
||||
<l:l i="50">E</l:l>
|
||||
<l:l i="50">e</l:l>
|
||||
<l:l i="60">F</l:l>
|
||||
<l:l i="60">f</l:l>
|
||||
<l:l i="70">G</l:l>
|
||||
<l:l i="70">g</l:l>
|
||||
<l:l i="80">H</l:l>
|
||||
<l:l i="80">h</l:l>
|
||||
<l:l i="90">I</l:l>
|
||||
<l:l i="90">i</l:l>
|
||||
<l:l i="100">J</l:l>
|
||||
<l:l i="100">j</l:l>
|
||||
<l:l i="110">K</l:l>
|
||||
<l:l i="110">k</l:l>
|
||||
<l:l i="120">L</l:l>
|
||||
<l:l i="120">l</l:l>
|
||||
<l:l i="130">M</l:l>
|
||||
<l:l i="130">m</l:l>
|
||||
<l:l i="140">N</l:l>
|
||||
<l:l i="140">n</l:l>
|
||||
<l:l i="150">O</l:l>
|
||||
<l:l i="150">o</l:l>
|
||||
<l:l i="160">P</l:l>
|
||||
<l:l i="160">p</l:l>
|
||||
<l:l i="170">Q</l:l>
|
||||
<l:l i="170">q</l:l>
|
||||
<l:l i="180">R</l:l>
|
||||
<l:l i="180">r</l:l>
|
||||
<l:l i="190">S</l:l>
|
||||
<l:l i="190">s</l:l>
|
||||
<l:l i="200">T</l:l>
|
||||
<l:l i="200">t</l:l>
|
||||
<l:l i="210">U</l:l>
|
||||
<l:l i="210">u</l:l>
|
||||
<l:l i="220">V</l:l>
|
||||
<l:l i="220">v</l:l>
|
||||
<l:l i="230">W</l:l>
|
||||
<l:l i="230">w</l:l>
|
||||
<l:l i="240">X</l:l>
|
||||
<l:l i="240">x</l:l>
|
||||
<l:l i="250">Y</l:l>
|
||||
<l:l i="250">y</l:l>
|
||||
<l:l i="260">Z</l:l>
|
||||
<l:l i="260">z</l:l>
|
||||
<l:l i="270">А</l:l>
|
||||
<l:l i="270">а</l:l>
|
||||
<l:l i="280">Б</l:l>
|
||||
<l:l i="280">б</l:l>
|
||||
<l:l i="290">В</l:l>
|
||||
<l:l i="290">в</l:l>
|
||||
<l:l i="300">Г</l:l>
|
||||
<l:l i="300">г</l:l>
|
||||
<l:l i="310">Д</l:l>
|
||||
<l:l i="310">д</l:l>
|
||||
<l:l i="320">Е</l:l>
|
||||
<l:l i="320">е</l:l>
|
||||
<l:l i="320">Ё</l:l>
|
||||
<l:l i="320">ё</l:l>
|
||||
<l:l i="330">Ж</l:l>
|
||||
<l:l i="330">ж</l:l>
|
||||
<l:l i="340">З</l:l>
|
||||
<l:l i="340">з</l:l>
|
||||
<l:l i="350">И</l:l>
|
||||
<l:l i="350">и</l:l>
|
||||
<l:l i="360">Й</l:l>
|
||||
<l:l i="360">й</l:l>
|
||||
<l:l i="370">К</l:l>
|
||||
<l:l i="370">к</l:l>
|
||||
<l:l i="380">Л</l:l>
|
||||
<l:l i="380">л</l:l>
|
||||
<l:l i="390">М</l:l>
|
||||
<l:l i="390">м</l:l>
|
||||
<l:l i="400">Н</l:l>
|
||||
<l:l i="400">н</l:l>
|
||||
<l:l i="410">О</l:l>
|
||||
<l:l i="410">о</l:l>
|
||||
<l:l i="420">П</l:l>
|
||||
<l:l i="420">п</l:l>
|
||||
<l:l i="430">Р</l:l>
|
||||
<l:l i="430">р</l:l>
|
||||
<l:l i="440">С</l:l>
|
||||
<l:l i="440">с</l:l>
|
||||
<l:l i="450">Т</l:l>
|
||||
<l:l i="450">т</l:l>
|
||||
<l:l i="460">У</l:l>
|
||||
<l:l i="460">у</l:l>
|
||||
<l:l i="470">Ф</l:l>
|
||||
<l:l i="470">ф</l:l>
|
||||
<l:l i="480">Х</l:l>
|
||||
<l:l i="480">х</l:l>
|
||||
<l:l i="490">Ц</l:l>
|
||||
<l:l i="490">ц</l:l>
|
||||
<l:l i="500">Ч</l:l>
|
||||
<l:l i="500">ч</l:l>
|
||||
<l:l i="510">Ш</l:l>
|
||||
<l:l i="510">ш</l:l>
|
||||
<l:l i="520">Щ</l:l>
|
||||
<l:l i="520">щ</l:l>
|
||||
<l:l i="530">Ъ</l:l>
|
||||
<l:l i="530">ъ</l:l>
|
||||
<l:l i="540">Ы</l:l>
|
||||
<l:l i="540">ы</l:l>
|
||||
<l:l i="550">Ь</l:l>
|
||||
<l:l i="550">ь</l:l>
|
||||
<l:l i="560">Э</l:l>
|
||||
<l:l i="560">э</l:l>
|
||||
<l:l i="570">Ю</l:l>
|
||||
<l:l i="570">ю</l:l>
|
||||
<l:l i="580">Я</l:l>
|
||||
<l:l i="580">я</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/sk.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/sk.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/sl.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/sl.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/sq.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/sq.xml
Normal file
File diff suppressed because it is too large
Load Diff
714
doc/reference/lib/docbook-xsl-snapshot/common/sr.xml
Normal file
714
doc/reference/lib/docbook-xsl-snapshot/common/sr.xml
Normal file
@@ -0,0 +1,714 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="sr" english-language-name="Serbian in Cyrillic script">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/sr.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited sr.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Сажетак"/>
|
||||
<l:gentext key="abstract" text="сажетак"/>
|
||||
<l:gentext key="Answer" text="О:"/>
|
||||
<l:gentext key="answer" text="о:"/>
|
||||
<l:gentext key="Appendix" text="Додатак"/>
|
||||
<l:gentext key="appendix" text="додатак"/>
|
||||
<l:gentext key="Article" text="Чланак"/>
|
||||
<l:gentext key="article" text="чланак"/>
|
||||
<l:gentext key="Author" text="Аутор"/>
|
||||
<l:gentext key="Bibliography" text="Литература"/>
|
||||
<l:gentext key="bibliography" text="литература"/>
|
||||
<l:gentext key="Book" text="Књига"/>
|
||||
<l:gentext key="book" text="књига"/>
|
||||
<l:gentext key="CAUTION" text="УПОЗОРЕЊЕ"/>
|
||||
<l:gentext key="Caution" text="Упозорење"/>
|
||||
<l:gentext key="caution" text="упозорење"/>
|
||||
<l:gentext key="Chapter" text="Поглавље"/>
|
||||
<l:gentext key="chapter" text="поглавље"/>
|
||||
<l:gentext key="Colophon" text="Колофон"/>
|
||||
<l:gentext key="colophon" text="колофон"/>
|
||||
<l:gentext key="Copyright" text="Ауторска права"/>
|
||||
<l:gentext key="copyright" text="ауторска права"/>
|
||||
<l:gentext key="Dedication" text="Посвета"/>
|
||||
<l:gentext key="dedication" text="посвета"/>
|
||||
<l:gentext key="Edition" text="Издање"/>
|
||||
<l:gentext key="edition" text="издање"/>
|
||||
<l:gentext key="Editor" text="Уредник"/>
|
||||
<l:gentext key="Equation" text="Једначина"/>
|
||||
<l:gentext key="equation" text="једначина"/>
|
||||
<l:gentext key="Example" text="Пример"/>
|
||||
<l:gentext key="example" text="пример"/>
|
||||
<l:gentext key="Figure" text="Слика"/>
|
||||
<l:gentext key="figure" text="слика"/>
|
||||
<l:gentext key="Glossary" text="Речник"/>
|
||||
<l:gentext key="glossary" text="речник"/>
|
||||
<l:gentext key="GlossSee" text="Види"/>
|
||||
<l:gentext key="glosssee" text="види"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Види такође"/>
|
||||
<l:gentext key="glossseealso" text="види такође"/>
|
||||
<l:gentext key="IMPORTANT" text="ВАЖНО"/>
|
||||
<l:gentext key="important" text="важно"/>
|
||||
<l:gentext key="Important" text="Важно"/>
|
||||
<l:gentext key="Index" text="Индекс"/>
|
||||
<l:gentext key="index" text="индекс"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Правна напомена"/>
|
||||
<l:gentext key="legalnotice" text="правна напомена"/>
|
||||
<l:gentext key="MsgAud" text="Публика"/>
|
||||
<l:gentext key="msgaud" text="публика"/>
|
||||
<l:gentext key="MsgLevel" text="Ниво"/>
|
||||
<l:gentext key="msglevel" text="ниво"/>
|
||||
<l:gentext key="MsgOrig" text="Извор"/>
|
||||
<l:gentext key="msgorig" text="извор"/>
|
||||
<l:gentext key="NOTE" text="ПРИМЕДБА"/>
|
||||
<l:gentext key="Note" text="Примедба"/>
|
||||
<l:gentext key="note" text="примедба"/>
|
||||
<l:gentext key="Part" text="Део"/>
|
||||
<l:gentext key="part" text="део"/>
|
||||
<l:gentext key="Preface" text="Предговор"/>
|
||||
<l:gentext key="preface" text="предговор"/>
|
||||
<l:gentext key="Procedure" text="Поступак"/>
|
||||
<l:gentext key="procedure" text="поступак"/>
|
||||
<l:gentext key="ProductionSet" text="Продукција"/>
|
||||
<l:gentext key="PubDate" text="Датум издавања"/>
|
||||
<l:gentext key="pubdate" text="датум издавања"/>
|
||||
<l:gentext key="Published" text="Издано"/>
|
||||
<l:gentext key="published" text="издано"/>
|
||||
<l:gentext key="Publisher" text="Издавач"/>
|
||||
<l:gentext key="Qandadiv" text="П и О"/>
|
||||
<l:gentext key="qandadiv" text="п и о"/>
|
||||
<l:gentext key="QandASet" text="Често постављана питања"/>
|
||||
<l:gentext key="Question" text="П:"/>
|
||||
<l:gentext key="question" text="п:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Референца"/>
|
||||
<l:gentext key="reference" text="референца"/>
|
||||
<l:gentext key="References" text="Референце"/>
|
||||
<l:gentext key="RefName" text="Име"/>
|
||||
<l:gentext key="refname" text="име"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Преглед"/>
|
||||
<l:gentext key="refsynopsisdiv" text="преглед"/>
|
||||
<l:gentext key="RevHistory" text="Историја ревизија"/>
|
||||
<l:gentext key="revhistory" text="историја ревизија"/>
|
||||
<l:gentext key="revision" text="ревизија"/>
|
||||
<l:gentext key="Revision" text="Ревизија"/>
|
||||
<l:gentext key="sect1" text="Одељак"/>
|
||||
<l:gentext key="sect2" text="Одељак"/>
|
||||
<l:gentext key="sect3" text="Одељак"/>
|
||||
<l:gentext key="sect4" text="Одељак"/>
|
||||
<l:gentext key="sect5" text="Одељак"/>
|
||||
<l:gentext key="section" text="одељак"/>
|
||||
<l:gentext key="Section" text="Одељак"/>
|
||||
<l:gentext key="see" text="види"/>
|
||||
<l:gentext key="See" text="Види"/>
|
||||
<l:gentext key="seealso" text="види такође"/>
|
||||
<l:gentext key="Seealso" text="Види такође"/>
|
||||
<l:gentext key="SeeAlso" text="Види такође"/>
|
||||
<l:gentext key="set" text="скуп"/>
|
||||
<l:gentext key="Set" text="Скуп"/>
|
||||
<l:gentext key="setindex" text="индекс скупа"/>
|
||||
<l:gentext key="SetIndex" text="Индекс скупа"/>
|
||||
<l:gentext key="Sidebar" text="Бочна трака"/>
|
||||
<l:gentext key="sidebar" text="бочна трака"/>
|
||||
<l:gentext key="step" text="корак"/>
|
||||
<l:gentext key="Step" text="Корак"/>
|
||||
<l:gentext key="table" text="табела"/>
|
||||
<l:gentext key="Table" text="Табела"/>
|
||||
<l:gentext key="task" text="задатак"/>
|
||||
<l:gentext key="Task" text="Задатак"/>
|
||||
<l:gentext key="tip" text="савет"/>
|
||||
<l:gentext key="TIP" text="САВЕТ"/>
|
||||
<l:gentext key="Tip" text="Савет"/>
|
||||
<l:gentext key="Warning" text="Упозорење"/>
|
||||
<l:gentext key="warning" text="упозорење"/>
|
||||
<l:gentext key="WARNING" text="УПОЗОРЕЊЕ"/>
|
||||
<l:gentext key="and" text="и"/>
|
||||
<l:gentext key="by" text="од"/>
|
||||
<l:gentext key="Edited" text="Уређено"/>
|
||||
<l:gentext key="edited" text="уређено"/>
|
||||
<l:gentext key="Editedby" text="Уредио(ла)"/>
|
||||
<l:gentext key="editedby" text="Уредио(ла)"/>
|
||||
<l:gentext key="in" text="у"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="непостојећи елемент"/>
|
||||
<l:gentext key="notes" text="примедбе"/>
|
||||
<l:gentext key="Notes" text="Примедбе"/>
|
||||
<l:gentext key="Pgs" text="Стр."/>
|
||||
<l:gentext key="pgs" text="стр."/>
|
||||
<l:gentext key="Revisedby" text="Прегледао(ла): "/>
|
||||
<l:gentext key="revisedby" text="прегледао(ла): "/>
|
||||
<l:gentext key="TableNotes" text="Примедбе"/>
|
||||
<l:gentext key="tablenotes" text="примедбе"/>
|
||||
<l:gentext key="TableofContents" text="Садржај"/>
|
||||
<l:gentext key="tableofcontents" text="садржај"/>
|
||||
<l:gentext key="unexpectedelementname" text="неочекивано име елемента"/>
|
||||
<l:gentext key="unsupported" text="није подржано"/>
|
||||
<l:gentext key="xrefto" text="унакрсна референца на"/>
|
||||
<l:gentext key="Authors" text="Аутори"/>
|
||||
<l:gentext key="copyeditor" text="Издавачки уредник"/>
|
||||
<l:gentext key="graphicdesigner" text="Графички дизајнер"/>
|
||||
<l:gentext key="productioneditor" text="Извршни уредник"/>
|
||||
<l:gentext key="technicaleditor" text="Технички уредник"/>
|
||||
<l:gentext key="translator" text="Преводилац"/>
|
||||
<l:gentext key="listofequations" text="списак једначина"/>
|
||||
<l:gentext key="ListofEquations" text="Списак једначина"/>
|
||||
<l:gentext key="ListofExamples" text="Списак примера"/>
|
||||
<l:gentext key="listofexamples" text="списак примера"/>
|
||||
<l:gentext key="ListofFigures" text="Списак слика"/>
|
||||
<l:gentext key="listoffigures" text="списак слика"/>
|
||||
<l:gentext key="ListofProcedures" text="Списак поступака"/>
|
||||
<l:gentext key="listofprocedures" text="списак поступака"/>
|
||||
<l:gentext key="listoftables" text="списак табела"/>
|
||||
<l:gentext key="ListofTables" text="Списак табела"/>
|
||||
<l:gentext key="ListofUnknown" text="списак непознатих"/>
|
||||
<l:gentext key="listofunknown" text="Списак непознатих"/>
|
||||
<l:gentext key="nav-home" text="Почетак"/>
|
||||
<l:gentext key="nav-next" text="Следећи"/>
|
||||
<l:gentext key="nav-next-sibling" text="Брзо напред"/>
|
||||
<l:gentext key="nav-prev" text="Претходни"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Брзо назад"/>
|
||||
<l:gentext key="nav-up" text="Врх"/>
|
||||
<l:gentext key="nav-toc" text="Садр."/>
|
||||
<l:gentext key="Draft" text="Нацрт"/>
|
||||
<l:gentext key="above" text="изнад"/>
|
||||
<l:gentext key="below" text="испод"/>
|
||||
<l:gentext key="sectioncalled" text="одељак под именом"/>
|
||||
<l:gentext key="index symbols" text="Симболи"/>
|
||||
<l:gentext key="lowercase.alpha" text="абвгдђежзијклљмнњопрстћуфхцчџш"/>
|
||||
<l:gentext key="uppercase.alpha" text="АБВГДЂЕЖЗИЈКЛЉМНЊОПРСТЋУФХЦЧЏШ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="име-презиме"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Додатак %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Поглавље %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Једначина %n. %t"/>
|
||||
<l:template name="example" text="Пример %n. %t"/>
|
||||
<l:template name="figure" text="Слика %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Део %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Поступак %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Продукција %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Табела %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t"/>
|
||||
<l:template name="taskprerequisites" text="%t"/>
|
||||
<l:template name="taskrelated" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Додатак %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Поглавље %n. %t"/>
|
||||
<l:template name="part" text="Део %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="О: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="П: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="П: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" у %o"/>
|
||||
<l:template name="olink.page.citation" text=" (стр. %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(страна %p)"/>
|
||||
<l:template name="docname" text=" у %o"/>
|
||||
<l:template name="docnamelong" text=" у документу са насловом %o"/>
|
||||
<l:template name="pageabbrev" text="(стр. %p)"/>
|
||||
<l:template name="Page" text="Страна %p"/>
|
||||
<l:template name="bridgehead" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsection" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsect1" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsect2" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsect3" text="одељак под именом „%t“"/>
|
||||
<l:template name="sect1" text="одељак под именом „%t“"/>
|
||||
<l:template name="sect2" text="одељак под именом „%t“"/>
|
||||
<l:template name="sect3" text="одељак под именом „%t“"/>
|
||||
<l:template name="sect4" text="одељак под именом „%t“"/>
|
||||
<l:template name="sect5" text="одељак под именом „%t“"/>
|
||||
<l:template name="section" text="одељак под именом „%t“"/>
|
||||
<l:template name="simplesect" text="одељак под именом „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="О: %n"/>
|
||||
<l:template name="appendix" text="Додатак %n"/>
|
||||
<l:template name="bridgehead" text="Одељак %n"/>
|
||||
<l:template name="chapter" text="Поглавље %n"/>
|
||||
<l:template name="equation" text="Једначина %n"/>
|
||||
<l:template name="example" text="Пример %n"/>
|
||||
<l:template name="figure" text="Слика %n"/>
|
||||
<l:template name="part" text="Део %n"/>
|
||||
<l:template name="procedure" text="Поступак %n"/>
|
||||
<l:template name="productionset" text="Продукција %n"/>
|
||||
<l:template name="qandadiv" text="П и О %n"/>
|
||||
<l:template name="qandaentry" text="П: %n"/>
|
||||
<l:template name="question" text="П: %n"/>
|
||||
<l:template name="sect1" text="Одељак %n"/>
|
||||
<l:template name="sect2" text="Одељак %n"/>
|
||||
<l:template name="sect3" text="Одељак %n"/>
|
||||
<l:template name="sect4" text="Одељак %n"/>
|
||||
<l:template name="sect5" text="Одељак %n"/>
|
||||
<l:template name="section" text="Одељак %n"/>
|
||||
<l:template name="table" text="Табела %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Додатак %n, %t"/>
|
||||
<l:template name="bridgehead" text="Одељак %n, „%t“"/>
|
||||
<l:template name="chapter" text="Поглавље %n, %t"/>
|
||||
<l:template name="equation" text="Једначина %n, „%t“"/>
|
||||
<l:template name="example" text="Пример %n, „%t“"/>
|
||||
<l:template name="figure" text="Слика %n, „%t“"/>
|
||||
<l:template name="part" text="Део %n, „%t“"/>
|
||||
<l:template name="procedure" text="Поступак %n, „%t“"/>
|
||||
<l:template name="productionset" text="Продукција %n, „%t“"/>
|
||||
<l:template name="qandadiv" text="П и О %n, „%t“"/>
|
||||
<l:template name="refsect1" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsect2" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsect3" text="одељак под именом „%t“"/>
|
||||
<l:template name="refsection" text="одељак под именом „%t“"/>
|
||||
<l:template name="sect1" text="Одељак %n, „%t“"/>
|
||||
<l:template name="sect2" text="Одељак %n, „%t“"/>
|
||||
<l:template name="sect3" text="Одељак %n, „%t“"/>
|
||||
<l:template name="sect4" text="Одељак %n, „%t“"/>
|
||||
<l:template name="sect5" text="Одељак %n, „%t“"/>
|
||||
<l:template name="section" text="Одељак %n, „%t“"/>
|
||||
<l:template name="simplesect" text="одељак под именом „%t“"/>
|
||||
<l:template name="table" text="Табела %n, „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" и "/>
|
||||
<l:template name="seplast" text=", и "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Види %t"/>
|
||||
<l:template name="seealso" text="Види такође %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Публика: "/>
|
||||
<l:template name="MsgLevel" text="Ниво: "/>
|
||||
<l:template name="MsgOrig" text="Извор: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d.m.Y."/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Дефиниција: "/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="јануар"/>
|
||||
<l:template name="February" text="фебруар"/>
|
||||
<l:template name="March" text="март"/>
|
||||
<l:template name="April" text="април"/>
|
||||
<l:template name="May" text="мај"/>
|
||||
<l:template name="June" text="јун"/>
|
||||
<l:template name="July" text="јул"/>
|
||||
<l:template name="August" text="август"/>
|
||||
<l:template name="September" text="септембар"/>
|
||||
<l:template name="October" text="октобар"/>
|
||||
<l:template name="November" text="новембар"/>
|
||||
<l:template name="December" text="децембар"/>
|
||||
<l:template name="Monday" text="понедељак"/>
|
||||
<l:template name="Tuesday" text="уторак"/>
|
||||
<l:template name="Wednesday" text="среда"/>
|
||||
<l:template name="Thursday" text="четвртак"/>
|
||||
<l:template name="Friday" text="петак"/>
|
||||
<l:template name="Saturday" text="субота"/>
|
||||
<l:template name="Sunday" text="недеља"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="јан"/>
|
||||
<l:template name="Feb" text="феб"/>
|
||||
<l:template name="Mar" text="мар"/>
|
||||
<l:template name="Apr" text="апр"/>
|
||||
<l:template name="May" text="мај"/>
|
||||
<l:template name="Jun" text="јун"/>
|
||||
<l:template name="Jul" text="јул"/>
|
||||
<l:template name="Aug" text="авг"/>
|
||||
<l:template name="Sep" text="сеп"/>
|
||||
<l:template name="Oct" text="окт"/>
|
||||
<l:template name="Nov" text="нов"/>
|
||||
<l:template name="Dec" text="дец"/>
|
||||
<l:template name="Mon" text="пон"/>
|
||||
<l:template name="Tue" text="уто"/>
|
||||
<l:template name="Wed" text="сре"/>
|
||||
<l:template name="Thu" text="чет"/>
|
||||
<l:template name="Fri" text="пет"/>
|
||||
<l:template name="Sat" text="суб"/>
|
||||
<l:template name="Sun" text="нед"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0C1A Serbian (Cyrillic)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Симболи</l:l>
|
||||
<l:l i="1">А</l:l>
|
||||
<l:l i="1">а</l:l>
|
||||
<l:l i="2">Б</l:l>
|
||||
<l:l i="2">б</l:l>
|
||||
<l:l i="3">В</l:l>
|
||||
<l:l i="3">в</l:l>
|
||||
<l:l i="4">Г</l:l>
|
||||
<l:l i="4">г</l:l>
|
||||
<l:l i="5">Д</l:l>
|
||||
<l:l i="5">д</l:l>
|
||||
<l:l i="6">Ђ</l:l>
|
||||
<l:l i="6">ђ</l:l>
|
||||
<l:l i="7">Е</l:l>
|
||||
<l:l i="7">е</l:l>
|
||||
<l:l i="8">Ж</l:l>
|
||||
<l:l i="8">ж</l:l>
|
||||
<l:l i="9">З</l:l>
|
||||
<l:l i="9">з</l:l>
|
||||
<l:l i="10">И</l:l>
|
||||
<l:l i="10">и</l:l>
|
||||
<l:l i="11">Ј</l:l>
|
||||
<l:l i="11">ј</l:l>
|
||||
<l:l i="12">К</l:l>
|
||||
<l:l i="12">к</l:l>
|
||||
<l:l i="13">Л</l:l>
|
||||
<l:l i="13">л</l:l>
|
||||
<l:l i="14">Љ</l:l>
|
||||
<l:l i="14">љ</l:l>
|
||||
<l:l i="15">М</l:l>
|
||||
<l:l i="15">м</l:l>
|
||||
<l:l i="16">Н</l:l>
|
||||
<l:l i="16">н</l:l>
|
||||
<l:l i="17">Њ</l:l>
|
||||
<l:l i="17">њ</l:l>
|
||||
<l:l i="18">О</l:l>
|
||||
<l:l i="18">о</l:l>
|
||||
<l:l i="19">П</l:l>
|
||||
<l:l i="19">п</l:l>
|
||||
<l:l i="20">Р</l:l>
|
||||
<l:l i="20">р</l:l>
|
||||
<l:l i="21">С</l:l>
|
||||
<l:l i="21">с</l:l>
|
||||
<l:l i="22">Т</l:l>
|
||||
<l:l i="22">т</l:l>
|
||||
<l:l i="23">Ћ</l:l>
|
||||
<l:l i="23">ћ</l:l>
|
||||
<l:l i="24">У</l:l>
|
||||
<l:l i="24">у</l:l>
|
||||
<l:l i="25">Ф</l:l>
|
||||
<l:l i="25">ф</l:l>
|
||||
<l:l i="26">Х</l:l>
|
||||
<l:l i="26">х</l:l>
|
||||
<l:l i="27">Ц</l:l>
|
||||
<l:l i="27">ц</l:l>
|
||||
<l:l i="28">Ч</l:l>
|
||||
<l:l i="28">ч</l:l>
|
||||
<l:l i="29">Џ</l:l>
|
||||
<l:l i="29">џ</l:l>
|
||||
<l:l i="30">Ш</l:l>
|
||||
<l:l i="30">ш</l:l>
|
||||
<l:l i="31">A</l:l>
|
||||
<l:l i="31">a</l:l>
|
||||
<l:l i="32">B</l:l>
|
||||
<l:l i="32">b</l:l>
|
||||
<l:l i="33">C</l:l>
|
||||
<l:l i="33">c</l:l>
|
||||
<l:l i="34">D</l:l>
|
||||
<l:l i="34">d</l:l>
|
||||
<l:l i="35">E</l:l>
|
||||
<l:l i="35">e</l:l>
|
||||
<l:l i="36">F</l:l>
|
||||
<l:l i="36">f</l:l>
|
||||
<l:l i="37">G</l:l>
|
||||
<l:l i="37">g</l:l>
|
||||
<l:l i="38">H</l:l>
|
||||
<l:l i="38">h</l:l>
|
||||
<l:l i="39">I</l:l>
|
||||
<l:l i="39">i</l:l>
|
||||
<l:l i="40">J</l:l>
|
||||
<l:l i="40">j</l:l>
|
||||
<l:l i="41">K</l:l>
|
||||
<l:l i="41">k</l:l>
|
||||
<l:l i="42">L</l:l>
|
||||
<l:l i="42">l</l:l>
|
||||
<l:l i="43">M</l:l>
|
||||
<l:l i="43">m</l:l>
|
||||
<l:l i="44">N</l:l>
|
||||
<l:l i="44">n</l:l>
|
||||
<l:l i="45">O</l:l>
|
||||
<l:l i="45">o</l:l>
|
||||
<l:l i="46">P</l:l>
|
||||
<l:l i="46">p</l:l>
|
||||
<l:l i="47">Q</l:l>
|
||||
<l:l i="47">Q</l:l>
|
||||
<l:l i="48">R</l:l>
|
||||
<l:l i="48">r</l:l>
|
||||
<l:l i="49">S</l:l>
|
||||
<l:l i="49">s</l:l>
|
||||
<l:l i="50">T</l:l>
|
||||
<l:l i="50">t</l:l>
|
||||
<l:l i="51">U</l:l>
|
||||
<l:l i="51">u</l:l>
|
||||
<l:l i="52">V</l:l>
|
||||
<l:l i="52">v</l:l>
|
||||
<l:l i="53">W</l:l>
|
||||
<l:l i="53">w</l:l>
|
||||
<l:l i="54">X</l:l>
|
||||
<l:l i="54">x</l:l>
|
||||
<l:l i="55">Y</l:l>
|
||||
<l:l i="55">y</l:l>
|
||||
<l:l i="56">Z</l:l>
|
||||
<l:l i="56">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
673
doc/reference/lib/docbook-xsl-snapshot/common/sr_Latn.xml
Normal file
673
doc/reference/lib/docbook-xsl-snapshot/common/sr_Latn.xml
Normal file
@@ -0,0 +1,673 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="sr_latn" english-language-name="Serbian in Latin script">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/sr_Latn.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited sr_Latn.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Sažetak"/>
|
||||
<l:gentext key="abstract" text="sažetak"/>
|
||||
<l:gentext key="Answer" text="O:"/>
|
||||
<l:gentext key="answer" text="o:"/>
|
||||
<l:gentext key="Appendix" text="Dodatak"/>
|
||||
<l:gentext key="appendix" text="dodatak"/>
|
||||
<l:gentext key="Article" text="Članak"/>
|
||||
<l:gentext key="article" text="članak"/>
|
||||
<l:gentext key="Author" text="Autor"/>
|
||||
<l:gentext key="Bibliography" text="Literatura"/>
|
||||
<l:gentext key="bibliography" text="literatura"/>
|
||||
<l:gentext key="Book" text="Knjiga"/>
|
||||
<l:gentext key="book" text="knjiga"/>
|
||||
<l:gentext key="CAUTION" text="UPOZORENJE"/>
|
||||
<l:gentext key="Caution" text="Upozorenje"/>
|
||||
<l:gentext key="caution" text="upozorenje"/>
|
||||
<l:gentext key="Chapter" text="Poglavlje"/>
|
||||
<l:gentext key="chapter" text="poglavlje"/>
|
||||
<l:gentext key="Colophon" text="Kolofon"/>
|
||||
<l:gentext key="colophon" text="kolofon"/>
|
||||
<l:gentext key="Copyright" text="Autorska prava"/>
|
||||
<l:gentext key="copyright" text="autorska prava"/>
|
||||
<l:gentext key="Dedication" text="Posveta"/>
|
||||
<l:gentext key="dedication" text="posveta"/>
|
||||
<l:gentext key="Edition" text="Izdanje"/>
|
||||
<l:gentext key="edition" text="izdanje"/>
|
||||
<l:gentext key="Editor" text="Urednik"/>
|
||||
<l:gentext key="Equation" text="Jednačina"/>
|
||||
<l:gentext key="equation" text="jednačina"/>
|
||||
<l:gentext key="Example" text="Primer"/>
|
||||
<l:gentext key="example" text="primer"/>
|
||||
<l:gentext key="Figure" text="Slika"/>
|
||||
<l:gentext key="figure" text="slika"/>
|
||||
<l:gentext key="Glossary" text="Rečnik"/>
|
||||
<l:gentext key="glossary" text="rečnik"/>
|
||||
<l:gentext key="GlossSee" text="Vidi"/>
|
||||
<l:gentext key="glosssee" text="vidi"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Vidi takođe"/>
|
||||
<l:gentext key="glossseealso" text="vidi takođe"/>
|
||||
<l:gentext key="IMPORTANT" text="VAŽNO"/>
|
||||
<l:gentext key="important" text="važno"/>
|
||||
<l:gentext key="Important" text="Važno"/>
|
||||
<l:gentext key="Index" text="Indeks"/>
|
||||
<l:gentext key="index" text="indeks"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Pravna napomena"/>
|
||||
<l:gentext key="legalnotice" text="pravna napomena"/>
|
||||
<l:gentext key="MsgAud" text="Publika"/>
|
||||
<l:gentext key="msgaud" text="publika"/>
|
||||
<l:gentext key="MsgLevel" text="Nivo"/>
|
||||
<l:gentext key="msglevel" text="nivo"/>
|
||||
<l:gentext key="MsgOrig" text="Izvor"/>
|
||||
<l:gentext key="msgorig" text="izvor"/>
|
||||
<l:gentext key="NOTE" text="PRIMEDBA"/>
|
||||
<l:gentext key="Note" text="Primedba"/>
|
||||
<l:gentext key="note" text="primedba"/>
|
||||
<l:gentext key="Part" text="Deo"/>
|
||||
<l:gentext key="part" text="deo"/>
|
||||
<l:gentext key="Preface" text="Predgovor"/>
|
||||
<l:gentext key="preface" text="predgovor"/>
|
||||
<l:gentext key="Procedure" text="Postupak"/>
|
||||
<l:gentext key="procedure" text="postupak"/>
|
||||
<l:gentext key="ProductionSet" text="Produkcija"/>
|
||||
<l:gentext key="PubDate" text="Datum izdavanja"/>
|
||||
<l:gentext key="pubdate" text="datum izdavanja"/>
|
||||
<l:gentext key="Published" text="Izdano"/>
|
||||
<l:gentext key="published" text="izdano"/>
|
||||
<l:gentext key="Publisher" text="Izdavač"/>
|
||||
<l:gentext key="Qandadiv" text="P i O"/>
|
||||
<l:gentext key="qandadiv" text="p i o"/>
|
||||
<l:gentext key="QandASet" text="Često postavljana pitanja"/>
|
||||
<l:gentext key="Question" text="P:"/>
|
||||
<l:gentext key="question" text="p:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Referenca"/>
|
||||
<l:gentext key="reference" text="referenca"/>
|
||||
<l:gentext key="References" text="Reference"/>
|
||||
<l:gentext key="RefName" text="Ime"/>
|
||||
<l:gentext key="refname" text="ime"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Pregled"/>
|
||||
<l:gentext key="refsynopsisdiv" text="pregled"/>
|
||||
<l:gentext key="RevHistory" text="Istorija revizija"/>
|
||||
<l:gentext key="revhistory" text="istorija revizija"/>
|
||||
<l:gentext key="revision" text="revizija"/>
|
||||
<l:gentext key="Revision" text="Revizija"/>
|
||||
<l:gentext key="sect1" text="Odeljak"/>
|
||||
<l:gentext key="sect2" text="Odeljak"/>
|
||||
<l:gentext key="sect3" text="Odeljak"/>
|
||||
<l:gentext key="sect4" text="Odeljak"/>
|
||||
<l:gentext key="sect5" text="Odeljak"/>
|
||||
<l:gentext key="section" text="odeljak"/>
|
||||
<l:gentext key="Section" text="Odeljak"/>
|
||||
<l:gentext key="see" text="vidi"/>
|
||||
<l:gentext key="See" text="Vidi"/>
|
||||
<l:gentext key="seealso" text="vidi takođe"/>
|
||||
<l:gentext key="Seealso" text="Vidi takođe"/>
|
||||
<l:gentext key="SeeAlso" text="Vidi takođe"/>
|
||||
<l:gentext key="set" text="skup"/>
|
||||
<l:gentext key="Set" text="Skup"/>
|
||||
<l:gentext key="setindex" text="indeks skupa"/>
|
||||
<l:gentext key="SetIndex" text="Indeks skupa"/>
|
||||
<l:gentext key="Sidebar" text="Bočna traka"/>
|
||||
<l:gentext key="sidebar" text="bočna traka"/>
|
||||
<l:gentext key="step" text="korak"/>
|
||||
<l:gentext key="Step" text="Korak"/>
|
||||
<l:gentext key="table" text="tabela"/>
|
||||
<l:gentext key="Table" text="Tabela"/>
|
||||
<l:gentext key="task" text="zadatak"/>
|
||||
<l:gentext key="Task" text="Zadatak"/>
|
||||
<l:gentext key="tip" text="savet"/>
|
||||
<l:gentext key="TIP" text="SAVET"/>
|
||||
<l:gentext key="Tip" text="Savet"/>
|
||||
<l:gentext key="Warning" text="Upozorenje"/>
|
||||
<l:gentext key="warning" text="upozorenje"/>
|
||||
<l:gentext key="WARNING" text="UPOZORENJE"/>
|
||||
<l:gentext key="and" text="i"/>
|
||||
<l:gentext key="by" text="od"/>
|
||||
<l:gentext key="Edited" text="Uređeno"/>
|
||||
<l:gentext key="edited" text="uređeno"/>
|
||||
<l:gentext key="Editedby" text="Uredio(la)"/>
|
||||
<l:gentext key="editedby" text="Uredio(la)"/>
|
||||
<l:gentext key="in" text="u"/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="nepostojeći element"/>
|
||||
<l:gentext key="notes" text="primedbe"/>
|
||||
<l:gentext key="Notes" text="Primedbe"/>
|
||||
<l:gentext key="Pgs" text="Str."/>
|
||||
<l:gentext key="pgs" text="str."/>
|
||||
<l:gentext key="Revisedby" text="Pregledao(la): "/>
|
||||
<l:gentext key="revisedby" text="pregledao(la): "/>
|
||||
<l:gentext key="TableNotes" text="Primedbe"/>
|
||||
<l:gentext key="tablenotes" text="primedbe"/>
|
||||
<l:gentext key="TableofContents" text="Sadržaj"/>
|
||||
<l:gentext key="tableofcontents" text="sadržaj"/>
|
||||
<l:gentext key="unexpectedelementname" text="neočekivano ime elementa"/>
|
||||
<l:gentext key="unsupported" text="nije podržano"/>
|
||||
<l:gentext key="xrefto" text="unakrsna referenca na"/>
|
||||
<l:gentext key="Authors" text="Autori"/>
|
||||
<l:gentext key="copyeditor" text="Izdavački urednik"/>
|
||||
<l:gentext key="graphicdesigner" text="Grafički dizajner"/>
|
||||
<l:gentext key="productioneditor" text="Izvršni urednik"/>
|
||||
<l:gentext key="technicaleditor" text="Tehnički urednik"/>
|
||||
<l:gentext key="translator" text="Prevodilac"/>
|
||||
<l:gentext key="listofequations" text="spisak jednačina"/>
|
||||
<l:gentext key="ListofEquations" text="Spisak jednačina"/>
|
||||
<l:gentext key="ListofExamples" text="Spisak primera"/>
|
||||
<l:gentext key="listofexamples" text="spisak primera"/>
|
||||
<l:gentext key="ListofFigures" text="Spisak slika"/>
|
||||
<l:gentext key="listoffigures" text="spisak slika"/>
|
||||
<l:gentext key="ListofProcedures" text="Spisak postupaka"/>
|
||||
<l:gentext key="listofprocedures" text="spisak postupaka"/>
|
||||
<l:gentext key="listoftables" text="spisak tabela"/>
|
||||
<l:gentext key="ListofTables" text="Spisak tabela"/>
|
||||
<l:gentext key="ListofUnknown" text="spisak nepoznatih"/>
|
||||
<l:gentext key="listofunknown" text="Spisak nepoznatih"/>
|
||||
<l:gentext key="nav-home" text="Početak"/>
|
||||
<l:gentext key="nav-next" text="Sledeći"/>
|
||||
<l:gentext key="nav-next-sibling" text="Brzo napred"/>
|
||||
<l:gentext key="nav-prev" text="Prethodni"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Brzo nazad"/>
|
||||
<l:gentext key="nav-up" text="Vrh"/>
|
||||
<l:gentext key="nav-toc" text="Sadr."/>
|
||||
<l:gentext key="Draft" text="Nacrt"/>
|
||||
<l:gentext key="above" text="iznad"/>
|
||||
<l:gentext key="below" text="ispod"/>
|
||||
<l:gentext key="sectioncalled" text="odeljak pod imenom"/>
|
||||
<l:gentext key="index symbols" text="Simboli"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcčćdđefghijklmnopqrsštuvwxyzž"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCČĆDĐEFGHIJKLMNOPQRSŠTUVWXYZŽ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="„"/>
|
||||
<l:dingbat key="endquote" text="“"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="ime-prezime"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Dodatak %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Poglavlje %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Jednačina %n. %t"/>
|
||||
<l:template name="example" text="Primer %n. %t"/>
|
||||
<l:template name="figure" text="Slika %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Deo %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Postupak %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Produkcija %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabela %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t"/>
|
||||
<l:template name="taskprerequisites" text="%t"/>
|
||||
<l:template name="taskrelated" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Dodatak %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Poglavlje %n. %t"/>
|
||||
<l:template name="part" text="Deo %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="O: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" u %o"/>
|
||||
<l:template name="olink.page.citation" text=" (str. %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(strana %p)"/>
|
||||
<l:template name="docname" text=" u %o"/>
|
||||
<l:template name="docnamelong" text=" u dokumentu sa naslovom %o"/>
|
||||
<l:template name="pageabbrev" text="(str. %p)"/>
|
||||
<l:template name="Page" text="Strana %p"/>
|
||||
<l:template name="bridgehead" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsection" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsect1" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsect2" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsect3" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="sect1" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="sect2" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="sect3" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="sect4" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="sect5" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="section" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="simplesect" text="odeljak pod imenom „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="O: %n"/>
|
||||
<l:template name="appendix" text="Dodatak %n"/>
|
||||
<l:template name="bridgehead" text="Odeljak %n"/>
|
||||
<l:template name="chapter" text="Poglavlje %n"/>
|
||||
<l:template name="equation" text="Jednačina %n"/>
|
||||
<l:template name="example" text="Primer %n"/>
|
||||
<l:template name="figure" text="Slika %n"/>
|
||||
<l:template name="part" text="Deo %n"/>
|
||||
<l:template name="procedure" text="Postupak %n"/>
|
||||
<l:template name="productionset" text="Produkcija %n"/>
|
||||
<l:template name="qandadiv" text="P i O %n"/>
|
||||
<l:template name="qandaentry" text="P: %n"/>
|
||||
<l:template name="question" text="P: %n"/>
|
||||
<l:template name="sect1" text="Odeljak %n"/>
|
||||
<l:template name="sect2" text="Odeljak %n"/>
|
||||
<l:template name="sect3" text="Odeljak %n"/>
|
||||
<l:template name="sect4" text="Odeljak %n"/>
|
||||
<l:template name="sect5" text="Odeljak %n"/>
|
||||
<l:template name="section" text="Odeljak %n"/>
|
||||
<l:template name="table" text="Tabela %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Dodatak %n, %t"/>
|
||||
<l:template name="bridgehead" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="chapter" text="Poglavlje %n, %t"/>
|
||||
<l:template name="equation" text="Jednačina %n, „%t“"/>
|
||||
<l:template name="example" text="Primer %n, „%t“"/>
|
||||
<l:template name="figure" text="Slika %n, „%t“"/>
|
||||
<l:template name="part" text="Deo %n, „%t“"/>
|
||||
<l:template name="procedure" text="Postupak %n, „%t“"/>
|
||||
<l:template name="productionset" text="Produkcija %n, „%t“"/>
|
||||
<l:template name="qandadiv" text="P i O %n, „%t“"/>
|
||||
<l:template name="refsect1" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsect2" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsect3" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="refsection" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="sect1" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="sect2" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="sect3" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="sect4" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="sect5" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="section" text="Odeljak %n, „%t“"/>
|
||||
<l:template name="simplesect" text="odeljak pod imenom „%t“"/>
|
||||
<l:template name="table" text="Tabela %n, „%t“"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" i "/>
|
||||
<l:template name="seplast" text=", i "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Vidi %t"/>
|
||||
<l:template name="seealso" text="Vidi takođe %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Publika: "/>
|
||||
<l:template name="MsgLevel" text="Nivo: "/>
|
||||
<l:template name="MsgOrig" text="Izvor: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d.m.Y."/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definicija: "/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="januar"/>
|
||||
<l:template name="February" text="februar"/>
|
||||
<l:template name="March" text="mart"/>
|
||||
<l:template name="April" text="april"/>
|
||||
<l:template name="May" text="maj"/>
|
||||
<l:template name="June" text="jun"/>
|
||||
<l:template name="July" text="jul"/>
|
||||
<l:template name="August" text="avgust"/>
|
||||
<l:template name="September" text="septembar"/>
|
||||
<l:template name="October" text="oktobar"/>
|
||||
<l:template name="November" text="novembar"/>
|
||||
<l:template name="December" text="decembar"/>
|
||||
<l:template name="Monday" text="ponedeljak"/>
|
||||
<l:template name="Tuesday" text="utorak"/>
|
||||
<l:template name="Wednesday" text="sreda"/>
|
||||
<l:template name="Thursday" text="četvrtak"/>
|
||||
<l:template name="Friday" text="petak"/>
|
||||
<l:template name="Saturday" text="subota"/>
|
||||
<l:template name="Sunday" text="nedelja"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="jan"/>
|
||||
<l:template name="Feb" text="feb"/>
|
||||
<l:template name="Mar" text="mar"/>
|
||||
<l:template name="Apr" text="apr"/>
|
||||
<l:template name="May" text="maj"/>
|
||||
<l:template name="Jun" text="jun"/>
|
||||
<l:template name="Jul" text="jul"/>
|
||||
<l:template name="Aug" text="avg"/>
|
||||
<l:template name="Sep" text="sep"/>
|
||||
<l:template name="Oct" text="okt"/>
|
||||
<l:template name="Nov" text="nov"/>
|
||||
<l:template name="Dec" text="dec"/>
|
||||
<l:template name="Mon" text="pon"/>
|
||||
<l:template name="Tue" text="uto"/>
|
||||
<l:template name="Wed" text="sre"/>
|
||||
<l:template name="Thu" text="čet"/>
|
||||
<l:template name="Fri" text="pet"/>
|
||||
<l:template name="Sat" text="sub"/>
|
||||
<l:template name="Sun" text="ned"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x081a Serbian (Latin)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Simboli</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">Č</l:l>
|
||||
<l:l i="4">č</l:l>
|
||||
<l:l i="5">Ć</l:l>
|
||||
<l:l i="5">ć</l:l>
|
||||
<l:l i="6">D</l:l>
|
||||
<l:l i="6">d</l:l>
|
||||
<l:l i="7">DŽ</l:l>
|
||||
<l:l i="7">Dž</l:l>
|
||||
<l:l i="7">dž</l:l>
|
||||
<l:l i="8">Đ</l:l>
|
||||
<l:l i="8">đ</l:l>
|
||||
<l:l i="9">E</l:l>
|
||||
<l:l i="9">e</l:l>
|
||||
<l:l i="10">F</l:l>
|
||||
<l:l i="10">f</l:l>
|
||||
<l:l i="11">G</l:l>
|
||||
<l:l i="11">g</l:l>
|
||||
<l:l i="12">H</l:l>
|
||||
<l:l i="12">h</l:l>
|
||||
<l:l i="13">I</l:l>
|
||||
<l:l i="13">i</l:l>
|
||||
<l:l i="14">J</l:l>
|
||||
<l:l i="14">j</l:l>
|
||||
<l:l i="15">K</l:l>
|
||||
<l:l i="15">k</l:l>
|
||||
<l:l i="16">L</l:l>
|
||||
<l:l i="16">l</l:l>
|
||||
<l:l i="17">LJ</l:l>
|
||||
<l:l i="17">Lj</l:l>
|
||||
<l:l i="17">lj</l:l>
|
||||
<l:l i="18">M</l:l>
|
||||
<l:l i="18">m</l:l>
|
||||
<l:l i="19">N</l:l>
|
||||
<l:l i="19">n</l:l>
|
||||
<l:l i="20">NJ</l:l>
|
||||
<l:l i="20">Nj</l:l>
|
||||
<l:l i="20">nj</l:l>
|
||||
<l:l i="21">O</l:l>
|
||||
<l:l i="21">o</l:l>
|
||||
<l:l i="22">P</l:l>
|
||||
<l:l i="22">p</l:l>
|
||||
<l:l i="23">Q</l:l>
|
||||
<l:l i="23">Q</l:l>
|
||||
<l:l i="24">R</l:l>
|
||||
<l:l i="24">r</l:l>
|
||||
<l:l i="25">S</l:l>
|
||||
<l:l i="25">s</l:l>
|
||||
<l:l i="26">Š</l:l>
|
||||
<l:l i="26">š</l:l>
|
||||
<l:l i="27">T</l:l>
|
||||
<l:l i="27">t</l:l>
|
||||
<l:l i="28">U</l:l>
|
||||
<l:l i="28">u</l:l>
|
||||
<l:l i="29">V</l:l>
|
||||
<l:l i="29">v</l:l>
|
||||
<l:l i="30">W</l:l>
|
||||
<l:l i="30">w</l:l>
|
||||
<l:l i="31">X</l:l>
|
||||
<l:l i="31">x</l:l>
|
||||
<l:l i="32">Y</l:l>
|
||||
<l:l i="32">y</l:l>
|
||||
<l:l i="33">Z</l:l>
|
||||
<l:l i="33">z</l:l>
|
||||
<l:l i="34">Ž</l:l>
|
||||
<l:l i="34">ž</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
289
doc/reference/lib/docbook-xsl-snapshot/common/stripns.xsl
Normal file
289
doc/reference/lib/docbook-xsl-snapshot/common/stripns.xsl
Normal file
@@ -0,0 +1,289 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:ng="http://docbook.org/docbook-ng"
|
||||
xmlns:db="http://docbook.org/ns/docbook"
|
||||
xmlns:saxon="http://icl.com/saxon"
|
||||
xmlns:NodeInfo="http://org.apache.xalan.lib.NodeInfo"
|
||||
xmlns:exsl="http://exslt.org/common"
|
||||
exclude-result-prefixes="db ng exsl saxon NodeInfo"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: stripns.xsl 7604 2007-12-14 18:06:11Z mzjn $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- put an xml:base attribute on the root element -->
|
||||
<xsl:template match="/*" mode="stripNS">
|
||||
<xsl:choose>
|
||||
<xsl:when test="self::ng:* or self::db:*">
|
||||
<xsl:element name="{local-name(.)}">
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')]"/>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:call-template name="add-xml-base"/>
|
||||
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:element>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:copy>
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')]"/>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:call-template name="add-xml-base"/>
|
||||
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:copy>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="stripNS">
|
||||
<xsl:choose>
|
||||
<xsl:when test="self::ng:* or self::db:*">
|
||||
<xsl:element name="{local-name(.)}">
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')]"/>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:element>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:copy>
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')]"/>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:copy>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="db:info" mode="stripNS">
|
||||
<xsl:variable name="info">
|
||||
<xsl:choose>
|
||||
<xsl:when test="parent::db:article
|
||||
|parent::db:appendix
|
||||
|parent::db:bibliography
|
||||
|parent::db:book
|
||||
|parent::db:chapter
|
||||
|parent::db:glossary
|
||||
|parent::db:index
|
||||
|parent::db:part
|
||||
|parent::db:preface
|
||||
|parent::db:refentry
|
||||
|parent::db:reference
|
||||
|parent::db:refsect1
|
||||
|parent::db:refsect2
|
||||
|parent::db:refsect3
|
||||
|parent::db:refsection
|
||||
|parent::db:refsynopsisdiv
|
||||
|parent::db:sect1
|
||||
|parent::db:sect2
|
||||
|parent::db:sect3
|
||||
|parent::db:sect4
|
||||
|parent::db:sect5
|
||||
|parent::db:section
|
||||
|parent::db:setindex
|
||||
|parent::db:set
|
||||
|parent::db:slides
|
||||
|parent::db:sidebar">
|
||||
<xsl:value-of select="local-name(parent::*)"/>
|
||||
<xsl:text>info</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="parent::db:audioobject
|
||||
|parent::db:imageobject
|
||||
|parent::db:inlinemediaobject
|
||||
|parent::db:mediaobject
|
||||
|parent::db:mediaobjectco
|
||||
|parent::db:textobject
|
||||
|parent::db:videoobject">
|
||||
<xsl:text>objectinfo</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>blockinfo</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:element name="{$info}">
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')]"/>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:element>
|
||||
|
||||
<xsl:if test="(not(../db:title) and not(../ng:title))
|
||||
and ($info = 'prefaceinfo'
|
||||
or $info = 'chapterinfo'
|
||||
or $info = 'sectioninfo'
|
||||
or $info = 'sect1info'
|
||||
or $info = 'sect2info'
|
||||
or $info = 'sect3info'
|
||||
or $info = 'sect4info'
|
||||
or $info = 'sect5info'
|
||||
or $info = 'refsectioninfo'
|
||||
or $info = 'refsect1info'
|
||||
or $info = 'refsect2info'
|
||||
or $info = 'refsect3info'
|
||||
or $info = 'blockinfo'
|
||||
or $info = 'appendixinfo')">
|
||||
<xsl:apply-templates select="db:title|ng:title" mode="stripNS"/>
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ng:tag|db:tag" mode="stripNS">
|
||||
<sgmltag>
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')]"/>
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</sgmltag>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ng:textdata|db:textdata
|
||||
|ng:imagedata|db:imagedata
|
||||
|ng:videodata|db:videodata
|
||||
|ng:audiodata|db:audiodata" mode="stripNS">
|
||||
<xsl:element name="{local-name(.)}">
|
||||
<xsl:copy-of select="@*[not(name(.) = 'xml:id')
|
||||
and not(name(.) = 'version')
|
||||
and not(name(.) = 'entityref')]"/>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="@entityref">
|
||||
<xsl:attribute name="fileref">
|
||||
<xsl:value-of select="unparsed-entity-uri(@entityref)"/>
|
||||
</xsl:attribute>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:element>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="add-xml-base">
|
||||
<xsl:if test="not(@xml:base)">
|
||||
<xsl:variable name="base">
|
||||
<xsl:choose>
|
||||
<xsl:when test="function-available('saxon:systemId')">
|
||||
<xsl:value-of select="saxon:systemId()"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="function-available('NodeInfo:systemId')">
|
||||
<xsl:value-of select="NodeInfo:systemId()"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>
|
||||
<xsl:text>WARNING: cannot add @xml:base to node </xsl:text>
|
||||
<xsl:text>set root element. </xsl:text>
|
||||
<xsl:text>Relative paths may not work.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<!-- debug
|
||||
<xsl:message>base is <xsl:value-of select="$base"/></xsl:message>
|
||||
-->
|
||||
<xsl:if test="$base != ''">
|
||||
<xsl:attribute name="xml:base">
|
||||
<xsl:call-template name="systemIdToBaseURI">
|
||||
<xsl:with-param name="systemId">
|
||||
<!-- file: seems to confuse some processors. -->
|
||||
<xsl:choose>
|
||||
<!-- however, windows paths must use file:///c:/path -->
|
||||
<xsl:when test="starts-with($base, 'file:///') and
|
||||
substring($base, 10, 1) = ':'">
|
||||
<xsl:value-of select="$base"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="starts-with($base, 'file:/')
|
||||
and substring($base, 8, 1) = ':'">
|
||||
<xsl:value-of select="concat('file:///',
|
||||
substring-after($base,'file:/'))"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="starts-with($base, 'file:///')">
|
||||
<xsl:value-of select="substring-after($base,'file://')"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="starts-with($base, 'file://')">
|
||||
<xsl:value-of select="substring-after($base,'file:/')"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="starts-with($base, 'file:/')">
|
||||
<xsl:value-of select="substring-after($base,'file:')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$base"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="systemIdToBaseURI">
|
||||
<xsl:param name="systemId" select="''"/>
|
||||
<xsl:if test="contains($systemId,'/')">
|
||||
<xsl:value-of select="substring-before($systemId,'/')"/>
|
||||
<xsl:text>/</xsl:text>
|
||||
<xsl:call-template name="systemIdToBaseURI">
|
||||
<xsl:with-param name="systemId"
|
||||
select="substring-after($systemId,'/')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="comment()|processing-instruction()|text()" mode="stripNS">
|
||||
<xsl:copy/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="/" priority="-1">
|
||||
<xsl:choose>
|
||||
<xsl:when test="(function-available('exsl:node-set') or
|
||||
contains(system-property('xsl:vendor'),
|
||||
'Apache Software Foundation'))
|
||||
and (*/self::ng:* or */self::db:*)">
|
||||
<xsl:message>Stripping namespace from DocBook 5 document.</xsl:message>
|
||||
<xsl:variable name="nons">
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</xsl:variable>
|
||||
<xsl:message>Processing stripped document.</xsl:message>
|
||||
<xsl:apply-templates select="exsl:node-set($nons)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:copy-of select="@* | node()"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
155
doc/reference/lib/docbook-xsl-snapshot/common/subtitles.xsl
Normal file
155
doc/reference/lib/docbook-xsl-snapshot/common/subtitles.xsl
Normal file
@@ -0,0 +1,155 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: subtitles.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- subtitle markup -->
|
||||
|
||||
<doc:mode mode="subtitle.markup" xmlns="">
|
||||
<refpurpose>Provides access to element subtitles</refpurpose>
|
||||
<refdescription id="subtitle.markup-desc">
|
||||
<para>Processing an element in the
|
||||
<literal role="mode">subtitle.markup</literal> mode produces the
|
||||
subtitle of the element.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<xsl:template match="*" mode="subtitle.markup">
|
||||
<xsl:message>
|
||||
<xsl:text>Request for subtitle of unexpected element: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
</xsl:message>
|
||||
<xsl:text>???SUBTITLE???</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="subtitle" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(setinfo/subtitle|info/subtitle|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(bookinfo/subtitle|info/subtitle|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(partinfo/subtitle
|
||||
|docinfo/subtitle
|
||||
|info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(docinfo/subtitle
|
||||
|info/subtitle
|
||||
|prefaceinfo/subtitle
|
||||
|chapterinfo/subtitle
|
||||
|appendixinfo/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(artheader/subtitle
|
||||
|articleinfo/subtitle
|
||||
|info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dedication|colophon" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(subtitle|info/subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(referenceinfo/subtitle
|
||||
|docinfo/subtitle
|
||||
|info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaset" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(blockinfo/subtitle|info/subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(refentryinfo/subtitle
|
||||
|info/subtitle
|
||||
|docinfo/subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section
|
||||
|sect1|sect2|sect3|sect4|sect5
|
||||
|refsect1|refsect2|refsect3
|
||||
|simplesect"
|
||||
mode="subtitle.markup">
|
||||
<xsl:param name="allow-anchors" select="'0'"/>
|
||||
<xsl:apply-templates select="(info/subtitle
|
||||
|sectioninfo/subtitle
|
||||
|sect1info/subtitle
|
||||
|sect2info/subtitle
|
||||
|sect3info/subtitle
|
||||
|sect4info/subtitle
|
||||
|sect5info/subtitle
|
||||
|refsect1info/subtitle
|
||||
|refsect2info/subtitle
|
||||
|refsect3info/subtitle
|
||||
|subtitle)[1]"
|
||||
mode="subtitle.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
658
doc/reference/lib/docbook-xsl-snapshot/common/sv.xml
Normal file
658
doc/reference/lib/docbook-xsl-snapshot/common/sv.xml
Normal file
@@ -0,0 +1,658 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="sv" english-language-name="Swedish">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/sv.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited sv.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Sammanfattning"/>
|
||||
<l:gentext key="abstract" text="Sammanfattning"/>
|
||||
<l:gentext key="Answer" text="A:"/>
|
||||
<l:gentext key="answer" text="A:"/>
|
||||
<l:gentext key="Appendix" text="Appendix"/>
|
||||
<l:gentext key="appendix" text="appendix"/>
|
||||
<l:gentext key="Article" text="Artikel"/>
|
||||
<l:gentext key="article" text="Artikel"/>
|
||||
<l:gentext key="Author" text="Author" lang="en"/>
|
||||
<l:gentext key="Bibliography" text="Bibliografi"/>
|
||||
<l:gentext key="bibliography" text="Bibliografi"/>
|
||||
<l:gentext key="Book" text="Bok"/>
|
||||
<l:gentext key="book" text="Bok"/>
|
||||
<l:gentext key="CAUTION" text="OBSERVERA"/>
|
||||
<l:gentext key="Caution" text="Observera"/>
|
||||
<l:gentext key="caution" text="Observera"/>
|
||||
<l:gentext key="Chapter" text="Kapitel"/>
|
||||
<l:gentext key="chapter" text="kapitel"/>
|
||||
<l:gentext key="Colophon" text="Kolofon"/>
|
||||
<l:gentext key="colophon" text="kolofon"/>
|
||||
<l:gentext key="Copyright" text="Copyright"/>
|
||||
<l:gentext key="copyright" text="Copyright"/>
|
||||
<l:gentext key="Dedication" text="Dedikation"/>
|
||||
<l:gentext key="dedication" text="Dedikation"/>
|
||||
<l:gentext key="Edition" text="Utgåva"/>
|
||||
<l:gentext key="edition" text="Utgåva"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Ekvation"/>
|
||||
<l:gentext key="equation" text="Ekvation"/>
|
||||
<l:gentext key="Example" text="Exempel"/>
|
||||
<l:gentext key="example" text="Exempel"/>
|
||||
<l:gentext key="Figure" text="Figur"/>
|
||||
<l:gentext key="figure" text="Figur"/>
|
||||
<l:gentext key="Glossary" text="Gloslista"/>
|
||||
<l:gentext key="glossary" text="Gloslista"/>
|
||||
<l:gentext key="GlossSee" text="Se"/>
|
||||
<l:gentext key="glosssee" text="Se"/>
|
||||
<l:gentext key="GlossSeeAlso" text="Se Även"/>
|
||||
<l:gentext key="glossseealso" text="Se Även"/>
|
||||
<l:gentext key="IMPORTANT" text="VIKTIGT"/>
|
||||
<l:gentext key="important" text="Viktigt"/>
|
||||
<l:gentext key="Important" text="Viktigt"/>
|
||||
<l:gentext key="Index" text="Index"/>
|
||||
<l:gentext key="index" text="Index"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Legal Notice"/>
|
||||
<l:gentext key="legalnotice" text="Legal Notice"/>
|
||||
<l:gentext key="MsgAud" text="Målgrupp"/>
|
||||
<l:gentext key="msgaud" text="Målgrupp"/>
|
||||
<l:gentext key="MsgLevel" text="Nivå"/>
|
||||
<l:gentext key="msglevel" text="Nivå"/>
|
||||
<l:gentext key="MsgOrig" text="Ursprung"/>
|
||||
<l:gentext key="msgorig" text="Ursprung"/>
|
||||
<l:gentext key="NOTE" text="NOTERA"/>
|
||||
<l:gentext key="Note" text="Notera"/>
|
||||
<l:gentext key="note" text="Notera"/>
|
||||
<l:gentext key="Part" text="Del"/>
|
||||
<l:gentext key="part" text="Del"/>
|
||||
<l:gentext key="Preface" text="Företal"/>
|
||||
<l:gentext key="preface" text="Företal"/>
|
||||
<l:gentext key="Procedure" text="Procedur"/>
|
||||
<l:gentext key="procedure" text="Procedur"/>
|
||||
<l:gentext key="ProductionSet" text="Production"/>
|
||||
<l:gentext key="PubDate" text="Publication Date" lang="en"/>
|
||||
<l:gentext key="pubdate" text="Publication date" lang="en"/>
|
||||
<l:gentext key="Published" text="Publicerad"/>
|
||||
<l:gentext key="published" text="Publicerad"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="Fråga och A"/>
|
||||
<l:gentext key="qandadiv" text="Fråga och A"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Fråga:"/>
|
||||
<l:gentext key="question" text="Fråga:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Referens"/>
|
||||
<l:gentext key="reference" text="Referens"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Namn"/>
|
||||
<l:gentext key="refname" text="Namn"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Synopsis"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Synopsis"/>
|
||||
<l:gentext key="RevHistory" text="Revisionshistorik"/>
|
||||
<l:gentext key="revhistory" text="Revisionshistorik"/>
|
||||
<l:gentext key="revision" text="Revision"/>
|
||||
<l:gentext key="Revision" text="Revision"/>
|
||||
<l:gentext key="sect1" text="Section"/>
|
||||
<l:gentext key="sect2" text="Section"/>
|
||||
<l:gentext key="sect3" text="Section"/>
|
||||
<l:gentext key="sect4" text="Section"/>
|
||||
<l:gentext key="sect5" text="Section"/>
|
||||
<l:gentext key="section" text="avsnitt"/>
|
||||
<l:gentext key="Section" text="Avsnitt"/>
|
||||
<l:gentext key="see" text="se"/>
|
||||
<l:gentext key="See" text="Se"/>
|
||||
<l:gentext key="seealso" text="se även"/>
|
||||
<l:gentext key="Seealso" text="Se även"/>
|
||||
<l:gentext key="SeeAlso" text="Se Även"/>
|
||||
<l:gentext key="set" text="Set"/>
|
||||
<l:gentext key="Set" text="Set"/>
|
||||
<l:gentext key="setindex" text="Set Index"/>
|
||||
<l:gentext key="SetIndex" text="Set Index"/>
|
||||
<l:gentext key="Sidebar" text="Sidebar"/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="steg"/>
|
||||
<l:gentext key="Step" text="Steg"/>
|
||||
<l:gentext key="table" text="Tabell"/>
|
||||
<l:gentext key="Table" text="Tabell"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="Tips"/>
|
||||
<l:gentext key="TIP" text="TIPS"/>
|
||||
<l:gentext key="Tip" text="Tips"/>
|
||||
<l:gentext key="Warning" text="Varning"/>
|
||||
<l:gentext key="warning" text="Varning"/>
|
||||
<l:gentext key="WARNING" text="VARNING"/>
|
||||
<l:gentext key="and" text="och"/>
|
||||
<l:gentext key="by" text="av"/>
|
||||
<l:gentext key="Edited" text="Redigerad"/>
|
||||
<l:gentext key="edited" text="Redigerad"/>
|
||||
<l:gentext key="Editedby" text="Redigerad av"/>
|
||||
<l:gentext key="editedby" text="Redigerad av"/>
|
||||
<l:gentext key="in" text="i"/>
|
||||
<l:gentext key="lastlistcomma" text=""/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="icke-existerande element"/>
|
||||
<l:gentext key="notes" text="Noter"/>
|
||||
<l:gentext key="Notes" text="Noter"/>
|
||||
<l:gentext key="Pgs" text="Sid."/>
|
||||
<l:gentext key="pgs" text="Sid."/>
|
||||
<l:gentext key="Revisedby" text="Reviderad av: "/>
|
||||
<l:gentext key="revisedby" text="Reviderad av: "/>
|
||||
<l:gentext key="TableNotes" text="Noter"/>
|
||||
<l:gentext key="tablenotes" text="Noter"/>
|
||||
<l:gentext key="TableofContents" text="Innehållsförteckning"/>
|
||||
<l:gentext key="tableofcontents" text="Innehållsförteckning"/>
|
||||
<l:gentext key="unexpectedelementname" text="Oväntat elementnamn"/>
|
||||
<l:gentext key="unsupported" text="unsupported"/>
|
||||
<l:gentext key="xrefto" text="korsreferens till"/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Ekvationsförteckning"/>
|
||||
<l:gentext key="ListofEquations" text="Ekvationsförteckning"/>
|
||||
<l:gentext key="ListofExamples" text="Exempelförteckning"/>
|
||||
<l:gentext key="listofexamples" text="Exempelförteckning"/>
|
||||
<l:gentext key="ListofFigures" text="Figurförteckning"/>
|
||||
<l:gentext key="listoffigures" text="Figurförteckning"/>
|
||||
<l:gentext key="ListofProcedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listofprocedures" text="List of Procedures" lang="en"/>
|
||||
<l:gentext key="listoftables" text="Tabellförteckning"/>
|
||||
<l:gentext key="ListofTables" text="Tabellförteckning"/>
|
||||
<l:gentext key="ListofUnknown" text="Förteckning av okända"/>
|
||||
<l:gentext key="listofunknown" text="Förteckning av okända"/>
|
||||
<l:gentext key="nav-home" text="Hem"/>
|
||||
<l:gentext key="nav-next" text="Nästa"/>
|
||||
<l:gentext key="nav-next-sibling" text="Snabbt framåt"/>
|
||||
<l:gentext key="nav-prev" text="Föregående"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Snabbt bakåt"/>
|
||||
<l:gentext key="nav-up" text="Upp"/>
|
||||
<l:gentext key="nav-toc" text="ToC" lang="en"/>
|
||||
<l:gentext key="Draft" text="Utkast"/>
|
||||
<l:gentext key="above" text="ovan"/>
|
||||
<l:gentext key="below" text="nedan"/>
|
||||
<l:gentext key="sectioncalled" text="the section called"/>
|
||||
<l:gentext key="index symbols" text="Symboler"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyzåäö"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="”"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="’"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘" lang="en"/>
|
||||
<l:dingbat key="singleendquote" text="’" lang="en"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-" lang="en"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2" lang="en"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2" lang="en"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Appendix %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Ekvation %n. %t"/>
|
||||
<l:template name="example" text="Exempel %n. %t"/>
|
||||
<l:template name="figure" text="Figur %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t" lang="en"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Del %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Procedur %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t" lang="en"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tabell %n. %t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="" lang="en"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Appendix %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t" lang="en"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="Kapitel %n. %t"/>
|
||||
<l:template name="part" text="Del %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%n. %t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s" lang="en"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="A: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Fråga: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Fråga: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(page %p)" lang="en"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(p. %p)" lang="en"/>
|
||||
<l:template name="Page" text="Page %p" lang="en"/>
|
||||
<l:template name="bridgehead" text="”%t”"/>
|
||||
<l:template name="refsection" text="”%t”"/>
|
||||
<l:template name="refsect1" text="”%t”"/>
|
||||
<l:template name="refsect2" text="”%t”"/>
|
||||
<l:template name="refsect3" text="”%t”"/>
|
||||
<l:template name="sect1" text="”%t”"/>
|
||||
<l:template name="sect2" text="”%t”"/>
|
||||
<l:template name="sect3" text="”%t”"/>
|
||||
<l:template name="sect4" text="”%t”"/>
|
||||
<l:template name="sect5" text="”%t”"/>
|
||||
<l:template name="section" text="”%t”"/>
|
||||
<l:template name="simplesect" text="”%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="A: %n"/>
|
||||
<l:template name="appendix" text="Appendix %n"/>
|
||||
<l:template name="bridgehead" text="Avsnitt %n"/>
|
||||
<l:template name="chapter" text="Kapitel %n"/>
|
||||
<l:template name="equation" text="Ekvation %n"/>
|
||||
<l:template name="example" text="Exempel %n"/>
|
||||
<l:template name="figure" text="Figur %n"/>
|
||||
<l:template name="part" text="Del %n"/>
|
||||
<l:template name="procedure" text="Procedur %n"/>
|
||||
<l:template name="productionset" text="Production %n"/>
|
||||
<l:template name="qandadiv" text="Fråga och A %n"/>
|
||||
<l:template name="qandaentry" text="Fråga: %n"/>
|
||||
<l:template name="question" text="Fråga: %n"/>
|
||||
<l:template name="sect1" text="Avsnitt %n"/>
|
||||
<l:template name="sect2" text="Avsnitt %n"/>
|
||||
<l:template name="sect3" text="Avsnitt %n"/>
|
||||
<l:template name="sect4" text="Avsnitt %n"/>
|
||||
<l:template name="sect5" text="Avsnitt %n"/>
|
||||
<l:template name="section" text="Avsnitt %n"/>
|
||||
<l:template name="table" text="Tabell %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Appendix %n, %t"/>
|
||||
<l:template name="bridgehead" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="chapter" text="Kapitel %n, %t"/>
|
||||
<l:template name="equation" text="Ekvation %n, ”%t”"/>
|
||||
<l:template name="example" text="Exempel %n, ”%t”"/>
|
||||
<l:template name="figure" text="Figur %n, ”%t”"/>
|
||||
<l:template name="part" text="Del %n, ”%t”"/>
|
||||
<l:template name="procedure" text="Procedur %n, ”%t”"/>
|
||||
<l:template name="productionset" text="Production %n, ”%t”"/>
|
||||
<l:template name="qandadiv" text="Fråga och A %n, ”%t”"/>
|
||||
<l:template name="refsect1" text="the section called ”%t”"/>
|
||||
<l:template name="refsect2" text="the section called ”%t”"/>
|
||||
<l:template name="refsect3" text="the section called ”%t”"/>
|
||||
<l:template name="refsection" text="the section called ”%t”"/>
|
||||
<l:template name="sect1" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="sect2" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="sect3" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="sect4" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="sect5" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="section" text="Avsnitt %n, ”%t”"/>
|
||||
<l:template name="simplesect" text="the section called ”%t”"/>
|
||||
<l:template name="table" text="Tabell %n, ”%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" och "/>
|
||||
<l:template name="seplast" text=" och "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Se %t"/>
|
||||
<l:template name="seealso" text="Se Även %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Målgrupp: "/>
|
||||
<l:template name="MsgLevel" text="Nivå: "/>
|
||||
<l:template name="MsgOrig" text="Ursprung: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d-m-Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Januari"/>
|
||||
<l:template name="February" text="Februari"/>
|
||||
<l:template name="March" text="Mars"/>
|
||||
<l:template name="April" text="April"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="June" text="Juni"/>
|
||||
<l:template name="July" text="Juli"/>
|
||||
<l:template name="August" text="Augusti"/>
|
||||
<l:template name="September" text="September"/>
|
||||
<l:template name="October" text="Oktober"/>
|
||||
<l:template name="November" text="November"/>
|
||||
<l:template name="December" text="December"/>
|
||||
<l:template name="Monday" text="Måndag"/>
|
||||
<l:template name="Tuesday" text="Tisdag"/>
|
||||
<l:template name="Wednesday" text="Onsdag"/>
|
||||
<l:template name="Thursday" text="Torsdag"/>
|
||||
<l:template name="Friday" text="Fredag"/>
|
||||
<l:template name="Saturday" text="Lördag"/>
|
||||
<l:template name="Sunday" text="Söndag"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Jan"/>
|
||||
<l:template name="Feb" text="Feb"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Apr"/>
|
||||
<l:template name="May" text="Maj"/>
|
||||
<l:template name="Jun" text="Jun"/>
|
||||
<l:template name="Jul" text="Jul"/>
|
||||
<l:template name="Aug" text="Aug"/>
|
||||
<l:template name="Sep" text="Sep"/>
|
||||
<l:template name="Oct" text="Okt"/>
|
||||
<l:template name="Nov" text="Nov"/>
|
||||
<l:template name="Dec" text="Dec"/>
|
||||
<l:template name="Mon" text="Mon"/>
|
||||
<l:template name="Tue" text="Tis"/>
|
||||
<l:template name="Wed" text="Ons"/>
|
||||
<l:template name="Thu" text="Tor"/>
|
||||
<l:template name="Fri" text="Fre"/>
|
||||
<l:template name="Sat" text="Lör"/>
|
||||
<l:template name="Sun" text="Sön"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x041d Swedish"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
<l:l i="27">Å</l:l>
|
||||
<l:l i="27">å</l:l>
|
||||
<l:l i="28">Ä</l:l>
|
||||
<l:l i="28">ä</l:l>
|
||||
<l:l i="29">Ö</l:l>
|
||||
<l:l i="29">ö</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/ta.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/ta.xml
Normal file
File diff suppressed because it is too large
Load Diff
514
doc/reference/lib/docbook-xsl-snapshot/common/table.xsl
Normal file
514
doc/reference/lib/docbook-xsl-snapshot/common/table.xsl
Normal file
@@ -0,0 +1,514 @@
|
||||
<?xml version="1.0"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version="1.0">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: table.xsl 7056 2007-07-17 13:56:09Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="blank.spans">
|
||||
<xsl:param name="cols" select="1"/>
|
||||
<xsl:if test="$cols > 0">
|
||||
<xsl:text>0:</xsl:text>
|
||||
<xsl:call-template name="blank.spans">
|
||||
<xsl:with-param name="cols" select="$cols - 1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.following.spans">
|
||||
<xsl:param name="colspan" select="1"/>
|
||||
<xsl:param name="spans" select="''"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$colspan > 0">
|
||||
<xsl:call-template name="calculate.following.spans">
|
||||
<xsl:with-param name="colspan" select="$colspan - 1"/>
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$spans"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="finaltd">
|
||||
<xsl:param name="spans"/>
|
||||
<xsl:param name="col" select="0"/>
|
||||
|
||||
<xsl:if test="$spans != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with($spans,'0:')">
|
||||
<xsl:call-template name="empty.table.cell">
|
||||
<xsl:with-param name="colnum" select="$col"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:call-template name="finaltd">
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
<xsl:with-param name="col" select="$col+1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="sfinaltd">
|
||||
<xsl:param name="spans"/>
|
||||
|
||||
<xsl:if test="$spans != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="starts-with($spans,'0:')">0:</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="substring-before($spans,':')-1"/>
|
||||
<xsl:text>:</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:call-template name="sfinaltd">
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="entry.colnum">
|
||||
<xsl:param name="entry" select="."/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$entry/@spanname">
|
||||
<xsl:variable name="spanname" select="$entry/@spanname"/>
|
||||
<xsl:variable name="spanspec"
|
||||
select="($entry/ancestor::tgroup/spanspec[@spanname=$spanname]
|
||||
|$entry/ancestor::entrytbl/spanspec[@spanname=$spanname])[last()]"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="($entry/ancestor::tgroup/colspec[@colname=$spanspec/@namest]
|
||||
|$entry/ancestor::entrytbl/colspec[@colname=$spanspec/@namest])[last()]"/>
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec" select="$colspec"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$entry/@colname">
|
||||
<xsl:variable name="colname" select="$entry/@colname"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="($entry/ancestor::tgroup/colspec[@colname=$colname]
|
||||
|$entry/ancestor::entrytbl/colspec[@colname=$colname])[last()]"/>
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec" select="$colspec"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$entry/@namest">
|
||||
<xsl:variable name="namest" select="$entry/@namest"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="($entry/ancestor::tgroup/colspec[@colname=$namest]
|
||||
|$entry/ancestor::entrytbl/colspec[@colname=$namest])[last()]"/>
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec" select="$colspec"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<!-- no idea, return 0 -->
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<doc:template name="entry.colnum" xmlns="">
|
||||
<refpurpose>Determine the column number in which a given entry occurs</refpurpose>
|
||||
<refdescription id="entry.colnum-desc">
|
||||
<para>If an <tag>entry</tag> has a
|
||||
<tag class="attribute">colname</tag> or
|
||||
<tag class="attribute">namest</tag> attribute, this template
|
||||
will determine the number of the column in which the entry should occur.
|
||||
For other <tag>entry</tag>s, nothing is returned.</para>
|
||||
</refdescription>
|
||||
<refparameter id="entry.colnum-params">
|
||||
<variablelist>
|
||||
<varlistentry><term>entry</term>
|
||||
<listitem>
|
||||
<para>The <tag>entry</tag>-element which is to be tested.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
|
||||
<refreturn id="entry.colnum-returns">
|
||||
<para>This template returns the column number if it can be determined,
|
||||
or 0 (the empty string)</para>
|
||||
</refreturn>
|
||||
</doc:template>
|
||||
|
||||
<xsl:template name="colspec.colnum">
|
||||
<xsl:param name="colspec" select="."/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$colspec/@colnum">
|
||||
<xsl:value-of select="$colspec/@colnum"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$colspec/preceding-sibling::colspec">
|
||||
<xsl:variable name="prec.colspec.colnum">
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec"
|
||||
select="$colspec/preceding-sibling::colspec[1]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
<xsl:value-of select="$prec.colspec.colnum + 1"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.colspan">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:variable name="spanname" select="$entry/@spanname"/>
|
||||
<xsl:variable name="spanspec"
|
||||
select="($entry/ancestor::tgroup/spanspec[@spanname=$spanname]
|
||||
|$entry/ancestor::entrytbl/spanspec[@spanname=$spanname])[last()]"/>
|
||||
|
||||
<xsl:variable name="namest">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@spanname">
|
||||
<xsl:value-of select="$spanspec/@namest"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$entry/@namest"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nameend">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@spanname">
|
||||
<xsl:value-of select="$spanspec/@nameend"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$entry/@nameend"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="scol">
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec"
|
||||
select="($entry/ancestor::tgroup/colspec[@colname=$namest]
|
||||
|$entry/ancestor::entrytbl/colspec[@colname=$namest])[last()]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="ecol">
|
||||
<xsl:call-template name="colspec.colnum">
|
||||
<xsl:with-param name="colspec"
|
||||
select="($entry/ancestor::tgroup/colspec[@colname=$nameend]
|
||||
|$entry/ancestor::entrytbl/colspec[@colname=$nameend])[last()]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$namest != '' and $nameend != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="number($ecol) >= number($scol)">
|
||||
<xsl:value-of select="number($ecol) - number($scol) + 1"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="number($scol) - number($ecol) + 1"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>1</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.rowsep">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
|
||||
<xsl:call-template name="inherited.table.attribute">
|
||||
<xsl:with-param name="entry" select="$entry"/>
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="'rowsep'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="calculate.colsep">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
|
||||
<xsl:call-template name="inherited.table.attribute">
|
||||
<xsl:with-param name="entry" select="$entry"/>
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="'colsep'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="inherited.table.attribute">
|
||||
<xsl:param name="entry" select="."/>
|
||||
<xsl:param name="row" select="$entry/ancestor-or-self::row[1]"/>
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
<xsl:param name="attribute" select="'colsep'"/>
|
||||
|
||||
<xsl:variable name="tgroup" select="$row/parent::*/parent::tgroup[1]"/>
|
||||
<xsl:variable name="tbody" select="$row/parent::*[1]"/>
|
||||
|
||||
<xsl:variable name="table" select="($tgroup/ancestor::table
|
||||
|$tgroup/ancestor::informaltable
|
||||
|$entry/ancestor::entrytbl)[last()]"/>
|
||||
|
||||
<xsl:variable name="entry.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$entry"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="row.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$row"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="span.value">
|
||||
<xsl:if test="$entry/@spanname">
|
||||
<xsl:variable name="spanname" select="$entry/@spanname"/>
|
||||
<xsl:variable name="spanspec"
|
||||
select="$tgroup/spanspec[@spanname=$spanname]"/>
|
||||
<xsl:variable name="span.colspec"
|
||||
select="$tgroup/colspec[@colname=$spanspec/@namest]"/>
|
||||
|
||||
<xsl:variable name="spanspec.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$spanspec"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="scolspec.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$span.colspec"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$spanspec.value != ''">
|
||||
<xsl:value-of select="$spanspec.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$scolspec.value != ''">
|
||||
<xsl:value-of select="$scolspec.value"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="namest.value">
|
||||
<xsl:if test="$entry/@namest">
|
||||
<xsl:variable name="namest" select="$entry/@namest"/>
|
||||
<xsl:variable name="colspec"
|
||||
select="$tgroup/colspec[@colname=$namest]"/>
|
||||
|
||||
<xsl:variable name="inner.namest.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$colspec"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$inner.namest.value">
|
||||
<xsl:value-of select="$inner.namest.value"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="tgroup.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$tgroup"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="tbody.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$tbody"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="table.value">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$table"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="default.value">
|
||||
<!-- This section used to say that rowsep and colsep have defaults based -->
|
||||
<!-- on the frame setting. Further reflection and closer examination of the -->
|
||||
<!-- CALS spec reveals I was mistaken. The default is "1" for rowsep and colsep. -->
|
||||
<!-- For everything else, the default is the tgroup value -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$tgroup.value != ''">
|
||||
<xsl:value-of select="$tgroup.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$attribute = 'rowsep'">1</xsl:when>
|
||||
<xsl:when test="$attribute = 'colsep'">1</xsl:when>
|
||||
<xsl:otherwise><!-- empty --></xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="calc.colvalue">
|
||||
<xsl:if test="$colnum > 0">
|
||||
<xsl:call-template name="colnum.colspec">
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$entry.value != ''">
|
||||
<xsl:value-of select="$entry.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$row.value != ''">
|
||||
<xsl:value-of select="$row.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$span.value != ''">
|
||||
<xsl:value-of select="$span.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$namest.value != ''">
|
||||
<xsl:value-of select="$namest.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$calc.colvalue != ''">
|
||||
<xsl:value-of select="$calc.colvalue"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$tbody.value != ''">
|
||||
<xsl:value-of select="$tbody.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$tgroup.value != ''">
|
||||
<xsl:value-of select="$tgroup.value"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$table.value != ''">
|
||||
<xsl:value-of select="$table.value"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$default.value"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="colnum.colspec">
|
||||
<xsl:param name="colnum" select="0"/>
|
||||
<xsl:param name="attribute" select="'colname'"/>
|
||||
<xsl:param name="colspec.ancestor"
|
||||
select="(ancestor::tgroup|ancestor::entrytbl)
|
||||
[position() = last()]"/>
|
||||
<xsl:param name="colspecs" select="$colspec.ancestor/colspec"/>
|
||||
<xsl:param name="count" select="1"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="not($colspecs) or $count > $colnum">
|
||||
<!-- nop -->
|
||||
</xsl:when>
|
||||
<xsl:when test="$colspecs[1]/@colnum">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$colspecs[1]/@colnum = $colnum">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$colspecs[1]"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="colnum.colspec">
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
<xsl:with-param name="colspecs"
|
||||
select="$colspecs[position()>1]"/>
|
||||
<xsl:with-param name="count"
|
||||
select="$colspecs[1]/@colnum+1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$count = $colnum">
|
||||
<xsl:call-template name="get-attribute">
|
||||
<xsl:with-param name="element" select="$colspecs[1]"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="colnum.colspec">
|
||||
<xsl:with-param name="colnum" select="$colnum"/>
|
||||
<xsl:with-param name="attribute" select="$attribute"/>
|
||||
<xsl:with-param name="colspecs"
|
||||
select="$colspecs[position()>1]"/>
|
||||
<xsl:with-param name="count" select="$count+1"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="get-attribute">
|
||||
<xsl:param name="element" select="."/>
|
||||
<xsl:param name="attribute" select="''"/>
|
||||
|
||||
<xsl:for-each select="$element/@*">
|
||||
<xsl:if test="local-name(.) = $attribute">
|
||||
<xsl:value-of select="."/>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="consume-row">
|
||||
<xsl:param name="spans"/>
|
||||
|
||||
<xsl:if test="contains($spans,':')">
|
||||
<xsl:value-of select="substring-before($spans,':') - 1"/>
|
||||
<xsl:text>:</xsl:text>
|
||||
<xsl:call-template name="consume-row">
|
||||
<xsl:with-param name="spans" select="substring-after($spans,':')"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Returns the table style for the context element -->
|
||||
<xsl:template name="tabstyle">
|
||||
<xsl:param name="node" select="."/>
|
||||
|
||||
<xsl:variable name="tgroup" select="$node/tgroup[1] |
|
||||
$node/ancestor-or-self::tgroup[1]"/>
|
||||
|
||||
<xsl:variable name="table"
|
||||
select="($node/ancestor-or-self::table |
|
||||
$node/ancestor-or-self::informaltable)[1]"/>
|
||||
|
||||
<xsl:variable name="tabstyle">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$table/@tabstyle != ''">
|
||||
<xsl:value-of select="normalize-space($table/@tabstyle)"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$tgroup/@tgroupstyle != ''">
|
||||
<xsl:value-of select="normalize-space($tgroup/@tgroupstyle)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:value-of select="$tabstyle"/>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
@@ -0,0 +1,49 @@
|
||||
<!-- targetdatabase.dtd -->
|
||||
<!-- A DTD for managing cross reference target information -->
|
||||
|
||||
<!ELEMENT targetset (targetsetinfo?, sitemap*, document*) >
|
||||
|
||||
<!ELEMENT targetsetinfo ANY >
|
||||
|
||||
<!ELEMENT sitemap (dir) >
|
||||
|
||||
<!ELEMENT dir ((dir|document)*) >
|
||||
<!ATTLIST dir
|
||||
name CDATA #REQUIRED
|
||||
>
|
||||
|
||||
<!ELEMENT document (div*) >
|
||||
<!ATTLIST document
|
||||
targetdoc CDATA #REQUIRED
|
||||
uri CDATA #IMPLIED
|
||||
baseuri CDATA #IMPLIED
|
||||
href CDATA #IMPLIED
|
||||
dir CDATA #IMPLIED
|
||||
>
|
||||
|
||||
<!ELEMENT div (ttl?, objttl?, xreftext?, (div|obj)*)>
|
||||
<!ATTLIST div
|
||||
targetptr CDATA #IMPLIED
|
||||
element CDATA #IMPLIED
|
||||
name CDATA #IMPLIED
|
||||
number CDATA #IMPLIED
|
||||
href CDATA #IMPLIED
|
||||
lang CDATA #IMPLIED
|
||||
page CDATA #IMPLIED
|
||||
>
|
||||
|
||||
|
||||
<!ELEMENT ttl ANY >
|
||||
<!ELEMENT objttl ANY >
|
||||
<!ELEMENT xreftext ANY >
|
||||
|
||||
<!ELEMENT obj (ttl?, objttl?, xreftext?)>
|
||||
<!ATTLIST obj
|
||||
targetptr CDATA #IMPLIED
|
||||
element CDATA #IMPLIED
|
||||
name CDATA #IMPLIED
|
||||
number CDATA #IMPLIED
|
||||
href CDATA #IMPLIED
|
||||
lang CDATA #IMPLIED
|
||||
page CDATA #IMPLIED
|
||||
>
|
||||
272
doc/reference/lib/docbook-xsl-snapshot/common/targets.xsl
Normal file
272
doc/reference/lib/docbook-xsl-snapshot/common/targets.xsl
Normal file
@@ -0,0 +1,272 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: targets.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- cross reference target collection -->
|
||||
|
||||
<doc:mode mode="collect.targets" xmlns="">
|
||||
<refpurpose>Collects information for potential cross reference targets</refpurpose>
|
||||
<refdescription id="collect.targets-desc">
|
||||
<para>Processing the root element in the
|
||||
<literal role="mode">collect.targets</literal> mode produces
|
||||
a set of target database elements that can be used by
|
||||
the olink mechanism to resolve external cross references.
|
||||
The collection process is controlled by the <literal>
|
||||
collect.xref.targets</literal> parameter, which can be
|
||||
<literal>yes</literal> to collect targets and process
|
||||
the document for output, <literal>only</literal> to
|
||||
only collect the targets, and <literal>no</literal>
|
||||
(default) to not collect the targets and only process the document.
|
||||
</para>
|
||||
<para>
|
||||
A <literal>targets.filename</literal> parameter must be
|
||||
specified to receive the output if
|
||||
<literal>collect.xref.targets</literal> is
|
||||
set to <literal>yes</literal> so as to
|
||||
redirect the target data to a file separate from the
|
||||
document output.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="collect.targets">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$collect.xref.targets = 'yes' and $targets.filename = ''">
|
||||
<xsl:message>
|
||||
Must specify a $targets.filename parameter when
|
||||
$collect.xref.targets is set to 'yes'.
|
||||
The xref targets were not collected.
|
||||
</xsl:message>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$targets.filename">
|
||||
<xsl:call-template name="write.chunk">
|
||||
<xsl:with-param name="filename" select="$targets.filename"/>
|
||||
<xsl:with-param name="method" select="'xml'"/>
|
||||
<xsl:with-param name="encoding" select="'utf-8'"/>
|
||||
<xsl:with-param name="omit-xml-declaration" select="'yes'"/>
|
||||
<xsl:with-param name="doctype-public" select="''"/>
|
||||
<xsl:with-param name="doctype-system" select="''"/>
|
||||
<xsl:with-param name="indent" select="'no'"/>
|
||||
<xsl:with-param name="quiet" select="0"/>
|
||||
<xsl:with-param name="content">
|
||||
<xsl:apply-templates select="." mode="olink.mode"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<!-- Else write to standard output -->
|
||||
<xsl:apply-templates select="." mode="olink.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="olink.href.target">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<xsl:value-of select="$olink.base.uri"/>
|
||||
<xsl:call-template name="href.target">
|
||||
<xsl:with-param name="object" select="$nd"/>
|
||||
<xsl:with-param name="context" select="NOTANODE"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Templates for extracting cross reference information
|
||||
from a document for use in an xref database.
|
||||
-->
|
||||
|
||||
<xsl:template name="attrs">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<xsl:attribute name="element">
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:attribute name="href">
|
||||
<xsl:call-template name="olink.href.target">
|
||||
<xsl:with-param name="nd" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:variable name="num">
|
||||
<xsl:apply-templates select="$nd" mode="label.markup">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$num">
|
||||
<xsl:attribute name="number">
|
||||
<xsl:value-of select="$num"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$nd/@id">
|
||||
<xsl:attribute name="targetptr">
|
||||
<xsl:value-of select="$nd/@id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:when>
|
||||
<xsl:when test="$nd/@xml:id">
|
||||
<xsl:attribute name="targetptr">
|
||||
<xsl:value-of select="$nd/@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
|
||||
<xsl:if test="$nd/@lang">
|
||||
<xsl:attribute name="lang">
|
||||
<xsl:value-of select="$nd/@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="div">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<div>
|
||||
<xsl:call-template name="attrs">
|
||||
<xsl:with-param name="nd" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
<ttl>
|
||||
<xsl:apply-templates select="$nd" mode="title.markup">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</ttl>
|
||||
<xreftext>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$nd/@xreflabel">
|
||||
<xsl:call-template name="xref.xreflabel">
|
||||
<xsl:with-param name="target" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="$nd" mode="xref-to">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xreftext>
|
||||
<xsl:apply-templates mode="olink.mode"/>
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="obj">
|
||||
<xsl:param name="nd" select="."/>
|
||||
|
||||
<obj>
|
||||
<xsl:call-template name="attrs">
|
||||
<xsl:with-param name="nd" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
<ttl>
|
||||
<xsl:apply-templates select="$nd" mode="title.markup">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</ttl>
|
||||
<xreftext>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$nd/@xreflabel">
|
||||
<xsl:call-template name="xref.xreflabel">
|
||||
<xsl:with-param name="target" select="$nd"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="$nd" mode="xref-to">
|
||||
<xsl:with-param name="verbose" select="0"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xreftext>
|
||||
</obj>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="text()|processing-instruction()|comment()"
|
||||
mode="olink.mode">
|
||||
<!-- nop -->
|
||||
</xsl:template>
|
||||
|
||||
<!--
|
||||
<xsl:template match="*" mode="olink.mode">
|
||||
</xsl:template>
|
||||
-->
|
||||
|
||||
<xsl:template match="set" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part|reference" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bibliography|bibliodiv" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="biblioentry|bibliomixed" mode="olink.mode">
|
||||
<xsl:call-template name="obj"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section|sect1|sect2|sect3|sect4|sect5" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsection|refsect1|refsect2|refsect3" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|example|table" mode="olink.mode">
|
||||
<xsl:call-template name="obj"/>
|
||||
<xsl:apply-templates mode="olink.mode"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="equation[title or info/title]" mode="olink.mode">
|
||||
<xsl:call-template name="obj"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaset|qandaentry" mode="olink.mode">
|
||||
<xsl:call-template name="div"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="olink.mode">
|
||||
<xsl:if test="@id or @xml:id">
|
||||
<xsl:call-template name="obj"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="olink.mode"/>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/th.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/th.xml
Normal file
File diff suppressed because it is too large
Load Diff
752
doc/reference/lib/docbook-xsl-snapshot/common/titles.xsl
Normal file
752
doc/reference/lib/docbook-xsl-snapshot/common/titles.xsl
Normal file
@@ -0,0 +1,752 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
exclude-result-prefixes="doc"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: titles.xsl 7580 2007-11-30 17:22:54Z mzjn $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- title markup -->
|
||||
|
||||
<doc:mode mode="title.markup" xmlns="">
|
||||
<refpurpose>Provides access to element titles</refpurpose>
|
||||
<refdescription id="title.markup-desc">
|
||||
<para>Processing an element in the
|
||||
<literal role="mode">title.markup</literal> mode produces the
|
||||
title of the element. This does not include the label.
|
||||
</para>
|
||||
</refdescription>
|
||||
</doc:mode>
|
||||
|
||||
<xsl:template match="*" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
<xsl:choose>
|
||||
<!-- * FIXME: this should handle other *info elements as well -->
|
||||
<!-- * but this is good enough for now. -->
|
||||
<xsl:when test="title|info/title">
|
||||
<xsl:apply-templates select="title[1]|info/title[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:when test="local-name(.) = 'partintro'">
|
||||
<!-- partintro's don't have titles, use the parent (part or reference)
|
||||
title instead. -->
|
||||
<xsl:apply-templates select="parent::*" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:if test="$verbose != 0">
|
||||
<xsl:message>
|
||||
<xsl:text>Request for title of element with no title: </xsl:text>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="@id">
|
||||
<xsl:text> (id="</xsl:text>
|
||||
<xsl:value-of select="@id"/>
|
||||
<xsl:text>")</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:when test="@xml:id">
|
||||
<xsl:text> (xml:id="</xsl:text>
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
<xsl:text>")</xsl:text>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
<xsl:text>???TITLE???</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="title" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- only occurs in HTML Tables! -->
|
||||
<xsl:template match="caption" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(setinfo/title|info/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(bookinfo/title|info/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(partinfo/title|info/title|docinfo/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<!--
|
||||
<xsl:message>
|
||||
<xsl:value-of select="local-name(.)"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="$allow-anchors"/>
|
||||
</xsl:message>
|
||||
-->
|
||||
|
||||
<xsl:variable name="title" select="(docinfo/title
|
||||
|info/title
|
||||
|prefaceinfo/title
|
||||
|chapterinfo/title
|
||||
|appendixinfo/title
|
||||
|title)[1]"/>
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="dedication" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="(title|info/title)[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Dedication'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="colophon" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="(title|info/title)[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Colophon'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(artheader/title
|
||||
|articleinfo/title
|
||||
|info/title
|
||||
|title)[1]"/>
|
||||
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(referenceinfo/title|docinfo/title|info/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="refmeta" select=".//refmeta"/>
|
||||
<xsl:variable name="refentrytitle" select="$refmeta//refentrytitle"/>
|
||||
<xsl:variable name="refnamediv" select=".//refnamediv"/>
|
||||
<xsl:variable name="refname" select="$refnamediv//refname"/>
|
||||
<xsl:variable name="refdesc" select="$refnamediv//refdescriptor"/>
|
||||
|
||||
<xsl:variable name="title">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$refentrytitle">
|
||||
<xsl:apply-templates select="$refentrytitle[1]" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$refdesc">
|
||||
<xsl:apply-templates select="$refdesc" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$refname">
|
||||
<xsl:apply-templates select="$refname[1]" mode="title.markup"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>REFENTRY WITHOUT TITLE???</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:copy-of select="$title"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentrytitle|refname|refdescriptor" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section
|
||||
|sect1|sect2|sect3|sect4|sect5
|
||||
|refsect1|refsect2|refsect3|refsection
|
||||
|simplesect"
|
||||
mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(info/title
|
||||
|sectioninfo/title
|
||||
|sect1info/title
|
||||
|sect2info/title
|
||||
|sect3info/title
|
||||
|sect4info/title
|
||||
|sect5info/title
|
||||
|refsect1info/title
|
||||
|refsect2info/title
|
||||
|refsect3info/title
|
||||
|refsectioninfo/title
|
||||
|title)[1]"/>
|
||||
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bridgehead" mode="title.markup">
|
||||
<xsl:apply-templates mode="title.markup"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refsynopsisdiv" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'RefSynopsisDiv'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bibliography" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(bibliographyinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Bibliography'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossary" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(glossaryinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext.element.name">
|
||||
<xsl:with-param name="element.name" select="local-name(.)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossdiv" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:message>ERROR: glossdiv missing its required title</xsl:message>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossentry" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="glossterm" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="glossterm" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="index" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(indexinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Index'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="setindex" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(setindexinfo/title|info/title|title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'SetIndex'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|example|equation" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="title|info/title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="table" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(title|caption)[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="procedure" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="task" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sidebar" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:apply-templates select="(info/title|sidebarinfo/title|title)[1]"
|
||||
mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="abstract" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title|info/title">
|
||||
<xsl:apply-templates select="(title|info/title)[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Abstract'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="caution|tip|warning|important|note" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(title|info/title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key">
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name(.)='note'">Note</xsl:when>
|
||||
<xsl:when test="local-name(.)='important'">Important</xsl:when>
|
||||
<xsl:when test="local-name(.)='caution'">Caution</xsl:when>
|
||||
<xsl:when test="local-name(.)='warning'">Warning</xsl:when>
|
||||
<xsl:when test="local-name(.)='tip'">Tip</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question" mode="title.markup">
|
||||
<!-- questions don't have titles -->
|
||||
<xsl:text>Question</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="answer" mode="title.markup">
|
||||
<!-- answers don't have titles -->
|
||||
<xsl:text>Answer</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaentry" mode="title.markup">
|
||||
<!-- qandaentrys are represented by the first question in them -->
|
||||
<xsl:text>Question</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaset" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:variable name="title" select="(info/title|
|
||||
blockinfo/title|
|
||||
title)[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$title">
|
||||
<xsl:apply-templates select="$title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'QandASet'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="legalnotice" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="title" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'LegalNotice'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="titleabbrev">
|
||||
<xsl:apply-templates select="titleabbrev[1]" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book|preface|chapter|appendix" mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="titleabbrev" select="(docinfo/titleabbrev
|
||||
|bookinfo/titleabbrev
|
||||
|info/titleabbrev
|
||||
|prefaceinfo/titleabbrev
|
||||
|chapterinfo/titleabbrev
|
||||
|appendixinfo/titleabbrev
|
||||
|titleabbrev)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titleabbrev">
|
||||
<xsl:apply-templates select="$titleabbrev" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="article" mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="titleabbrev" select="(artheader/titleabbrev
|
||||
|articleinfo/titleabbrev
|
||||
|info/titleabbrev
|
||||
|titleabbrev)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titleabbrev">
|
||||
<xsl:apply-templates select="$titleabbrev" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="section
|
||||
|sect1|sect2|sect3|sect4|sect5
|
||||
|refsect1|refsect2|refsect3
|
||||
|simplesect"
|
||||
mode="titleabbrev.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
<xsl:param name="verbose" select="1"/>
|
||||
|
||||
<xsl:variable name="titleabbrev" select="(info/titleabbrev
|
||||
|sectioninfo/titleabbrev
|
||||
|sect1info/titleabbrev
|
||||
|sect2info/titleabbrev
|
||||
|sect3info/titleabbrev
|
||||
|sect4info/titleabbrev
|
||||
|sect5info/titleabbrev
|
||||
|refsect1info/titleabbrev
|
||||
|refsect2info/titleabbrev
|
||||
|refsect3info/titleabbrev
|
||||
|titleabbrev)[1]"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titleabbrev">
|
||||
<xsl:apply-templates select="$titleabbrev" mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="." mode="title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="$allow-anchors"/>
|
||||
<xsl:with-param name="verbose" select="$verbose"/>
|
||||
</xsl:apply-templates>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="titleabbrev" mode="title.markup">
|
||||
<xsl:param name="allow-anchors" select="0"/>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$allow-anchors != 0">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
<xsl:template match="*" mode="no.anchor.mode">
|
||||
<!-- Switch to normal mode if no links -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="descendant-or-self::footnote or
|
||||
descendant-or-self::anchor or
|
||||
descendant-or-self::ulink or
|
||||
descendant-or-self::link or
|
||||
descendant-or-self::olink or
|
||||
descendant-or-self::xref or
|
||||
descendant-or-self::indexterm or
|
||||
ancestor::title">
|
||||
|
||||
<xsl:apply-templates mode="no.anchor.mode"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="."/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="footnote" mode="no.anchor.mode">
|
||||
<!-- nop, suppressed -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="anchor" mode="no.anchor.mode">
|
||||
<!-- nop, suppressed -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="ulink" mode="no.anchor.mode">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="olink" mode="no.anchor.mode">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="indexterm" mode="no.anchor.mode">
|
||||
<!-- nop, suppressed -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="xref|link" mode="no.anchor.mode">
|
||||
<xsl:variable name="targets" select="key('id',@linkend)"/>
|
||||
<xsl:variable name="target" select="$targets[1]"/>
|
||||
<xsl:variable name="refelem" select="local-name($target)"/>
|
||||
|
||||
<xsl:call-template name="check.id.unique">
|
||||
<xsl:with-param name="linkend" select="@linkend"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($target) = 0">
|
||||
<xsl:message>
|
||||
<xsl:text>XRef to nonexistent id: </xsl:text>
|
||||
<xsl:value-of select="@linkend"/>
|
||||
</xsl:message>
|
||||
<xsl:text>???</xsl:text>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="@endterm">
|
||||
<xsl:variable name="etargets" select="key('id',@endterm)"/>
|
||||
<xsl:variable name="etarget" select="$etargets[1]"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count($etarget) = 0">
|
||||
<xsl:message>
|
||||
<xsl:value-of select="count($etargets)"/>
|
||||
<xsl:text>Endterm points to nonexistent ID: </xsl:text>
|
||||
<xsl:value-of select="@endterm"/>
|
||||
</xsl:message>
|
||||
<xsl:text>???</xsl:text>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates select="$etarget" mode="endterm"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:when test="$target/@xreflabel">
|
||||
<xsl:call-template name="xref.xreflabel">
|
||||
<xsl:with-param name="target" select="$target"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
|
||||
<xsl:choose>
|
||||
<!-- Watch out for the case when there is a xref or link inside
|
||||
a title. See bugs #1811721 and #1838136. -->
|
||||
<xsl:when test="not(ancestor::*[@id = $target/@id] or ancestor::*[@xml:id = $target/@xml:id])">
|
||||
|
||||
<xsl:apply-templates select="$target" mode="xref-to-prefix"/>
|
||||
|
||||
<xsl:apply-templates select="$target" mode="xref-to">
|
||||
|
||||
<xsl:with-param name="referrer" select="."/>
|
||||
<xsl:with-param name="xrefstyle">
|
||||
<xsl:choose>
|
||||
<xsl:when test="@role and not(@xrefstyle) and $use.role.as.xrefstyle != 0">
|
||||
<xsl:value-of select="@role"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="@xrefstyle"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:apply-templates>
|
||||
|
||||
<xsl:apply-templates select="$target" mode="xref-to-suffix"/>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<xsl:apply-templates/>
|
||||
</xsl:otherwise>
|
||||
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/tl.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/tl.xml
Normal file
File diff suppressed because it is too large
Load Diff
660
doc/reference/lib/docbook-xsl-snapshot/common/tr.xml
Normal file
660
doc/reference/lib/docbook-xsl-snapshot/common/tr.xml
Normal file
@@ -0,0 +1,660 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="tr" english-language-name="Turkish">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/tr.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited tr.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="Özet"/>
|
||||
<l:gentext key="abstract" text="Özet"/>
|
||||
<l:gentext key="Answer" text="Cevap:"/>
|
||||
<l:gentext key="answer" text="Cevap:"/>
|
||||
<l:gentext key="Appendix" text="Ek"/>
|
||||
<l:gentext key="appendix" text="Ek"/>
|
||||
<l:gentext key="Article" text="Makale"/>
|
||||
<l:gentext key="article" text="Makale"/>
|
||||
<l:gentext key="Author" text="Yazar"/>
|
||||
<l:gentext key="Bibliography" text="Kaynakça"/>
|
||||
<l:gentext key="bibliography" text="Kaynakça"/>
|
||||
<l:gentext key="Book" text="Kitap"/>
|
||||
<l:gentext key="book" text="Kitap"/>
|
||||
<l:gentext key="CAUTION" text="DİKKAT"/>
|
||||
<l:gentext key="Caution" text="Dikkat"/>
|
||||
<l:gentext key="caution" text="Dikkat"/>
|
||||
<l:gentext key="Chapter" text="Bölüm"/>
|
||||
<l:gentext key="chapter" text="Bölüm"/>
|
||||
<l:gentext key="Colophon" text="Kitap hakkında"/>
|
||||
<l:gentext key="colophon" text="Kitap hakkında"/>
|
||||
<l:gentext key="Copyright" text="Telif Hakkı"/>
|
||||
<l:gentext key="copyright" text="Telif Hakkı"/>
|
||||
<l:gentext key="Dedication" text="İthaf"/>
|
||||
<l:gentext key="dedication" text="İthaf"/>
|
||||
<l:gentext key="Edition" text="Baskı"/>
|
||||
<l:gentext key="edition" text="Baskı"/>
|
||||
<l:gentext key="Editor" text="Editor" lang="en"/>
|
||||
<l:gentext key="Equation" text="Denklem"/>
|
||||
<l:gentext key="equation" text="Denklem"/>
|
||||
<l:gentext key="Example" text="Örnek"/>
|
||||
<l:gentext key="example" text="Örnek"/>
|
||||
<l:gentext key="Figure" text="Şekil"/>
|
||||
<l:gentext key="figure" text="Şekil"/>
|
||||
<l:gentext key="Glossary" text="Sözlük"/>
|
||||
<l:gentext key="glossary" text="Sözlük"/>
|
||||
<l:gentext key="GlossSee" text="Bkz."/>
|
||||
<l:gentext key="glosssee" text="Bkz."/>
|
||||
<l:gentext key="GlossSeeAlso" text="Bkz."/>
|
||||
<l:gentext key="glossseealso" text="Bkz."/>
|
||||
<l:gentext key="IMPORTANT" text="ÖNEMLİ"/>
|
||||
<l:gentext key="important" text="Önemli"/>
|
||||
<l:gentext key="Important" text="Önemli"/>
|
||||
<l:gentext key="Index" text="Dizin"/>
|
||||
<l:gentext key="index" text="Dizin"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="Yasal Uyarı"/>
|
||||
<l:gentext key="legalnotice" text="Yasal Uyarı"/>
|
||||
<l:gentext key="MsgAud" text="Hedef Okuyucu"/>
|
||||
<l:gentext key="msgaud" text="Hedef Okuyucu"/>
|
||||
<l:gentext key="MsgLevel" text="Düzey"/>
|
||||
<l:gentext key="msglevel" text="Düzey"/>
|
||||
<l:gentext key="MsgOrig" text="Kaynak"/>
|
||||
<l:gentext key="msgorig" text="Kaynak"/>
|
||||
<l:gentext key="NOTE" text="NOT"/>
|
||||
<l:gentext key="Note" text="Not"/>
|
||||
<l:gentext key="note" text="Not"/>
|
||||
<l:gentext key="Part" text="Kısım"/>
|
||||
<l:gentext key="part" text="Kısım"/>
|
||||
<l:gentext key="Preface" text="Önsöz"/>
|
||||
<l:gentext key="preface" text="Önsöz"/>
|
||||
<l:gentext key="Procedure" text="Yönerge"/>
|
||||
<l:gentext key="procedure" text="Yönerge"/>
|
||||
<l:gentext key="ProductionSet" text="Prodüksiyon"/>
|
||||
<l:gentext key="PubDate" text="Yayımlanma Tarihi"/>
|
||||
<l:gentext key="pubdate" text="Yayımlanma Tarihi"/>
|
||||
<l:gentext key="Published" text="Yayımlanma"/>
|
||||
<l:gentext key="published" text="Yayımlanma"/>
|
||||
<l:gentext key="Publisher" text="Publisher" lang="en"/>
|
||||
<l:gentext key="Qandadiv" text="S ve C"/>
|
||||
<l:gentext key="qandadiv" text="S ve C"/>
|
||||
<l:gentext key="QandASet" text="Frequently Asked Questions" lang="en"/>
|
||||
<l:gentext key="Question" text="Soru:"/>
|
||||
<l:gentext key="question" text="Soru:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="Referans"/>
|
||||
<l:gentext key="reference" text="Referans"/>
|
||||
<l:gentext key="References" text="References" lang="en"/>
|
||||
<l:gentext key="RefName" text="Referans Adı"/>
|
||||
<l:gentext key="refname" text="Referans Adı"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="Özet"/>
|
||||
<l:gentext key="refsynopsisdiv" text="Özet"/>
|
||||
<l:gentext key="RevHistory" text="Baskı Tarihçesi"/>
|
||||
<l:gentext key="revhistory" text="Baskı Tarihçesi"/>
|
||||
<l:gentext key="revision" text="Baskı"/>
|
||||
<l:gentext key="Revision" text="Baskı"/>
|
||||
<l:gentext key="sect1" text="Kısım"/>
|
||||
<l:gentext key="sect2" text="Kısım"/>
|
||||
<l:gentext key="sect3" text="Kısım"/>
|
||||
<l:gentext key="sect4" text="Kısım"/>
|
||||
<l:gentext key="sect5" text="Kısım"/>
|
||||
<l:gentext key="section" text="Kısım"/>
|
||||
<l:gentext key="Section" text="Kısım"/>
|
||||
<l:gentext key="see" text="bkz."/>
|
||||
<l:gentext key="See" text="Bkz."/>
|
||||
<l:gentext key="seealso" text="Bkz."/>
|
||||
<l:gentext key="Seealso" text="Bakınız"/>
|
||||
<l:gentext key="SeeAlso" text="Bakınız"/>
|
||||
<l:gentext key="set" text="Takım"/>
|
||||
<l:gentext key="Set" text="Takım"/>
|
||||
<l:gentext key="setindex" text="Takım Dizini"/>
|
||||
<l:gentext key="SetIndex" text="Takım Dizini"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="kenar çubuğu"/>
|
||||
<l:gentext key="step" text="adım"/>
|
||||
<l:gentext key="Step" text="Adım"/>
|
||||
<l:gentext key="table" text="Tablo"/>
|
||||
<l:gentext key="Table" text="Tablo"/>
|
||||
<l:gentext key="task" text="Task" lang="en"/>
|
||||
<l:gentext key="Task" text="Task" lang="en"/>
|
||||
<l:gentext key="tip" text="İpucu"/>
|
||||
<l:gentext key="TIP" text="İPUCU"/>
|
||||
<l:gentext key="Tip" text="İpucu"/>
|
||||
<l:gentext key="Warning" text="Uyarı"/>
|
||||
<l:gentext key="warning" text="Uyarı"/>
|
||||
<l:gentext key="WARNING" text="UYARI"/>
|
||||
<l:gentext key="and" text="ve"/>
|
||||
<l:gentext key="by" text=""/>
|
||||
<l:gentext key="Edited" text="Yayına hazırlayan"/>
|
||||
<l:gentext key="edited" text="yayına hazırlayan"/>
|
||||
<l:gentext key="Editedby" text="Yayına hazırlayan"/>
|
||||
<l:gentext key="editedby" text="yayına hazırlayan"/>
|
||||
<l:gentext key="in" text=""/>
|
||||
<l:gentext key="lastlistcomma" text=","/>
|
||||
<l:gentext key="listcomma" text=","/>
|
||||
<l:gentext key="nonexistantelement" text="varolmayan eleman"/>
|
||||
<l:gentext key="notes" text="Notlar"/>
|
||||
<l:gentext key="Notes" text="Notlar"/>
|
||||
<l:gentext key="Pgs" text="Sayfa"/>
|
||||
<l:gentext key="pgs" text="Sayfa"/>
|
||||
<l:gentext key="Revisedby" text="Düzeltmeler: "/>
|
||||
<l:gentext key="revisedby" text="Düzeltmeler: "/>
|
||||
<l:gentext key="TableNotes" text="Notlar"/>
|
||||
<l:gentext key="tablenotes" text="Notlar"/>
|
||||
<l:gentext key="TableofContents" text="İçindekiler"/>
|
||||
<l:gentext key="tableofcontents" text="İçindekiler"/>
|
||||
<l:gentext key="unexpectedelementname" text="Beklenmeyen eleman adı"/>
|
||||
<l:gentext key="unsupported" text="desteklenmiyor"/>
|
||||
<l:gentext key="xrefto" text=""/>
|
||||
<l:gentext key="Authors" text="Authors" lang="en"/>
|
||||
<l:gentext key="copyeditor" text="Copy Editor" lang="en"/>
|
||||
<l:gentext key="graphicdesigner" text="Graphic Designer" lang="en"/>
|
||||
<l:gentext key="productioneditor" text="Production Editor" lang="en"/>
|
||||
<l:gentext key="technicaleditor" text="Technical Editor" lang="en"/>
|
||||
<l:gentext key="translator" text="Translator" lang="en"/>
|
||||
<l:gentext key="listofequations" text="Denklemler"/>
|
||||
<l:gentext key="ListofEquations" text="Denklemler"/>
|
||||
<l:gentext key="ListofExamples" text="Örnekler"/>
|
||||
<l:gentext key="listofexamples" text="Örnekler"/>
|
||||
<l:gentext key="ListofFigures" text="Şekiller"/>
|
||||
<l:gentext key="listoffigures" text="Şekiller"/>
|
||||
<l:gentext key="ListofProcedures" text="Yönergeler"/>
|
||||
<l:gentext key="listofprocedures" text="Yönergeler"/>
|
||||
<l:gentext key="listoftables" text="Tablolar"/>
|
||||
<l:gentext key="ListofTables" text="Tablolar"/>
|
||||
<l:gentext key="ListofUnknown" text="Bilinmeyenler"/>
|
||||
<l:gentext key="listofunknown" text="Bilinmeyenler"/>
|
||||
<l:gentext key="nav-home" text="Başlangıç"/>
|
||||
<l:gentext key="nav-next" text="Sonraki"/>
|
||||
<l:gentext key="nav-next-sibling" text="Sonraki Bölüm"/>
|
||||
<l:gentext key="nav-prev" text="Önceki"/>
|
||||
<l:gentext key="nav-prev-sibling" text="Önceki Bölüm"/>
|
||||
<l:gentext key="nav-up" text="Yukarı"/>
|
||||
<l:gentext key="nav-toc" text="İçindekiler"/>
|
||||
<l:gentext key="Draft" text="Taslak"/>
|
||||
<l:gentext key="above" text="üstünde"/>
|
||||
<l:gentext key="below" text="altında"/>
|
||||
<l:gentext key="sectioncalled" text=""/>
|
||||
<l:gentext key="index symbols" text="Semboller"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcçdefgğhıijklmnoöprsştuüvyz"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ"/>
|
||||
<l:gentext key="normalize.sort.input" text="AaÀàÁáÂâÃãÄäÅåĀāĂ㥹ǍǎǞǟǠǡǺǻȀȁȂȃȦȧḀḁẚẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặBbƀƁɓƂƃḂḃḄḅḆḇCcÇçĆćĈĉĊċČčƇƈɕḈḉDdĎďĐđƊɗƋƌDžDzȡɖḊḋḌḍḎḏḐḑḒḓEeÈèÉéÊêËëĒēĔĕĖėĘęĚěȄȅȆȇȨȩḔḕḖḗḘḙḚḛḜḝẸẹẺẻẼẽẾếỀềỂểỄễỆệFfƑƒḞḟGgĜĝĞğĠġĢģƓɠǤǥǦǧǴǵḠḡHhĤĥĦħȞȟɦḢḣḤḥḦḧḨḩḪḫẖIiÌìÍíÎîÏïĨĩĪīĬĭĮįİƗɨǏǐȈȉȊȋḬḭḮḯỈỉỊịJjĴĵǰʝKkĶķƘƙǨǩḰḱḲḳḴḵLlĹĺĻļĽľĿŀŁłƚLjȴɫɬɭḶḷḸḹḺḻḼḽMmɱḾḿṀṁṂṃNnÑñŃńŅņŇňƝɲƞȠNjǸǹȵɳṄṅṆṇṈṉṊṋOoÒòÓóÔôÕõÖöØøŌōŎŏŐőƟƠơǑǒǪǫǬǭǾǿȌȍȎȏȪȫȬȭȮȯȰȱṌṍṎṏṐṑṒṓỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợPpƤƥṔṕṖṗQqʠRrŔŕŖŗŘřȐȑȒȓɼɽɾṘṙṚṛṜṝṞṟSsŚśŜŝŞşŠšȘșʂṠṡṢṣṤṥṦṧṨṩTtŢţŤťŦŧƫƬƭƮʈȚțȶṪṫṬṭṮṯṰṱẗUuÙùÚúÛûÜüŨũŪūŬŭŮůŰűŲųƯưǓǔǕǖǗǘǙǚǛǜȔȕȖȗṲṳṴṵṶṷṸṹṺṻỤụỦủỨứỪừỬửỮữỰựVvƲʋṼṽṾṿWwŴŵẀẁẂẃẄẅẆẇẈẉẘXxẊẋẌẍYyÝýÿŸŶŷƳƴȲȳẎẏẙỲỳỴỵỶỷỸỹZzŹźŻżŽžƵƶȤȥʐʑẐẑẒẓẔẕẕ" lang="en"/>
|
||||
<l:gentext key="normalize.sort.output" text="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCCCCDDDDDDDDDDDDDDDDDDDDDDDDEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEFFFFFFGGGGGGGGGGGGGGGGGGGGHHHHHHHHHHHHHHHHHHHHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIJJJJJJKKKKKKKKKKKKKKLLLLLLLLLLLLLLLLLLLLLLLLLLMMMMMMMMMNNNNNNNNNNNNNNNNNNNNNNNNNNNOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOPPPPPPPPQQQRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSSSSSSSSSSSSSSSSTTTTTTTTTTTTTTTTTTTTTTTTTUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUVVVVVVVVWWWWWWWWWWWWWWWXXXXXXYYYYYYYYYYYYYYYYYYYYYYYZZZZZZZZZZZZZZZZZZZZZ" lang="en"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="•"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="3"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="Ek %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t" lang="en"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="Bölüm %n. %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="Denklem %n. %t"/>
|
||||
<l:template name="example" text="Örnek %n. %t"/>
|
||||
<l:template name="figure" text="Şekil %n. %t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t" lang="en"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="Kısım %n. %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="Yönerge %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="Prodüksiyon %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="Tablo %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t" lang="en"/>
|
||||
<l:template name="taskprerequisites" text="%t" lang="en"/>
|
||||
<l:template name="taskrelated" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="Ek %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="Bölüm %n. %t"/>
|
||||
<l:template name="part" text="Kısım %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="Cevap: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t" lang="en"/>
|
||||
<l:template name="foilgroup" text="%t" lang="en"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="Soru: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="Soru: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t" lang="en"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o" lang="en"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)" lang="en"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(sayfa %p)"/>
|
||||
<l:template name="docname" text=" in %o" lang="en"/>
|
||||
<l:template name="docnamelong" text=" in the document titled %o" lang="en"/>
|
||||
<l:template name="pageabbrev" text="(shf. %p)"/>
|
||||
<l:template name="Page" text="Sayfa %p"/>
|
||||
<l:template name="bridgehead" text=" “%t”"/>
|
||||
<l:template name="refsection" text=" “%t”"/>
|
||||
<l:template name="refsect1" text=" “%t”"/>
|
||||
<l:template name="refsect2" text=" “%t”"/>
|
||||
<l:template name="refsect3" text=" “%t”"/>
|
||||
<l:template name="sect1" text=" “%t”"/>
|
||||
<l:template name="sect2" text=" “%t”"/>
|
||||
<l:template name="sect3" text=" “%t”"/>
|
||||
<l:template name="sect4" text=" “%t”"/>
|
||||
<l:template name="sect5" text=" “%t”"/>
|
||||
<l:template name="section" text=" “%t”"/>
|
||||
<l:template name="simplesect" text=" “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="Cevap: %n"/>
|
||||
<l:template name="appendix" text="Ek %n"/>
|
||||
<l:template name="bridgehead" text="Kısım %n"/>
|
||||
<l:template name="chapter" text="Bölüm %n"/>
|
||||
<l:template name="equation" text="Denklem %n"/>
|
||||
<l:template name="example" text="Örnek %n"/>
|
||||
<l:template name="figure" text="Şekil %n"/>
|
||||
<l:template name="part" text="Kısım %n"/>
|
||||
<l:template name="procedure" text="Yönerge %n"/>
|
||||
<l:template name="productionset" text="Prodüksiyon %n"/>
|
||||
<l:template name="qandadiv" text="S ve C %n"/>
|
||||
<l:template name="qandaentry" text="Soru: %n"/>
|
||||
<l:template name="question" text="Soru: %n"/>
|
||||
<l:template name="sect1" text="Kısım %n"/>
|
||||
<l:template name="sect2" text="Kısım %n"/>
|
||||
<l:template name="sect3" text="Kısım %n"/>
|
||||
<l:template name="sect4" text="Kısım %n"/>
|
||||
<l:template name="sect5" text="Kısım %n"/>
|
||||
<l:template name="section" text="Kısım %n"/>
|
||||
<l:template name="table" text="Tablo %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="Ek %n, %t"/>
|
||||
<l:template name="bridgehead" text="Kısım %n, “%t”"/>
|
||||
<l:template name="chapter" text="Bölüm %n, %t"/>
|
||||
<l:template name="equation" text="Denklem %n, “%t”"/>
|
||||
<l:template name="example" text="Örnek %n, “%t”"/>
|
||||
<l:template name="figure" text="Şekil %n, “%t”"/>
|
||||
<l:template name="part" text="Kısım %n, “%t”"/>
|
||||
<l:template name="procedure" text="Yönerge %n, “%t”"/>
|
||||
<l:template name="productionset" text="Prodüksiyon %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="S ve C %n, “%t”"/>
|
||||
<l:template name="refsect1" text=" “%t”"/>
|
||||
<l:template name="refsect2" text=" “%t”"/>
|
||||
<l:template name="refsect3" text=" “%t”"/>
|
||||
<l:template name="refsection" text=" “%t”"/>
|
||||
<l:template name="sect1" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect2" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect3" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect4" text="Kısım %n, “%t”"/>
|
||||
<l:template name="sect5" text="Kısım %n, “%t”"/>
|
||||
<l:template name="section" text="Kısım %n, “%t”"/>
|
||||
<l:template name="simplesect" text=" “%t”"/>
|
||||
<l:template name="table" text="Tablo %n, “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text=", "/>
|
||||
<l:template name="sep2" text=" ve "/>
|
||||
<l:template name="seplast" text=", ve "/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="Bkz. %t"/>
|
||||
<l:template name="seealso" text="Bkz. %t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="Hedef Okuyucu: "/>
|
||||
<l:template name="MsgLevel" text="Düzey: "/>
|
||||
<l:template name="MsgOrig" text="Kaynak: "/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="d/m/Y"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="Ocak"/>
|
||||
<l:template name="February" text="Şubat"/>
|
||||
<l:template name="March" text="Mart"/>
|
||||
<l:template name="April" text="Nisan"/>
|
||||
<l:template name="May" text="Mayıs"/>
|
||||
<l:template name="June" text="Haziran"/>
|
||||
<l:template name="July" text="Temmuz"/>
|
||||
<l:template name="August" text="Ağustos"/>
|
||||
<l:template name="September" text="Eylül"/>
|
||||
<l:template name="October" text="Ekim"/>
|
||||
<l:template name="November" text="Kasım"/>
|
||||
<l:template name="December" text="Aralık"/>
|
||||
<l:template name="Monday" text="Pazartesi"/>
|
||||
<l:template name="Tuesday" text="Salı"/>
|
||||
<l:template name="Wednesday" text="Çarşamba"/>
|
||||
<l:template name="Thursday" text="Perşembe"/>
|
||||
<l:template name="Friday" text="Cuma"/>
|
||||
<l:template name="Saturday" text="Cumartesi"/>
|
||||
<l:template name="Sunday" text="Pazar"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="Oca"/>
|
||||
<l:template name="Feb" text="Şub"/>
|
||||
<l:template name="Mar" text="Mar"/>
|
||||
<l:template name="Apr" text="Nis"/>
|
||||
<l:template name="May" text="May"/>
|
||||
<l:template name="Jun" text="Haz"/>
|
||||
<l:template name="Jul" text="Tem"/>
|
||||
<l:template name="Aug" text="Ağu"/>
|
||||
<l:template name="Sep" text="Eyl"/>
|
||||
<l:template name="Oct" text="Eki"/>
|
||||
<l:template name="Nov" text="Kas"/>
|
||||
<l:template name="Dec" text="Ara"/>
|
||||
<l:template name="Mon" text="Pzt"/>
|
||||
<l:template name="Tue" text="Sal"/>
|
||||
<l:template name="Wed" text="Çar"/>
|
||||
<l:template name="Thu" text="Per"/>
|
||||
<l:template name="Fri" text="Cum"/>
|
||||
<l:template name="Sat" text="Cts"/>
|
||||
<l:template name="Sun" text="Paz"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x041f Turkish"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" text="-" lang="en"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=", " lang="en"/>
|
||||
<l:template name="alt.person.two.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.last.sep" text=" – " lang="en"/>
|
||||
<l:template name="alt.person.more.sep" text=" – " lang="en"/>
|
||||
<l:template name="primary.editor" text=" (ed.)" lang="en"/>
|
||||
<l:template name="primary.many" text=", et al." lang="en"/>
|
||||
<l:template name="primary.sep" text=". " lang="en"/>
|
||||
<l:template name="submaintitle.sep" text=": " lang="en"/>
|
||||
<l:template name="title.sep" text=". " lang="en"/>
|
||||
<l:template name="othertitle.sep" text=", " lang="en"/>
|
||||
<l:template name="medium1" text=" [" lang="en"/>
|
||||
<l:template name="medium2" text="]" lang="en"/>
|
||||
<l:template name="secondary.person.sep" text="; " lang="en"/>
|
||||
<l:template name="secondary.sep" text=". " lang="en"/>
|
||||
<l:template name="respons.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.sep" text=". " lang="en"/>
|
||||
<l:template name="edition.serial.sep" text=", " lang="en"/>
|
||||
<l:template name="issuing.range" text="-" lang="en"/>
|
||||
<l:template name="issuing.div" text=", " lang="en"/>
|
||||
<l:template name="issuing.sep" text=". " lang="en"/>
|
||||
<l:template name="partnr.sep" text=". " lang="en"/>
|
||||
<l:template name="placepubl.sep" text=": " lang="en"/>
|
||||
<l:template name="publyear.sep" text=", " lang="en"/>
|
||||
<l:template name="pubinfo.sep" text=". " lang="en"/>
|
||||
<l:template name="spec.pubinfo.sep" text=", " lang="en"/>
|
||||
<l:template name="upd.sep" text=", " lang="en"/>
|
||||
<l:template name="datecit1" text=" [cited " lang="en"/>
|
||||
<l:template name="datecit2" text="]" lang="en"/>
|
||||
<l:template name="extent.sep" text=". " lang="en"/>
|
||||
<l:template name="locs.sep" text=", " lang="en"/>
|
||||
<l:template name="location.sep" text=". " lang="en"/>
|
||||
<l:template name="serie.sep" text=". " lang="en"/>
|
||||
<l:template name="notice.sep" text=". " lang="en"/>
|
||||
<l:template name="access" text="Available " lang="en"/>
|
||||
<l:template name="acctoo" text="Also available " lang="en"/>
|
||||
<l:template name="onwww" text="from World Wide Web" lang="en"/>
|
||||
<l:template name="oninet" text="from Internet" lang="en"/>
|
||||
<l:template name="access.end" text=": " lang="en"/>
|
||||
<l:template name="link1" text="<" lang="en"/>
|
||||
<l:template name="link2" text=">" lang="en"/>
|
||||
<l:template name="access.sep" text=". " lang="en"/>
|
||||
<l:template name="isbn" text="ISBN " lang="en"/>
|
||||
<l:template name="issn" text="ISSN " lang="en"/>
|
||||
<l:template name="stdnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patcountry.sep" text=". " lang="en"/>
|
||||
<l:template name="pattype.sep" text=", " lang="en"/>
|
||||
<l:template name="patnum.sep" text=". " lang="en"/>
|
||||
<l:template name="patdate.sep" text=". " lang="en"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">Semboller</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">Ç</l:l>
|
||||
<l:l i="4">ç</l:l>
|
||||
<l:l i="5">D</l:l>
|
||||
<l:l i="5">d</l:l>
|
||||
<l:l i="6">E</l:l>
|
||||
<l:l i="6">e</l:l>
|
||||
<l:l i="7">F</l:l>
|
||||
<l:l i="7">f</l:l>
|
||||
<l:l i="8">G</l:l>
|
||||
<l:l i="8">g</l:l>
|
||||
<l:l i="9">Ğ</l:l>
|
||||
<l:l i="9">ğ</l:l>
|
||||
<l:l i="10">H</l:l>
|
||||
<l:l i="10">h</l:l>
|
||||
<l:l i="11">I</l:l>
|
||||
<l:l i="11">ı</l:l>
|
||||
<l:l i="12">İ</l:l>
|
||||
<l:l i="12">i</l:l>
|
||||
<l:l i="13">J</l:l>
|
||||
<l:l i="13">j</l:l>
|
||||
<l:l i="14">K</l:l>
|
||||
<l:l i="14">k</l:l>
|
||||
<l:l i="15">L</l:l>
|
||||
<l:l i="15">l</l:l>
|
||||
<l:l i="16">M</l:l>
|
||||
<l:l i="16">m</l:l>
|
||||
<l:l i="17">N</l:l>
|
||||
<l:l i="17">n</l:l>
|
||||
<l:l i="18">O</l:l>
|
||||
<l:l i="18">o</l:l>
|
||||
<l:l i="19">Ö</l:l>
|
||||
<l:l i="19">ö</l:l>
|
||||
<l:l i="20">P</l:l>
|
||||
<l:l i="20">p</l:l>
|
||||
<l:l i="21">R</l:l>
|
||||
<l:l i="21">r</l:l>
|
||||
<l:l i="22">S</l:l>
|
||||
<l:l i="22">s</l:l>
|
||||
<l:l i="23">Ş</l:l>
|
||||
<l:l i="23">ş</l:l>
|
||||
<l:l i="24">T</l:l>
|
||||
<l:l i="24">t</l:l>
|
||||
<l:l i="25">U</l:l>
|
||||
<l:l i="25">u</l:l>
|
||||
<l:l i="26">Ü</l:l>
|
||||
<l:l i="26">ü</l:l>
|
||||
<l:l i="27">V</l:l>
|
||||
<l:l i="27">v</l:l>
|
||||
<l:l i="28">Y</l:l>
|
||||
<l:l i="28">y</l:l>
|
||||
<l:l i="29">Z</l:l>
|
||||
<l:l i="29">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/uk.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/uk.xml
Normal file
File diff suppressed because it is too large
Load Diff
259
doc/reference/lib/docbook-xsl-snapshot/common/utility.xml
Normal file
259
doc/reference/lib/docbook-xsl-snapshot/common/utility.xml
Normal file
@@ -0,0 +1,259 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<reference xml:id="utility">
|
||||
<info>
|
||||
<title>Common » Utility Template Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
|
||||
<para>This is technical reference documentation for the
|
||||
miscellaneous utility templates in the DocBook XSL
|
||||
Stylesheets.</para>
|
||||
|
||||
<note>
|
||||
|
||||
<para>These templates are defined in a separate file from the set
|
||||
of “common” templates because some of the common templates
|
||||
reference DocBook XSL stylesheet parameters, requiring the
|
||||
entire set of parameters to be imported/included in any
|
||||
stylesheet that imports/includes the common templates.</para>
|
||||
|
||||
|
||||
<para>The utility templates don’t import or include any DocBook
|
||||
XSL stylesheet parameters, so the utility templates can be used
|
||||
without importing the whole set of parameters.</para>
|
||||
|
||||
</note>
|
||||
|
||||
<para>This is not intended to be user documentation. It is
|
||||
provided for developers writing customization layers for the
|
||||
stylesheets.</para>
|
||||
|
||||
</partintro>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.log.message">
|
||||
<refnamediv>
|
||||
<refname>log.message</refname>
|
||||
<refpurpose>Logs/emits formatted notes and warnings</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="log.message">
|
||||
<xsl:param name="level"/>
|
||||
<xsl:param name="source"/>
|
||||
<xsl:param name="context-desc"/>
|
||||
<xsl:param name="context-desc-field-length">12</xsl:param>
|
||||
<xsl:param name="context-desc-padded">
|
||||
<xsl:if test="not($context-desc = '')">
|
||||
<xsl:call-template name="pad-string">
|
||||
<xsl:with-param name="leftRight">right</xsl:with-param>
|
||||
<xsl:with-param name="padVar" select="substring($context-desc, 1, $context-desc-field-length)"/>
|
||||
<xsl:with-param name="length" select="$context-desc-field-length"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:param>
|
||||
<xsl:param name="message"/>
|
||||
<xsl:param name="message-field-length" select="45"/>
|
||||
<xsl:param name="message-padded">
|
||||
<xsl:variable name="spaces-for-blank-level">
|
||||
<!-- * if the level field is blank, we'll need to pad out -->
|
||||
<!-- * the message field with spaces to compensate -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$level = ''">
|
||||
<xsl:value-of select="4 + 2"/>
|
||||
<!-- * 4 = hard-coded length of comment text ("Note" or "Warn") -->
|
||||
<!-- * + 2 = length of colon-plus-space separator ": " -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="0"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="spaces-for-blank-context-desc">
|
||||
<!-- * if the context-description field is blank, we'll need -->
|
||||
<!-- * to pad out the message field with spaces to compensate -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$context-desc = ''">
|
||||
<xsl:value-of select="$context-desc-field-length + 2"/>
|
||||
<!-- * + 2 = length of colon-plus-space separator ": " -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="0"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="extra-spaces" select="$spaces-for-blank-level + $spaces-for-blank-context-desc"/>
|
||||
<xsl:call-template name="pad-string">
|
||||
<xsl:with-param name="leftRight">right</xsl:with-param>
|
||||
<xsl:with-param name="padVar" select="substring($message, 1, ($message-field-length + $extra-spaces))"/>
|
||||
<xsl:with-param name="length" select="$message-field-length + $extra-spaces"/>
|
||||
</xsl:call-template>
|
||||
</xsl:param>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <function>log.message</function> template is a utility
|
||||
template for logging/emitting formatted messages – that is,
|
||||
notes and warnings, along with a given log “level” and an
|
||||
identifier for the “source” that the message relates to.</para>
|
||||
|
||||
</refsect1><refsect1><title>Parameters</title>
|
||||
|
||||
<variablelist>
|
||||
<varlistentry><term>level</term>
|
||||
<listitem>
|
||||
|
||||
<para>Text to log/emit in the message-level field to
|
||||
indicate the message level
|
||||
(<literal>Note</literal> or
|
||||
<literal>Warning</literal>)</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>source</term>
|
||||
<listitem>
|
||||
|
||||
<para>Text to log/emit in the source field to identify the
|
||||
“source” to which the notification/warning relates.
|
||||
This can be any arbitrary string, but because the
|
||||
message lacks line and column numbers to identify the
|
||||
exact part of the source document to which it
|
||||
relates, the intention is that the value you pass
|
||||
into the <literal>source</literal> parameter should
|
||||
give the user some way to identify the portion of
|
||||
their source document on which to take potentially
|
||||
take action in response to the log message (for
|
||||
example, to edit, change, or add content).</para>
|
||||
|
||||
|
||||
<para>So the <literal>source</literal> value should be,
|
||||
for example, an ID, book/chapter/article title, title
|
||||
of some formal object, or even a string giving an
|
||||
XPath expression.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>context-desc</term>
|
||||
<listitem>
|
||||
|
||||
<para>Text to log/emit in the context-description field to
|
||||
describe the context for the message.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>context-desc-field-length</term>
|
||||
<listitem>
|
||||
|
||||
<para>Specifies length of the context-description field
|
||||
(in characters); default is 12</para>
|
||||
|
||||
|
||||
<para>If the text specified by the
|
||||
<literal>context-desc</literal> parameter is longer
|
||||
than the number of characters specified in
|
||||
<literal>context-desc-field-length</literal>, it is
|
||||
truncated to <literal>context-desc-field-length</literal>
|
||||
(12 characters by default).</para>
|
||||
|
||||
|
||||
<para>If the specified text is shorter than
|
||||
<literal>context-desc-field-length</literal>,
|
||||
it is right-padded out to
|
||||
<literal>context-desc-field-length</literal> (12 by
|
||||
default).</para>
|
||||
|
||||
|
||||
<para>If no value has been specified for the
|
||||
<literal>context-desc</literal> parameter, the field is
|
||||
left empty and the text of the log message begins with
|
||||
the value of the <literal>message</literal>
|
||||
parameter.</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>message</term>
|
||||
<listitem>
|
||||
|
||||
<para>Text to log/emit in the actual message field</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>message-field-length</term>
|
||||
<listitem>
|
||||
|
||||
<para>Specifies length of the message
|
||||
field (in characters); default is 45</para>
|
||||
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Outputs a message (generally, to standard error).</para>
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.get.doc.title">
|
||||
<refnamediv>
|
||||
<refname>get.doc.title</refname>
|
||||
<refpurpose>Gets a title from the current document</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="get.doc.title"/></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>The <function>get.doc.title</function> template is a
|
||||
utility template for returning the first title found in the
|
||||
current document.</para>
|
||||
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a string containing some identifying title for the
|
||||
current document .</para>
|
||||
</refsect1></refentry>
|
||||
|
||||
<refentry xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="template.pad-string">
|
||||
<refnamediv>
|
||||
<refname>pad-string</refname>
|
||||
<refpurpose>Right-pads or left-pads a string out to a certain length</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<synopsis><xsl:template name="pad-string">
|
||||
<xsl:param name="padChar" select="' '"/>
|
||||
<xsl:param name="leftRight">left</xsl:param>
|
||||
<xsl:param name="padVar"/>
|
||||
<xsl:param name="length"/>
|
||||
...
|
||||
</xsl:template></synopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1><title/>
|
||||
|
||||
<para>This function takes string <parameter>padVar</parameter> and
|
||||
pads it out in the direction <parameter>rightLeft</parameter> to
|
||||
the string-length <parameter>length</parameter>, using string
|
||||
<parameter>padChar</parameter> (a space character by default) as
|
||||
the padding string (note that <parameter>padChar</parameter> can
|
||||
be a string; it is not limited to just being a single
|
||||
character).</para>
|
||||
|
||||
<note>
|
||||
|
||||
<para>This function began as a copy of Nate Austin's
|
||||
<function>prepend-pad</function> function in the <link xlink:href="http://www.dpawson.co.uk/xsl/sect2/padding.html">Padding
|
||||
Content</link> section of Dave Pawson's <link xlink:href="http://www.dpawson.co.uk/xsl/index.html">XSLT
|
||||
FAQ</link>.</para>
|
||||
|
||||
</note>
|
||||
</refsect1><refsect1><title>Returns</title>
|
||||
|
||||
<para>Returns a (padded) string.</para>
|
||||
</refsect1></refentry>
|
||||
</reference>
|
||||
|
||||
290
doc/reference/lib/docbook-xsl-snapshot/common/utility.xsl
Normal file
290
doc/reference/lib/docbook-xsl-snapshot/common/utility.xsl
Normal file
@@ -0,0 +1,290 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
|
||||
xmlns:dyn="http://exslt.org/dynamic"
|
||||
xmlns:saxon="http://icl.com/saxon"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
exclude-result-prefixes="doc dyn saxon"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
<doc:reference xmlns="" xml:id="utility">
|
||||
<info>
|
||||
<title>Common » Utility Template Reference</title>
|
||||
<releaseinfo role="meta">
|
||||
$Id: utility.xsl 7101 2007-07-20 15:32:12Z xmldoc $
|
||||
</releaseinfo>
|
||||
</info>
|
||||
<!-- * yes, partintro is a valid child of a reference... -->
|
||||
<partintro xml:id="partintro">
|
||||
<title>Introduction</title>
|
||||
<para>This is technical reference documentation for the
|
||||
miscellaneous utility templates in the DocBook XSL
|
||||
Stylesheets.</para>
|
||||
<note>
|
||||
<para>These templates are defined in a separate file from the set
|
||||
of “common” templates because some of the common templates
|
||||
reference DocBook XSL stylesheet parameters, requiring the
|
||||
entire set of parameters to be imported/included in any
|
||||
stylesheet that imports/includes the common templates.</para>
|
||||
<para>The utility templates don’t import or include any DocBook
|
||||
XSL stylesheet parameters, so the utility templates can be used
|
||||
without importing the whole set of parameters.</para>
|
||||
</note>
|
||||
<para>This is not intended to be user documentation. It is
|
||||
provided for developers writing customization layers for the
|
||||
stylesheets.</para>
|
||||
</partintro>
|
||||
</doc:reference>
|
||||
|
||||
<!-- ====================================================================== -->
|
||||
|
||||
<doc:template name="log.message" xmlns="">
|
||||
<refpurpose>Logs/emits formatted notes and warnings</refpurpose>
|
||||
|
||||
<refdescription id="log.message-desc">
|
||||
<para>The <function>log.message</function> template is a utility
|
||||
template for logging/emitting formatted messages – that is,
|
||||
notes and warnings, along with a given log “level” and an
|
||||
identifier for the “source” that the message relates to.</para>
|
||||
</refdescription>
|
||||
|
||||
<refparameter id="log.message-params">
|
||||
<variablelist>
|
||||
<varlistentry><term>level</term>
|
||||
<listitem>
|
||||
<para>Text to log/emit in the message-level field to
|
||||
indicate the message level
|
||||
(<literal>Note</literal> or
|
||||
<literal>Warning</literal>)</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>source</term>
|
||||
<listitem>
|
||||
<para>Text to log/emit in the source field to identify the
|
||||
“source” to which the notification/warning relates.
|
||||
This can be any arbitrary string, but because the
|
||||
message lacks line and column numbers to identify the
|
||||
exact part of the source document to which it
|
||||
relates, the intention is that the value you pass
|
||||
into the <literal>source</literal> parameter should
|
||||
give the user some way to identify the portion of
|
||||
their source document on which to take potentially
|
||||
take action in response to the log message (for
|
||||
example, to edit, change, or add content).</para>
|
||||
<para>So the <literal>source</literal> value should be,
|
||||
for example, an ID, book/chapter/article title, title
|
||||
of some formal object, or even a string giving an
|
||||
XPath expression.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>context-desc</term>
|
||||
<listitem>
|
||||
<para>Text to log/emit in the context-description field to
|
||||
describe the context for the message.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>context-desc-field-length</term>
|
||||
<listitem>
|
||||
<para>Specifies length of the context-description field
|
||||
(in characters); default is 12</para>
|
||||
<para>If the text specified by the
|
||||
<literal>context-desc</literal> parameter is longer
|
||||
than the number of characters specified in
|
||||
<literal>context-desc-field-length</literal>, it is
|
||||
truncated to <literal>context-desc-field-length</literal>
|
||||
(12 characters by default).</para>
|
||||
<para>If the specified text is shorter than
|
||||
<literal>context-desc-field-length</literal>,
|
||||
it is right-padded out to
|
||||
<literal>context-desc-field-length</literal> (12 by
|
||||
default).</para>
|
||||
<para>If no value has been specified for the
|
||||
<literal>context-desc</literal> parameter, the field is
|
||||
left empty and the text of the log message begins with
|
||||
the value of the <literal>message</literal>
|
||||
parameter.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>message</term>
|
||||
<listitem>
|
||||
<para>Text to log/emit in the actual message field</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry><term>message-field-length</term>
|
||||
<listitem>
|
||||
<para>Specifies length of the message
|
||||
field (in characters); default is 45</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
<refreturn id="log.message-returns">
|
||||
<para>Outputs a message (generally, to standard error).</para></refreturn>
|
||||
</doc:template>
|
||||
<xsl:template name="log.message">
|
||||
<xsl:param name="level"/>
|
||||
<xsl:param name="source"/>
|
||||
<xsl:param name="context-desc"/>
|
||||
<xsl:param name="context-desc-field-length">12</xsl:param>
|
||||
<xsl:param name="context-desc-padded">
|
||||
<xsl:if test="not($context-desc = '')">
|
||||
<xsl:call-template name="pad-string">
|
||||
<xsl:with-param name="leftRight">right</xsl:with-param>
|
||||
<xsl:with-param name="padVar"
|
||||
select="substring($context-desc, 1, $context-desc-field-length)"/>
|
||||
<xsl:with-param name="length" select="$context-desc-field-length"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:param>
|
||||
<xsl:param name="message"/>
|
||||
<xsl:param name="message-field-length" select="45"/>
|
||||
<xsl:param name="message-padded">
|
||||
<xsl:variable name="spaces-for-blank-level">
|
||||
<!-- * if the level field is blank, we'll need to pad out -->
|
||||
<!-- * the message field with spaces to compensate -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$level = ''">
|
||||
<xsl:value-of select="4 + 2"/>
|
||||
<!-- * 4 = hard-coded length of comment text ("Note" or "Warn") -->
|
||||
<!-- * + 2 = length of colon-plus-space separator ": " -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="0"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="spaces-for-blank-context-desc">
|
||||
<!-- * if the context-description field is blank, we'll need -->
|
||||
<!-- * to pad out the message field with spaces to compensate -->
|
||||
<xsl:choose>
|
||||
<xsl:when test="$context-desc = ''">
|
||||
<xsl:value-of select="$context-desc-field-length + 2"/>
|
||||
<!-- * + 2 = length of colon-plus-space separator ": " -->
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="0"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="extra-spaces"
|
||||
select="$spaces-for-blank-level + $spaces-for-blank-context-desc"/>
|
||||
<xsl:call-template name="pad-string">
|
||||
<xsl:with-param name="leftRight">right</xsl:with-param>
|
||||
<xsl:with-param name="padVar"
|
||||
select="substring($message, 1, ($message-field-length + $extra-spaces))"/>
|
||||
<xsl:with-param name="length"
|
||||
select="$message-field-length + $extra-spaces"/>
|
||||
</xsl:call-template>
|
||||
</xsl:param>
|
||||
<!-- * emit the actual log message -->
|
||||
<xsl:message>
|
||||
<xsl:if test="not($level = '')">
|
||||
<xsl:value-of select="$level"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
</xsl:if>
|
||||
<xsl:if test="not($context-desc = '')">
|
||||
<xsl:value-of select="$context-desc-padded"/>
|
||||
<xsl:text>: </xsl:text>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="$message-padded"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<xsl:value-of select="$source"/>
|
||||
</xsl:message>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ===================================== -->
|
||||
<doc:template name="get.doc.title" xmlns="">
|
||||
<refpurpose>Gets a title from the current document</refpurpose>
|
||||
<refdescription id="get.doc.title-desc">
|
||||
<para>The <function>get.doc.title</function> template is a
|
||||
utility template for returning the first title found in the
|
||||
current document.</para>
|
||||
</refdescription>
|
||||
<refreturn id="get.doc.title-returns">
|
||||
<para>Returns a string containing some identifying title for the
|
||||
current document .</para></refreturn>
|
||||
</doc:template>
|
||||
<xsl:template name="get.doc.title">
|
||||
<xsl:choose>
|
||||
<xsl:when test="//*[local-name() = 'title'
|
||||
or local-name() = 'refname']">
|
||||
<xsl:value-of select="//*[local-name() = 'title'
|
||||
or local-name() = 'refname'][1]"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="substring(local-name(*[1]),
|
||||
string-length(local-name(*[1])-3) = 'info')
|
||||
and *[1]/*[local-name() = 'title']">
|
||||
<xsl:value-of select="*[1]/*[local-name() = 'title'][1]"/>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ===================================== -->
|
||||
<doc:template name="pad-string" xmlns="">
|
||||
<refpurpose>Right-pads or left-pads a string out to a certain length</refpurpose>
|
||||
<refdescription id="pad-string-desc">
|
||||
<para>This function takes string <parameter>padVar</parameter> and
|
||||
pads it out in the direction <parameter>rightLeft</parameter> to
|
||||
the string-length <parameter>length</parameter>, using string
|
||||
<parameter>padChar</parameter> (a space character by default) as
|
||||
the padding string (note that <parameter>padChar</parameter> can
|
||||
be a string; it is not limited to just being a single
|
||||
character).</para>
|
||||
<note>
|
||||
<para>This function began as a copy of Nate Austin's
|
||||
<function>prepend-pad</function> function in the <link
|
||||
xlink:href="http://www.dpawson.co.uk/xsl/sect2/padding.html" >Padding
|
||||
Content</link> section of Dave Pawson's <link
|
||||
xlink:href="http://www.dpawson.co.uk/xsl/index.html" >XSLT
|
||||
FAQ</link>.</para>
|
||||
</note>
|
||||
</refdescription>
|
||||
<refreturn id="pad-string-returns">
|
||||
<para>Returns a (padded) string.</para></refreturn>
|
||||
</doc:template>
|
||||
<xsl:template name="pad-string">
|
||||
<!-- * recursive template to right/left pad the value with -->
|
||||
<!-- * whatever padChar is passed in -->
|
||||
<xsl:param name="padChar" select="' '"/>
|
||||
<xsl:param name="leftRight">left</xsl:param>
|
||||
<xsl:param name="padVar"/>
|
||||
<xsl:param name="length"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="string-length($padVar) < $length">
|
||||
<xsl:call-template name="pad-string">
|
||||
<xsl:with-param name="padChar" select="$padChar"/>
|
||||
<xsl:with-param name="leftRight" select="$leftRight"/>
|
||||
<xsl:with-param name="padVar">
|
||||
<xsl:choose>
|
||||
<!-- * determine whether string should be -->
|
||||
<!-- * right- or left-padded -->
|
||||
<xsl:when test="$leftRight = 'left'">
|
||||
<!-- * pad it to left -->
|
||||
<xsl:value-of select="concat($padChar,$padVar)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<!-- * otherwise, right-pad the string -->
|
||||
<xsl:value-of select="concat($padVar,$padChar)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="length" select="$length"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of
|
||||
select="substring($padVar,string-length($padVar) - $length + 1)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/vi.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/vi.xml
Normal file
File diff suppressed because it is too large
Load Diff
1223
doc/reference/lib/docbook-xsl-snapshot/common/xh.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/xh.xml
Normal file
File diff suppressed because it is too large
Load Diff
654
doc/reference/lib/docbook-xsl-snapshot/common/zh_cn.xml
Normal file
654
doc/reference/lib/docbook-xsl-snapshot/common/zh_cn.xml
Normal file
@@ -0,0 +1,654 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="zh_cn" english-language-name="Chinese Simplified">
|
||||
|
||||
<!-- * This file is generated automatically. -->
|
||||
<!-- * To submit changes to this file upstream (to the DocBook Project) -->
|
||||
<!-- * do not submit an edited version of this file. Instead, submit an -->
|
||||
<!-- * edited version of the source file at the following location: -->
|
||||
<!-- * -->
|
||||
<!-- * https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/gentext/locale/zh_cn.xml -->
|
||||
<!-- * -->
|
||||
<!-- * E-mail the edited zh_cn.xml source file to: -->
|
||||
<!-- * -->
|
||||
<!-- * docbook-developers@lists.sourceforge.net -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
<!-- This file is part of the XSL DocBook Stylesheet distribution. -->
|
||||
<!-- See ../README or http://docbook.sf.net/release/xsl/current/ for -->
|
||||
<!-- copyright and other information. -->
|
||||
|
||||
<!-- ******************************************************************** -->
|
||||
<!-- In these files, % with a letter is used for a placeholder: -->
|
||||
<!-- %t is the current element's title -->
|
||||
<!-- %s is the current element's subtitle (if applicable)-->
|
||||
<!-- %n is the current element's number label-->
|
||||
<!-- %p is the current element's page number (if applicable)-->
|
||||
<!-- ******************************************************************** -->
|
||||
|
||||
|
||||
<l:gentext key="Abstract" text="摘要"/>
|
||||
<l:gentext key="abstract" text="摘要"/>
|
||||
<l:gentext key="Answer" text="答:"/>
|
||||
<l:gentext key="answer" text="答:"/>
|
||||
<l:gentext key="Appendix" text="附录"/>
|
||||
<l:gentext key="appendix" text="附录"/>
|
||||
<l:gentext key="Article" text="文章"/>
|
||||
<l:gentext key="article" text="文章"/>
|
||||
<l:gentext key="Author" text="作者"/>
|
||||
<l:gentext key="Bibliography" text="参考书目"/>
|
||||
<l:gentext key="bibliography" text="参考书目"/>
|
||||
<l:gentext key="Book" text="书"/>
|
||||
<l:gentext key="book" text="书"/>
|
||||
<l:gentext key="CAUTION" text="小心"/>
|
||||
<l:gentext key="Caution" text="小心"/>
|
||||
<l:gentext key="caution" text="小心"/>
|
||||
<l:gentext key="Chapter" text="章"/>
|
||||
<l:gentext key="chapter" text="章"/>
|
||||
<l:gentext key="Colophon" text="Colophon"/>
|
||||
<l:gentext key="colophon" text="Colophon"/>
|
||||
<l:gentext key="Copyright" text="版权"/>
|
||||
<l:gentext key="copyright" text="版权"/>
|
||||
<l:gentext key="Dedication" text="题词"/>
|
||||
<l:gentext key="dedication" text="题词"/>
|
||||
<l:gentext key="Edition" text="版"/>
|
||||
<l:gentext key="edition" text="版"/>
|
||||
<l:gentext key="Editor" text="编者"/>
|
||||
<l:gentext key="Equation" text="公式"/>
|
||||
<l:gentext key="equation" text="公式"/>
|
||||
<l:gentext key="Example" text="例"/>
|
||||
<l:gentext key="example" text="例"/>
|
||||
<l:gentext key="Figure" text="图"/>
|
||||
<l:gentext key="figure" text="图"/>
|
||||
<l:gentext key="Glossary" text="术语表"/>
|
||||
<l:gentext key="glossary" text="术语表"/>
|
||||
<l:gentext key="GlossSee" text="见"/>
|
||||
<l:gentext key="glosssee" text="见"/>
|
||||
<l:gentext key="GlossSeeAlso" text="参见"/>
|
||||
<l:gentext key="glossseealso" text="参见"/>
|
||||
<l:gentext key="IMPORTANT" text="重要"/>
|
||||
<l:gentext key="important" text="重要"/>
|
||||
<l:gentext key="Important" text="重要"/>
|
||||
<l:gentext key="Index" text="索引"/>
|
||||
<l:gentext key="index" text="索引"/>
|
||||
<l:gentext key="ISBN" text="ISBN"/>
|
||||
<l:gentext key="isbn" text="ISBN"/>
|
||||
<l:gentext key="LegalNotice" text="法律通告"/>
|
||||
<l:gentext key="legalnotice" text="法律通告"/>
|
||||
<l:gentext key="MsgAud" text="受众"/>
|
||||
<l:gentext key="msgaud" text="受众"/>
|
||||
<l:gentext key="MsgLevel" text="级别"/>
|
||||
<l:gentext key="msglevel" text="级别"/>
|
||||
<l:gentext key="MsgOrig" text="出处"/>
|
||||
<l:gentext key="msgorig" text="出处"/>
|
||||
<l:gentext key="NOTE" text="注意"/>
|
||||
<l:gentext key="Note" text="注意"/>
|
||||
<l:gentext key="note" text="注意"/>
|
||||
<l:gentext key="Part" text="部分"/>
|
||||
<l:gentext key="part" text="部分"/>
|
||||
<l:gentext key="Preface" text="前言"/>
|
||||
<l:gentext key="preface" text="前言"/>
|
||||
<l:gentext key="Procedure" text="过程"/>
|
||||
<l:gentext key="procedure" text="过程"/>
|
||||
<l:gentext key="ProductionSet" text="产品"/>
|
||||
<l:gentext key="PubDate" text="出版日期"/>
|
||||
<l:gentext key="pubdate" text="出版日期"/>
|
||||
<l:gentext key="Published" text="出版方"/>
|
||||
<l:gentext key="published" text="出版方"/>
|
||||
<l:gentext key="Publisher" text="出版者"/>
|
||||
<l:gentext key="Qandadiv" text="质保"/>
|
||||
<l:gentext key="qandadiv" text="质保"/>
|
||||
<l:gentext key="QandASet" text="常见问题"/>
|
||||
<l:gentext key="Question" text="问:"/>
|
||||
<l:gentext key="question" text="问:"/>
|
||||
<l:gentext key="RefEntry" text=""/>
|
||||
<l:gentext key="refentry" text=""/>
|
||||
<l:gentext key="Reference" text="参考"/>
|
||||
<l:gentext key="reference" text="参考"/>
|
||||
<l:gentext key="References" text="参考"/>
|
||||
<l:gentext key="RefName" text="名称"/>
|
||||
<l:gentext key="refname" text="名称"/>
|
||||
<l:gentext key="RefSection" text=""/>
|
||||
<l:gentext key="refsection" text=""/>
|
||||
<l:gentext key="RefSynopsisDiv" text="大纲"/>
|
||||
<l:gentext key="refsynopsisdiv" text="大纲"/>
|
||||
<l:gentext key="RevHistory" text="修订历史"/>
|
||||
<l:gentext key="revhistory" text="修订历史"/>
|
||||
<l:gentext key="revision" text="修订"/>
|
||||
<l:gentext key="Revision" text="修订"/>
|
||||
<l:gentext key="sect1" text="节"/>
|
||||
<l:gentext key="sect2" text="节"/>
|
||||
<l:gentext key="sect3" text="节"/>
|
||||
<l:gentext key="sect4" text="节"/>
|
||||
<l:gentext key="sect5" text="节"/>
|
||||
<l:gentext key="section" text="节"/>
|
||||
<l:gentext key="Section" text="节"/>
|
||||
<l:gentext key="see" text="见"/>
|
||||
<l:gentext key="See" text="见"/>
|
||||
<l:gentext key="seealso" text="参见"/>
|
||||
<l:gentext key="Seealso" text="参见"/>
|
||||
<l:gentext key="SeeAlso" text="参见"/>
|
||||
<l:gentext key="set" text="Set"/>
|
||||
<l:gentext key="Set" text="Set"/>
|
||||
<l:gentext key="setindex" text="Set Index"/>
|
||||
<l:gentext key="SetIndex" text="Set Index"/>
|
||||
<l:gentext key="Sidebar" text=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<l:gentext key="step" text="步骤"/>
|
||||
<l:gentext key="Step" text="步骤"/>
|
||||
<l:gentext key="table" text="表"/>
|
||||
<l:gentext key="Table" text="表"/>
|
||||
<l:gentext key="task" text="任务"/>
|
||||
<l:gentext key="Task" text="任务"/>
|
||||
<l:gentext key="tip" text="提示"/>
|
||||
<l:gentext key="TIP" text="提示"/>
|
||||
<l:gentext key="Tip" text="提示"/>
|
||||
<l:gentext key="Warning" text="警告"/>
|
||||
<l:gentext key="warning" text="警告"/>
|
||||
<l:gentext key="WARNING" text="警告"/>
|
||||
<l:gentext key="and" text="和"/>
|
||||
<l:gentext key="by" text="由"/>
|
||||
<l:gentext key="Edited" text="编辑时间"/>
|
||||
<l:gentext key="edited" text="编辑时间"/>
|
||||
<l:gentext key="Editedby" text="编辑者"/>
|
||||
<l:gentext key="editedby" text="编辑者"/>
|
||||
<l:gentext key="in" text="于"/>
|
||||
<l:gentext key="lastlistcomma" text=""/>
|
||||
<l:gentext key="listcomma" text="、"/>
|
||||
<l:gentext key="nonexistantelement" text="不存在的元素"/>
|
||||
<l:gentext key="notes" text="备注"/>
|
||||
<l:gentext key="Notes" text="备注"/>
|
||||
<l:gentext key="Pgs" text="页"/>
|
||||
<l:gentext key="pgs" text="页"/>
|
||||
<l:gentext key="Revisedby" text="修订者:"/>
|
||||
<l:gentext key="revisedby" text="修订者:"/>
|
||||
<l:gentext key="TableNotes" text="表注"/>
|
||||
<l:gentext key="tablenotes" text="表注"/>
|
||||
<l:gentext key="TableofContents" text="目录"/>
|
||||
<l:gentext key="tableofcontents" text="目录"/>
|
||||
<l:gentext key="unexpectedelementname" text="未预期的名称"/>
|
||||
<l:gentext key="unsupported" text="不支持"/>
|
||||
<l:gentext key="xrefto" text="xref to"/>
|
||||
<l:gentext key="Authors" text="作者"/>
|
||||
<l:gentext key="copyeditor" text="版权编辑"/>
|
||||
<l:gentext key="graphicdesigner" text="美术编辑"/>
|
||||
<l:gentext key="productioneditor" text="产品编辑"/>
|
||||
<l:gentext key="technicaleditor" text="技术编辑"/>
|
||||
<l:gentext key="translator" text="译者"/>
|
||||
<l:gentext key="listofequations" text="公式清单"/>
|
||||
<l:gentext key="ListofEquations" text="公式清单"/>
|
||||
<l:gentext key="ListofExamples" text="范例清单"/>
|
||||
<l:gentext key="listofexamples" text="范例清单"/>
|
||||
<l:gentext key="ListofFigures" text="插图清单"/>
|
||||
<l:gentext key="listoffigures" text="插图清单"/>
|
||||
<l:gentext key="ListofProcedures" text="过程清单"/>
|
||||
<l:gentext key="listofprocedures" text="过程清单"/>
|
||||
<l:gentext key="listoftables" text="表格清单"/>
|
||||
<l:gentext key="ListofTables" text="表格清单"/>
|
||||
<l:gentext key="ListofUnknown" text="未知清单"/>
|
||||
<l:gentext key="listofunknown" text="未知清单"/>
|
||||
<l:gentext key="nav-home" text="起始页"/>
|
||||
<l:gentext key="nav-next" text="下一页"/>
|
||||
<l:gentext key="nav-next-sibling" text="快进"/>
|
||||
<l:gentext key="nav-prev" text="上一页"/>
|
||||
<l:gentext key="nav-prev-sibling" text="快退"/>
|
||||
<l:gentext key="nav-up" text="上一级"/>
|
||||
<l:gentext key="nav-toc" text="目录"/>
|
||||
<l:gentext key="Draft" text="草稿"/>
|
||||
<l:gentext key="above" text="以上"/>
|
||||
<l:gentext key="below" text="以下"/>
|
||||
<l:gentext key="sectioncalled" text="一节"/>
|
||||
<l:gentext key="index symbols" text="符号"/>
|
||||
<l:gentext key="lowercase.alpha" text="abcdefghijklmnopqrstuvwxyz"/>
|
||||
<l:gentext key="uppercase.alpha" text="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>
|
||||
<l:gentext key="normalize.sort.input" text="abcdefghijklmnopqrstuvwxyz"/>
|
||||
<l:gentext key="normalize.sort.output" text="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>
|
||||
<l:dingbat key="startquote" text="“"/>
|
||||
<l:dingbat key="endquote" text="”"/>
|
||||
<l:dingbat key="nestedstartquote" text="‘"/>
|
||||
<l:dingbat key="nestedendquote" text="’"/>
|
||||
<l:dingbat key="singlestartquote" text="‘"/>
|
||||
<l:dingbat key="singleendquote" text="’"/>
|
||||
<l:dingbat key="bullet" text="·"/>
|
||||
<l:gentext key="hyphenation-character" text="-"/>
|
||||
<l:gentext key="hyphenation-push-character-count" text="2"/>
|
||||
<l:gentext key="hyphenation-remain-character-count" text="2"/>
|
||||
<l:context name="styles"><l:template name="person-name" text="first-last"/>
|
||||
</l:context>
|
||||
<l:context name="title"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="%t"/>
|
||||
<l:template name="appendix" text="附录 %n. %t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="biblioentry" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliolist" text="%t"/>
|
||||
<l:template name="bibliomixed" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="第 %n 章 %t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="公式 %n. %t"/>
|
||||
<l:template name="example" text="例 %n. %t"/>
|
||||
<l:template name="figure" text="图 %n. %t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="glosslist" text="%t"/>
|
||||
<l:template name="glossentry" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text=""/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="第 %n 部分 %t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="procedure.formal" text="过程 %n. %t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="productionset.formal" text="产品 %n"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="%t"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="%t"/>
|
||||
<l:template name="refentry" text="%t"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsection" text="%t"/>
|
||||
<l:template name="refsect1" text="%t"/>
|
||||
<l:template name="refsect2" text="%t"/>
|
||||
<l:template name="refsect3" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="refsynopsisdivinfo" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="step" text="%t"/>
|
||||
<l:template name="table" text="表 %n. %t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tasksummary" text="%t"/>
|
||||
<l:template name="taskprerequisites" text="%t"/>
|
||||
<l:template name="taskrelated" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text=""/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-unnumbered"><l:template name="appendix" text="%t"/>
|
||||
<l:template name="article/appendix" text="%t"/>
|
||||
<l:template name="bridgehead" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="sect1" text="%t"/>
|
||||
<l:template name="sect2" text="%t"/>
|
||||
<l:template name="sect3" text="%t"/>
|
||||
<l:template name="sect4" text="%t"/>
|
||||
<l:template name="sect5" text="%t"/>
|
||||
<l:template name="section" text="%t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="title-numbered"><l:template name="appendix" text="附录 %n. %t"/>
|
||||
<l:template name="article/appendix" text="%n. %t"/>
|
||||
<l:template name="bridgehead" text="%n. %t"/>
|
||||
<l:template name="chapter" text="第 %n 章 %t"/>
|
||||
<l:template name="part" text="部分 %n. %t"/>
|
||||
<l:template name="sect1" text="%n. %t"/>
|
||||
<l:template name="sect2" text="%n. %t"/>
|
||||
<l:template name="sect3" text="%n. %t"/>
|
||||
<l:template name="sect4" text="%n. %t"/>
|
||||
<l:template name="sect5" text="%n. %t"/>
|
||||
<l:template name="section" text="%n. %t"/>
|
||||
<l:template name="simplesect" text="%t"/>
|
||||
</l:context>
|
||||
<l:context name="subtitle"><l:template name="appendix" text="%s"/>
|
||||
<l:template name="article" text="%s"/>
|
||||
<l:template name="bibliodiv" text="%s"/>
|
||||
<l:template name="biblioentry" text="%s"/>
|
||||
<l:template name="bibliography" text="%s"/>
|
||||
<l:template name="bibliomixed" text="%s"/>
|
||||
<l:template name="bibliomset" text="%s"/>
|
||||
<l:template name="biblioset" text="%s"/>
|
||||
<l:template name="book" text="%s"/>
|
||||
<l:template name="chapter" text="%s"/>
|
||||
<l:template name="colophon" text="%s"/>
|
||||
<l:template name="dedication" text="%s"/>
|
||||
<l:template name="glossary" text="%s"/>
|
||||
<l:template name="glossdiv" text="%s"/>
|
||||
<l:template name="index" text="%s"/>
|
||||
<l:template name="indexdiv" text="%s"/>
|
||||
<l:template name="lot" text="%s"/>
|
||||
<l:template name="part" text="%s"/>
|
||||
<l:template name="partintro" text="%s"/>
|
||||
<l:template name="preface" text="%s"/>
|
||||
<l:template name="refentry" text="%s"/>
|
||||
<l:template name="reference" text="%s"/>
|
||||
<l:template name="refsection" text="%s"/>
|
||||
<l:template name="refsect1" text="%s"/>
|
||||
<l:template name="refsect2" text="%s"/>
|
||||
<l:template name="refsect3" text="%s"/>
|
||||
<l:template name="refsynopsisdiv" text="%s"/>
|
||||
<l:template name="sect1" text="%s"/>
|
||||
<l:template name="sect2" text="%s"/>
|
||||
<l:template name="sect3" text="%s"/>
|
||||
<l:template name="sect4" text="%s"/>
|
||||
<l:template name="sect5" text="%s"/>
|
||||
<l:template name="section" text="%s"/>
|
||||
<l:template name="set" text="%s"/>
|
||||
<l:template name="setindex" text="%s"/>
|
||||
<l:template name="sidebar" text="%s"/>
|
||||
<l:template name="simplesect" text="%s"/>
|
||||
<l:template name="toc" text="%s"/>
|
||||
</l:context>
|
||||
<l:context name="xref"><l:template name="abstract" text="%t"/>
|
||||
<l:template name="answer" text="答: %n"/>
|
||||
<l:template name="appendix" text="%t"/>
|
||||
<l:template name="article" text="%t"/>
|
||||
<l:template name="authorblurb" text="%t"/>
|
||||
<l:template name="bibliodiv" text="%t"/>
|
||||
<l:template name="bibliography" text="%t"/>
|
||||
<l:template name="bibliomset" text="%t"/>
|
||||
<l:template name="biblioset" text="%t"/>
|
||||
<l:template name="blockquote" text="%t"/>
|
||||
<l:template name="book" text="%t"/>
|
||||
<l:template name="calloutlist" text="%t"/>
|
||||
<l:template name="caution" text="%t"/>
|
||||
<l:template name="chapter" text="%t"/>
|
||||
<l:template name="colophon" text="%t"/>
|
||||
<l:template name="constraintdef" text="%t"/>
|
||||
<l:template name="dedication" text="%t"/>
|
||||
<l:template name="equation" text="%t"/>
|
||||
<l:template name="example" text="%t"/>
|
||||
<l:template name="figure" text="%t"/>
|
||||
<l:template name="foil" text="%t"/>
|
||||
<l:template name="foilgroup" text="%t"/>
|
||||
<l:template name="formalpara" text="%t"/>
|
||||
<l:template name="glossary" text="%t"/>
|
||||
<l:template name="glossdiv" text="%t"/>
|
||||
<l:template name="important" text="%t"/>
|
||||
<l:template name="index" text="%t"/>
|
||||
<l:template name="indexdiv" text="%t"/>
|
||||
<l:template name="itemizedlist" text="%t"/>
|
||||
<l:template name="legalnotice" text="%t"/>
|
||||
<l:template name="listitem" text="%n"/>
|
||||
<l:template name="lot" text="%t"/>
|
||||
<l:template name="msg" text="%t"/>
|
||||
<l:template name="msgexplan" text="%t"/>
|
||||
<l:template name="msgmain" text="%t"/>
|
||||
<l:template name="msgrel" text="%t"/>
|
||||
<l:template name="msgset" text="%t"/>
|
||||
<l:template name="msgsub" text="%t"/>
|
||||
<l:template name="note" text="%t"/>
|
||||
<l:template name="orderedlist" text="%t"/>
|
||||
<l:template name="part" text="%t"/>
|
||||
<l:template name="partintro" text="%t"/>
|
||||
<l:template name="preface" text="%t"/>
|
||||
<l:template name="procedure" text="%t"/>
|
||||
<l:template name="productionset" text="%t"/>
|
||||
<l:template name="qandadiv" text="%t"/>
|
||||
<l:template name="qandaentry" text="问: %n"/>
|
||||
<l:template name="qandaset" text="%t"/>
|
||||
<l:template name="question" text="问: %n"/>
|
||||
<l:template name="reference" text="%t"/>
|
||||
<l:template name="refsynopsisdiv" text="%t"/>
|
||||
<l:template name="segmentedlist" text="%t"/>
|
||||
<l:template name="set" text="%t"/>
|
||||
<l:template name="setindex" text="%t"/>
|
||||
<l:template name="sidebar" text="%t"/>
|
||||
<l:template name="table" text="%t"/>
|
||||
<l:template name="task" text="%t"/>
|
||||
<l:template name="tip" text="%t"/>
|
||||
<l:template name="toc" text="%t"/>
|
||||
<l:template name="variablelist" text="%t"/>
|
||||
<l:template name="varlistentry" text="%n"/>
|
||||
<l:template name="warning" text="%t"/>
|
||||
<l:template name="olink.document.citation" text=" in %o"/>
|
||||
<l:template name="olink.page.citation" text=" (page %p)"/>
|
||||
<l:template name="page.citation" text=" [%p]"/>
|
||||
<l:template name="page" text="(第 %p 页)"/>
|
||||
<l:template name="docname" text=" 在 %o"/>
|
||||
<l:template name="docnamelong" text=" 在文档标题 %o"/>
|
||||
<l:template name="pageabbrev" text="(第 %p 页)"/>
|
||||
<l:template name="Page" text="第 %p 页"/>
|
||||
<l:template name="bridgehead" text="“%t”一节"/>
|
||||
<l:template name="refsection" text="“%t”一节"/>
|
||||
<l:template name="refsect1" text="“%t”一节"/>
|
||||
<l:template name="refsect2" text="“%t”一节"/>
|
||||
<l:template name="refsect3" text="“%t”一节"/>
|
||||
<l:template name="sect1" text="“%t”一节"/>
|
||||
<l:template name="sect2" text="“%t”一节"/>
|
||||
<l:template name="sect3" text="“%t”一节"/>
|
||||
<l:template name="sect4" text="“%t”一节"/>
|
||||
<l:template name="sect5" text="“%t”一节"/>
|
||||
<l:template name="section" text="“%t”一节"/>
|
||||
<l:template name="simplesect" text="“%t”一节"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number"><l:template name="answer" text="答: %n"/>
|
||||
<l:template name="appendix" text="附录 %n"/>
|
||||
<l:template name="bridgehead" text="第 %n 节"/>
|
||||
<l:template name="chapter" text="第 %n 章"/>
|
||||
<l:template name="equation" text="公式 %n"/>
|
||||
<l:template name="example" text="例 %n"/>
|
||||
<l:template name="figure" text="图 %n"/>
|
||||
<l:template name="part" text="第 %n 部分"/>
|
||||
<l:template name="procedure" text="过程 %n"/>
|
||||
<l:template name="productionset" text="产品 %n"/>
|
||||
<l:template name="qandadiv" text="质保 %n"/>
|
||||
<l:template name="qandaentry" text="问: %n"/>
|
||||
<l:template name="question" text="问: %n"/>
|
||||
<l:template name="sect1" text="第 %n 节"/>
|
||||
<l:template name="sect2" text="第 %n 节"/>
|
||||
<l:template name="sect3" text="第 %n 节"/>
|
||||
<l:template name="sect4" text="第 %n 节"/>
|
||||
<l:template name="sect5" text="第 %n 节"/>
|
||||
<l:template name="section" text="第 %n 节"/>
|
||||
<l:template name="table" text="表 %n"/>
|
||||
</l:context>
|
||||
<l:context name="xref-number-and-title"><l:template name="appendix" text="附录 %n, %t"/>
|
||||
<l:template name="bridgehead" text="第 %n 节 “%t”"/>
|
||||
<l:template name="chapter" text="第 %n 章 %t"/>
|
||||
<l:template name="equation" text="公式 %n “%t”"/>
|
||||
<l:template name="example" text="例 %n “%t”"/>
|
||||
<l:template name="figure" text="图 %n “%t”"/>
|
||||
<l:template name="part" text="第 %n 部分 “%t”"/>
|
||||
<l:template name="procedure" text="过程 %n, “%t”"/>
|
||||
<l:template name="productionset" text="产品 %n, “%t”"/>
|
||||
<l:template name="qandadiv" text="质保 %n, “%t”"/>
|
||||
<l:template name="refsect1" text="“%t”一节"/>
|
||||
<l:template name="refsect2" text="“%t”一节"/>
|
||||
<l:template name="refsect3" text="“%t”一节"/>
|
||||
<l:template name="refsection" text="“%t”一节"/>
|
||||
<l:template name="sect1" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect2" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect3" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect4" text="第 %n 节 “%t”"/>
|
||||
<l:template name="sect5" text="第 %n 节 “%t”"/>
|
||||
<l:template name="section" text="第 %n 节 “%t”"/>
|
||||
<l:template name="simplesect" text="“%t”一节"/>
|
||||
<l:template name="table" text="表 %n “%t”"/>
|
||||
</l:context>
|
||||
<l:context name="authorgroup"><l:template name="sep" text="、"/>
|
||||
<l:template name="sep2" text="和"/>
|
||||
<l:template name="seplast" text="和"/>
|
||||
</l:context>
|
||||
<l:context name="glossary"><l:template name="see" text="见%t"/>
|
||||
<l:template name="seealso" text="参见%t"/>
|
||||
</l:context>
|
||||
<l:context name="msgset"><l:template name="MsgAud" text="受众:"/>
|
||||
<l:template name="MsgLevel" text="级别:"/>
|
||||
<l:template name="MsgOrig" text="出处:"/>
|
||||
</l:context>
|
||||
<l:context name="datetime"><l:template name="format" text="Y-m-d"/>
|
||||
</l:context>
|
||||
<l:context name="termdef"><l:template name="prefix" text="[定义:"/>
|
||||
<l:template name="suffix" text="]"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-full"><l:template name="January" text="一月"/>
|
||||
<l:template name="February" text="二月"/>
|
||||
<l:template name="March" text="三月"/>
|
||||
<l:template name="April" text="四月"/>
|
||||
<l:template name="May" text="五月"/>
|
||||
<l:template name="June" text="六月"/>
|
||||
<l:template name="July" text="七月"/>
|
||||
<l:template name="August" text="八月"/>
|
||||
<l:template name="September" text="九月"/>
|
||||
<l:template name="October" text="十月"/>
|
||||
<l:template name="November" text="十一月"/>
|
||||
<l:template name="December" text="十二月"/>
|
||||
<l:template name="Monday" text="星期一"/>
|
||||
<l:template name="Tuesday" text="星期二"/>
|
||||
<l:template name="Wednesday" text="星期三"/>
|
||||
<l:template name="Thursday" text="星期四"/>
|
||||
<l:template name="Friday" text="星期五"/>
|
||||
<l:template name="Saturday" text="星期六"/>
|
||||
<l:template name="Sunday" text="星期日"/>
|
||||
</l:context>
|
||||
<l:context name="datetime-abbrev"><l:template name="Jan" text="一月"/>
|
||||
<l:template name="Feb" text="二月"/>
|
||||
<l:template name="Mar" text="三月"/>
|
||||
<l:template name="Apr" text="四月"/>
|
||||
<l:template name="May" text="五月"/>
|
||||
<l:template name="Jun" text="六月"/>
|
||||
<l:template name="Jul" text="七月"/>
|
||||
<l:template name="Aug" text="八月"/>
|
||||
<l:template name="Sep" text="九月"/>
|
||||
<l:template name="Oct" text="十月"/>
|
||||
<l:template name="Nov" text="十一月"/>
|
||||
<l:template name="Dec" text="十二月"/>
|
||||
<l:template name="Mon" text="周一"/>
|
||||
<l:template name="Tue" text="周二"/>
|
||||
<l:template name="Wed" text="周三"/>
|
||||
<l:template name="Thu" text="周四"/>
|
||||
<l:template name="Fri" text="周五"/>
|
||||
<l:template name="Sat" text="周六"/>
|
||||
<l:template name="Sun" text="周日"/>
|
||||
</l:context>
|
||||
<l:context name="htmlhelp"><l:template name="langcode" text="0x0804 Chinese (CHINA)"/>
|
||||
</l:context>
|
||||
<l:context name="index"><l:template name="term-separator" text=","/>
|
||||
<l:template name="number-separator" text=","/>
|
||||
<l:template name="range-separator" text="-"/>
|
||||
</l:context>
|
||||
<l:context name="iso690"><l:template name="lastfirst.sep" text=","/>
|
||||
<l:template name="alt.person.two.sep" text=" 和 "/>
|
||||
<l:template name="alt.person.last.sep" text=" 和 "/>
|
||||
<l:template name="alt.person.more.sep" text=","/>
|
||||
<l:template name="primary.editor" text="(主编)"/>
|
||||
<l:template name="primary.many" text="等。"/>
|
||||
<l:template name="primary.sep" text="。"/>
|
||||
<l:template name="submaintitle.sep" text=":"/>
|
||||
<l:template name="title.sep" text="。"/>
|
||||
<l:template name="othertitle.sep" text=","/>
|
||||
<l:template name="medium1" text=" ["/>
|
||||
<l:template name="medium2" text="]"/>
|
||||
<l:template name="secondary.person.sep" text=";"/>
|
||||
<l:template name="secondary.sep" text="。"/>
|
||||
<l:template name="respons.sep" text="。"/>
|
||||
<l:template name="edition.sep" text="。"/>
|
||||
<l:template name="edition.serial.sep" text=","/>
|
||||
<l:template name="issuing.range" text="-"/>
|
||||
<l:template name="issuing.div" text=","/>
|
||||
<l:template name="issuing.sep" text="。"/>
|
||||
<l:template name="partnr.sep" text="。"/>
|
||||
<l:template name="placepubl.sep" text=":"/>
|
||||
<l:template name="publyear.sep" text=","/>
|
||||
<l:template name="pubinfo.sep" text="。"/>
|
||||
<l:template name="spec.pubinfo.sep" text=","/>
|
||||
<l:template name="upd.sep" text=","/>
|
||||
<l:template name="datecit1" text=" [cited "/>
|
||||
<l:template name="datecit2" text="]"/>
|
||||
<l:template name="extent.sep" text="。"/>
|
||||
<l:template name="locs.sep" text=","/>
|
||||
<l:template name="location.sep" text="。"/>
|
||||
<l:template name="serie.sep" text="。"/>
|
||||
<l:template name="notice.sep" text="。"/>
|
||||
<l:template name="access" text="可用"/>
|
||||
<l:template name="acctoo" text="也可用"/>
|
||||
<l:template name="onwww" text="从万维网"/>
|
||||
<l:template name="oninet" text="从互联网"/>
|
||||
<l:template name="access.end" text=": "/>
|
||||
<l:template name="link1" text="<"/>
|
||||
<l:template name="link2" text=">"/>
|
||||
<l:template name="access.sep" text=". "/>
|
||||
<l:template name="isbn" text="ISBN "/>
|
||||
<l:template name="issn" text="ISSN "/>
|
||||
<l:template name="stdnum.sep" text="。"/>
|
||||
<l:template name="patcountry.sep" text="。"/>
|
||||
<l:template name="pattype.sep" text=","/>
|
||||
<l:template name="patnum.sep" text="。"/>
|
||||
<l:template name="patdate.sep" text="。"/>
|
||||
</l:context><l:letters><l:l i="-1"/>
|
||||
<l:l i="0">符号</l:l>
|
||||
<l:l i="1">A</l:l>
|
||||
<l:l i="1">a</l:l>
|
||||
<l:l i="2">B</l:l>
|
||||
<l:l i="2">b</l:l>
|
||||
<l:l i="3">C</l:l>
|
||||
<l:l i="3">c</l:l>
|
||||
<l:l i="4">D</l:l>
|
||||
<l:l i="4">d</l:l>
|
||||
<l:l i="5">E</l:l>
|
||||
<l:l i="5">e</l:l>
|
||||
<l:l i="6">F</l:l>
|
||||
<l:l i="6">f</l:l>
|
||||
<l:l i="7">G</l:l>
|
||||
<l:l i="7">g</l:l>
|
||||
<l:l i="8">H</l:l>
|
||||
<l:l i="8">h</l:l>
|
||||
<l:l i="9">I</l:l>
|
||||
<l:l i="9">i</l:l>
|
||||
<l:l i="10">J</l:l>
|
||||
<l:l i="10">j</l:l>
|
||||
<l:l i="11">K</l:l>
|
||||
<l:l i="11">k</l:l>
|
||||
<l:l i="12">L</l:l>
|
||||
<l:l i="12">l</l:l>
|
||||
<l:l i="13">M</l:l>
|
||||
<l:l i="13">m</l:l>
|
||||
<l:l i="14">N</l:l>
|
||||
<l:l i="14">n</l:l>
|
||||
<l:l i="15">O</l:l>
|
||||
<l:l i="15">o</l:l>
|
||||
<l:l i="16">P</l:l>
|
||||
<l:l i="16">p</l:l>
|
||||
<l:l i="17">Q</l:l>
|
||||
<l:l i="17">q</l:l>
|
||||
<l:l i="18">R</l:l>
|
||||
<l:l i="18">r</l:l>
|
||||
<l:l i="19">S</l:l>
|
||||
<l:l i="19">s</l:l>
|
||||
<l:l i="20">T</l:l>
|
||||
<l:l i="20">t</l:l>
|
||||
<l:l i="21">U</l:l>
|
||||
<l:l i="21">u</l:l>
|
||||
<l:l i="22">V</l:l>
|
||||
<l:l i="22">v</l:l>
|
||||
<l:l i="23">W</l:l>
|
||||
<l:l i="23">w</l:l>
|
||||
<l:l i="24">X</l:l>
|
||||
<l:l i="24">x</l:l>
|
||||
<l:l i="25">Y</l:l>
|
||||
<l:l i="25">y</l:l>
|
||||
<l:l i="26">Z</l:l>
|
||||
<l:l i="26">z</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
1223
doc/reference/lib/docbook-xsl-snapshot/common/zh_tw.xml
Normal file
1223
doc/reference/lib/docbook-xsl-snapshot/common/zh_tw.xml
Normal file
File diff suppressed because it is too large
Load Diff
130
doc/reference/lib/docbook-xsl-snapshot/fo/admon.xsl
Normal file
130
doc/reference/lib/docbook-xsl-snapshot/fo/admon.xsl
Normal file
@@ -0,0 +1,130 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: admon.xsl 7248 2007-08-18 06:50:21Z mzjn $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:template match="note|important|warning|caution|tip">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$admon.graphics != 0">
|
||||
<xsl:call-template name="graphical.admonition"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="nongraphical.admonition"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="*" mode="admon.graphic.width">
|
||||
<xsl:param name="node" select="."/>
|
||||
<xsl:text>36pt</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="admon.graphic">
|
||||
<xsl:param name="node" select="."/>
|
||||
|
||||
<xsl:variable name="filename">
|
||||
<xsl:value-of select="$admon.graphics.path"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="local-name($node)='note'">note</xsl:when>
|
||||
<xsl:when test="local-name($node)='warning'">warning</xsl:when>
|
||||
<xsl:when test="local-name($node)='caution'">caution</xsl:when>
|
||||
<xsl:when test="local-name($node)='tip'">tip</xsl:when>
|
||||
<xsl:when test="local-name($node)='important'">important</xsl:when>
|
||||
<xsl:otherwise>note</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:value-of select="$admon.graphics.extension"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$passivetex.extensions != 0
|
||||
or $fop.extensions != 0
|
||||
or $arbortext.extensions != 0">
|
||||
<xsl:value-of select="$filename"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:text>url(</xsl:text>
|
||||
<xsl:value-of select="$filename"/>
|
||||
<xsl:text>)</xsl:text>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="graphical.admonition">
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="graphic.width">
|
||||
<xsl:apply-templates select="." mode="admon.graphic.width"/>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:block id="{$id}"
|
||||
xsl:use-attribute-sets="graphical.admonition.properties">
|
||||
<fo:list-block provisional-distance-between-starts="{$graphic.width} + 18pt"
|
||||
provisional-label-separation="18pt">
|
||||
<fo:list-item>
|
||||
<fo:list-item-label end-indent="label-end()">
|
||||
<fo:block>
|
||||
<fo:external-graphic width="auto" height="auto"
|
||||
content-width="{$graphic.width}" >
|
||||
<xsl:attribute name="src">
|
||||
<xsl:call-template name="admon.graphic"/>
|
||||
</xsl:attribute>
|
||||
</fo:external-graphic>
|
||||
</fo:block>
|
||||
</fo:list-item-label>
|
||||
<fo:list-item-body start-indent="body-start()">
|
||||
<xsl:if test="$admon.textlabel != 0 or title or info/title">
|
||||
<fo:block xsl:use-attribute-sets="admonition.title.properties">
|
||||
<xsl:apply-templates select="." mode="object.title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="1"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
<fo:block xsl:use-attribute-sets="admonition.properties">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</fo:list-item-body>
|
||||
</fo:list-item>
|
||||
</fo:list-block>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="nongraphical.admonition">
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:block id="{$id}"
|
||||
xsl:use-attribute-sets="nongraphical.admonition.properties">
|
||||
<xsl:if test="$admon.textlabel != 0 or title or info/title">
|
||||
<fo:block keep-with-next.within-column='always'
|
||||
xsl:use-attribute-sets="admonition.title.properties">
|
||||
<xsl:apply-templates select="." mode="object.title.markup">
|
||||
<xsl:with-param name="allow-anchors" select="1"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
|
||||
<fo:block xsl:use-attribute-sets="admonition.properties">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="note/title"></xsl:template>
|
||||
<xsl:template match="important/title"></xsl:template>
|
||||
<xsl:template match="warning/title"></xsl:template>
|
||||
<xsl:template match="caution/title"></xsl:template>
|
||||
<xsl:template match="tip/title"></xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
18
doc/reference/lib/docbook-xsl-snapshot/fo/annotations.xsl
Normal file
18
doc/reference/lib/docbook-xsl-snapshot/fo/annotations.xsl
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: annotations.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:template match="annotation"/>
|
||||
|
||||
</xsl:stylesheet>
|
||||
178
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx-kimber.xsl
Normal file
178
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx-kimber.xsl
Normal file
@@ -0,0 +1,178 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas) or @sortas = ""]))'>
|
||||
<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas) or @sortas = ""]))'>
|
||||
<!ENTITY tertiary 'normalize-space(concat(tertiary/@sortas, tertiary[not(@sortas) or @sortas = ""]))'>
|
||||
|
||||
<!ENTITY sep '" "'>
|
||||
<!-- Documents using the kimber index method must have a lang attribute -->
|
||||
<!-- Only one of these should be present in the entity -->
|
||||
<!ENTITY lang 'concat(/*/@lang, /*/@xml:lang)'>
|
||||
|
||||
<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node())
|
||||
and ($role = @role or $type = @type or
|
||||
(string-length($role) = 0 and string-length($type) = 0))'>
|
||||
]>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
|
||||
exclude-result-prefixes="k"
|
||||
version="1.0">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-kimber.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- The "kimber" method contributed by Eliot Kimber of Innodata Isogen. -->
|
||||
<!-- ==================================================================== -->
|
||||
<!-- *** THIS MODULE ONLY WORKS WITH SAXON 6 OR SAXON 8 *** -->
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:include href="../common/autoidx-kimber.xsl"/>
|
||||
|
||||
<!-- Java sort apparently works only on lang part, not country -->
|
||||
<xsl:param name="sort.lang">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains(⟨, '-')">
|
||||
<xsl:value-of select="substring-before(⟨, '-')"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains(⟨, '_')">
|
||||
<xsl:value-of select="substring-before(⟨, '_')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="⟨"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:template name="generate-kimber-index">
|
||||
<xsl:param name="scope" select="NOTANODE"/>
|
||||
|
||||
<xsl:variable name="vendor" select="system-property('xsl:vendor')"/>
|
||||
<xsl:if test="not(contains($vendor, 'SAXON '))">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kimber' index method requires the </xsl:text>
|
||||
<xsl:text>Saxon version 6 or 8 XSLT processor.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="not(function-available('k:getIndexGroupKey'))">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kimber' index method requires the </xsl:text>
|
||||
<xsl:text>Innodata Isogen 
Java extensions for </xsl:text>
|
||||
<xsl:text>internationalized indexes. 
Install those </xsl:text>
|
||||
<xsl:text>extensions, or use a different index method.
</xsl:text>
|
||||
<xsl:text>For more information, see:
</xsl:text>
|
||||
<xsl:text>http://www.innodata-isogen.com/knowledge_center/tools_downloads/i18nsupport</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="role">
|
||||
<xsl:if test="$index.on.role != 0">
|
||||
<xsl:value-of select="@role"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="type">
|
||||
<xsl:if test="$index.on.type != 0">
|
||||
<xsl:value-of select="@type"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="terms"
|
||||
select="//indexterm[count(.|key('k-group',
|
||||
k:getIndexGroupKey(⟨, &primary;))
|
||||
[&scope;][1]) = 1
|
||||
and not(@class = 'endofrange')]"/>
|
||||
|
||||
<xsl:variable name="alphabetical"
|
||||
select="$terms[not(starts-with(
|
||||
k:getIndexGroupKey(⟨, &primary;),
|
||||
'#NUMERIC'
|
||||
))]"/>
|
||||
|
||||
<xsl:variable name="others"
|
||||
select="$terms[starts-with(
|
||||
k:getIndexGroupKey(⟨, &primary;),
|
||||
'#NUMERIC'
|
||||
)]"/>
|
||||
|
||||
<fo:block>
|
||||
<xsl:if test="$others">
|
||||
<xsl:call-template name="indexdiv.title">
|
||||
<xsl:with-param name="titlecontent">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'index symbols'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="$others"
|
||||
mode="index-symbol-div">
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
<xsl:with-param name="role" select="$role"/>
|
||||
<xsl:with-param name="type" select="$type"/>
|
||||
<xsl:sort lang="{$sort.lang}"
|
||||
select="k:getIndexGroupSortKey(⟨,
|
||||
k:getIndexGroupKey(⟨, &primary;))"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:apply-templates select="$alphabetical"
|
||||
mode="index-div-kimber">
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
<xsl:with-param name="role" select="$role"/>
|
||||
<xsl:with-param name="type" select="$type"/>
|
||||
<xsl:sort lang="{$sort.lang}"
|
||||
select="k:getIndexGroupSortKey(⟨,
|
||||
k:getIndexGroupKey(⟨, &primary;))"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="indexterm" mode="index-div-kimber">
|
||||
<xsl:param name="scope" select="."/>
|
||||
<xsl:param name="role" select="''"/>
|
||||
<xsl:param name="type" select="''"/>
|
||||
|
||||
<xsl:variable name="key"
|
||||
select="k:getIndexGroupKey(⟨, &primary;)"/>
|
||||
|
||||
<xsl:variable name="label"
|
||||
select="k:getIndexGroupLabel(⟨, $key)"/>
|
||||
|
||||
<xsl:if test="key('k-group', $key)[&scope;]
|
||||
[count(.|key('primary', &primary;)[&scope;][1]) = 1]">
|
||||
<fo:block>
|
||||
<xsl:call-template name="indexdiv.title">
|
||||
<xsl:with-param name="titlecontent">
|
||||
<xsl:value-of select="$label"/>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="key('k-group', $key)[&scope;]
|
||||
[count(.|key('primary', &primary;)[&scope;]
|
||||
[1])=1]"
|
||||
mode="index-primary">
|
||||
<xsl:sort select="&primary;" lang="{$sort.lang}"/>
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
<xsl:with-param name="role" select="$role"/>
|
||||
<xsl:with-param name="type" select="$type"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
150
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx-kosek.xsl
Normal file
150
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx-kosek.xsl
Normal file
@@ -0,0 +1,150 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
|
||||
<!ENTITY primary 'normalize-space(concat(primary/@sortas, primary[not(@sortas) or @sortas = ""]))'>
|
||||
<!ENTITY secondary 'normalize-space(concat(secondary/@sortas, secondary[not(@sortas) or @sortas = ""]))'>
|
||||
<!ENTITY tertiary 'normalize-space(concat(tertiary/@sortas, tertiary[not(@sortas) or @sortas = ""]))'>
|
||||
|
||||
<!ENTITY sep '" "'>
|
||||
<!-- Documents using the kimber index method must have a lang attribute -->
|
||||
<!-- Only one of these should be present in the entity -->
|
||||
|
||||
<!ENTITY scope 'count(ancestor::node()|$scope) = count(ancestor::node())
|
||||
and ($role = @role or $type = @type or
|
||||
(string-length($role) = 0 and string-length($type) = 0))'>
|
||||
]>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
xmlns:rx="http://www.renderx.com/XSL/Extensions"
|
||||
xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions"
|
||||
xmlns:i="urn:cz-kosek:functions:index"
|
||||
xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"
|
||||
xmlns:func="http://exslt.org/functions"
|
||||
xmlns:exslt="http://exslt.org/common"
|
||||
extension-element-prefixes="func exslt"
|
||||
exclude-result-prefixes="func exslt i l"
|
||||
version="1.0">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-kosek.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- The "kosek" method contributed by Jirka Kosek. -->
|
||||
|
||||
<xsl:include href="../common/autoidx-kosek.xsl"/>
|
||||
|
||||
<xsl:template name="generate-kosek-index">
|
||||
<xsl:param name="scope" select="NOTANODE"/>
|
||||
|
||||
<xsl:variable name="vendor" select="system-property('xsl:vendor')"/>
|
||||
<xsl:if test="contains($vendor, 'libxslt')">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kosek' index method does not </xsl:text>
|
||||
<xsl:text>work with the xsltproc XSLT processor.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="contains($vendor, 'Saxonica')">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kosek' index method does not </xsl:text>
|
||||
<xsl:text>work with the Saxon 8 XSLT processor.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
|
||||
<xsl:if test="not(function-available('exslt:node-set') or
|
||||
function-available('exslt:nodeSet'))">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kosek' index method requires the </xsl:text>
|
||||
<xsl:text>exslt:node-set() function. Use a processor that </xsl:text>
|
||||
<xsl:text>has it, or use a different index method.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="not(function-available('i:group-index'))">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ERROR: the 'kosek' index method requires the
</xsl:text>
|
||||
<xsl:text>index extension functions be imported:
</xsl:text>
|
||||
<xsl:text> xsl:import href="common/autoidx-kosek.xsl"</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="role">
|
||||
<xsl:if test="$index.on.role != 0">
|
||||
<xsl:value-of select="@role"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="type">
|
||||
<xsl:if test="$index.on.type != 0">
|
||||
<xsl:value-of select="@type"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="terms"
|
||||
select="//indexterm[count(.|key('group-code',
|
||||
i:group-index(&primary;))
|
||||
[&scope;][1]) = 1
|
||||
and not(@class = 'endofrange')]"/>
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="$terms" mode="index-div-kosek">
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
<xsl:with-param name="role" select="$role"/>
|
||||
<xsl:with-param name="type" select="$type"/>
|
||||
<xsl:sort select="i:group-index(&primary;)" data-type="number"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="indexterm" mode="index-div-kosek">
|
||||
<xsl:param name="scope" select="."/>
|
||||
<xsl:param name="role" select="''"/>
|
||||
<xsl:param name="type" select="''"/>
|
||||
|
||||
<xsl:variable name="key"
|
||||
select="i:group-index(&primary;)"/>
|
||||
|
||||
<xsl:variable name="lang">
|
||||
<xsl:call-template name="l10n.language"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="key('group-code', $key)[&scope;]
|
||||
[count(.|key('primary', &primary;)[&scope;][1]) = 1]">
|
||||
<fo:block>
|
||||
<xsl:call-template name="indexdiv.title">
|
||||
<xsl:with-param name="titlecontent">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$key = 0">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'index symbols'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="i:group-letter($key)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="key('group-code', $key)[&scope;]
|
||||
[count(.|key('primary', &primary;)
|
||||
[&scope;][1])=1]"
|
||||
mode="index-primary">
|
||||
<xsl:sort select="&primary;" lang="{$lang}"/>
|
||||
<xsl:with-param name="scope" select="$scope"/>
|
||||
<xsl:with-param name="role" select="$role"/>
|
||||
<xsl:with-param name="type" select="$type"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
20
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx-ng.xsl
Normal file
20
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx-ng.xsl
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
version="1.0">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-ng.xsl 6910 2007-06-28 23:23:30Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- You should have this directly in your customization file. -->
|
||||
<!-- This file is there only to retain backward compatibility. -->
|
||||
<xsl:import href="autoidx-kosek.xsl"/>
|
||||
<xsl:param name="index.method">kosek</xsl:param>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1310
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx.xsl
Normal file
1310
doc/reference/lib/docbook-xsl-snapshot/fo/autoidx.xsl
Normal file
File diff suppressed because it is too large
Load Diff
892
doc/reference/lib/docbook-xsl-snapshot/fo/autotoc.xsl
Normal file
892
doc/reference/lib/docbook-xsl-snapshot/fo/autotoc.xsl
Normal file
@@ -0,0 +1,892 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autotoc.xsl 8040 2008-06-04 15:56:28Z mzjn $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="set.toc">
|
||||
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nodes" select="book|set|setindex"/>
|
||||
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="toc...{$id}"
|
||||
xsl:use-attribute-sets="toc.margin.properties">
|
||||
<xsl:if test="$axf.extensions != 0">
|
||||
<xsl:attribute name="axf:outline-level">1</xsl:attribute>
|
||||
<xsl:attribute name="axf:outline-expand">false</xsl:attribute>
|
||||
<xsl:attribute name="axf:outline-title">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'TableofContents'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:call-template name="table.of.contents.titlepage"/>
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="division.toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
<xsl:param name="toc.title.p" select="true()"/>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nodes"
|
||||
select="$toc-context/part
|
||||
|$toc-context/reference
|
||||
|$toc-context/preface
|
||||
|$toc-context/chapter
|
||||
|$toc-context/appendix
|
||||
|$toc-context/article
|
||||
|$toc-context/bibliography
|
||||
|$toc-context/glossary
|
||||
|$toc-context/index"/>
|
||||
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="toc...{$cid}"
|
||||
xsl:use-attribute-sets="toc.margin.properties">
|
||||
<xsl:if test="$axf.extensions != 0">
|
||||
<xsl:attribute name="axf:outline-level">1</xsl:attribute>
|
||||
<xsl:attribute name="axf:outline-expand">false</xsl:attribute>
|
||||
<xsl:attribute name="axf:outline-title">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'TableofContents'"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:if test="$toc.title.p">
|
||||
<xsl:call-template name="table.of.contents.titlepage"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="component.toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
<xsl:param name="toc.title.p" select="true()"/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nodes" select="section|sect1|refentry
|
||||
|article|bibliography|glossary
|
||||
|qandaset[$qanda.in.toc != 0]
|
||||
|appendix|index"/>
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="toc...{$id}"
|
||||
xsl:use-attribute-sets="toc.margin.properties">
|
||||
<xsl:if test="$toc.title.p">
|
||||
<xsl:call-template name="table.of.contents.titlepage"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="component.toc.separator">
|
||||
<!-- Customize to output something between
|
||||
component.toc and first output -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="section.toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
<xsl:param name="toc.title.p" select="true()"/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nodes"
|
||||
select="section|sect1|sect2|sect3|sect4|sect5|refentry
|
||||
|qandaset[$qanda.in.toc != 0]
|
||||
|bridgehead[$bridgehead.in.toc != 0]"/>
|
||||
|
||||
<xsl:variable name="level">
|
||||
<xsl:call-template name="section.level"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="toc...{$id}"
|
||||
xsl:use-attribute-sets="toc.margin.properties">
|
||||
|
||||
<xsl:if test="$toc.title.p">
|
||||
<xsl:call-template name="section.heading">
|
||||
<xsl:with-param name="level" select="$level + 1"/>
|
||||
<xsl:with-param name="title">
|
||||
<fo:block space-after="0.5em">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'TableofContents'"/>
|
||||
</xsl:call-template>
|
||||
</fo:block>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="section.toc.separator">
|
||||
<!-- Customize to output something between
|
||||
section.toc and first output -->
|
||||
</xsl:template>
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="toc.line">
|
||||
<xsl:param name="toc-context" select="NOTANODE"/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="label">
|
||||
<xsl:apply-templates select="." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:block xsl:use-attribute-sets="toc.line.properties">
|
||||
<fo:inline keep-with-next.within-line="always">
|
||||
<fo:basic-link internal-destination="{$id}">
|
||||
<xsl:if test="$label != ''">
|
||||
<xsl:copy-of select="$label"/>
|
||||
<xsl:value-of select="$autotoc.label.separator"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="." mode="titleabbrev.markup"/>
|
||||
</fo:basic-link>
|
||||
</fo:inline>
|
||||
<fo:inline keep-together.within-line="always">
|
||||
<xsl:text> </xsl:text>
|
||||
<fo:leader leader-pattern="dots"
|
||||
leader-pattern-width="3pt"
|
||||
leader-alignment="reference-area"
|
||||
keep-with-next.within-line="always"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<fo:basic-link internal-destination="{$id}">
|
||||
<fo:page-number-citation ref-id="{$id}"/>
|
||||
</fo:basic-link>
|
||||
</fo:inline>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<xsl:template name="qandaset.toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
<xsl:param name="toc.title.p" select="true()"/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="nodes" select="qandadiv|qandaentry"/>
|
||||
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="toc...{$id}"
|
||||
xsl:use-attribute-sets="toc.margin.properties">
|
||||
<xsl:if test="$toc.title.p">
|
||||
<xsl:call-template name="table.of.contents.titlepage"/>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="qandaset.toc.separator">
|
||||
<!-- Customize to output something between
|
||||
qandaset.toc and first output -->
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandadiv" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="nodes" select="qandadiv|qandaentry"/>
|
||||
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="qandaentry" mode="toc">
|
||||
<xsl:apply-templates select="question" mode="toc"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="question" mode="toc">
|
||||
<xsl:variable name="firstchunk">
|
||||
<xsl:apply-templates select="(*[local-name(.)!='label'])[1]/node()"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="deflabel">
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor-or-self::*[@defaultlabel]">
|
||||
<xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
|
||||
/@defaultlabel"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$qanda.defaultlabel"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="label">
|
||||
<xsl:apply-templates select="." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:block xsl:use-attribute-sets="toc.line.properties"
|
||||
margin-left="3em"
|
||||
text-indent="-3em"
|
||||
end-indent="{$toc.indent.width}pt"
|
||||
last-line-end-indent="-{$toc.indent.width}pt">
|
||||
<fo:inline keep-with-next.within-line="always">
|
||||
<fo:basic-link internal-destination="{$id}">
|
||||
<xsl:if test="$label != ''">
|
||||
<xsl:copy-of select="$label"/>
|
||||
<xsl:if test="$deflabel = 'number' and not(label)">
|
||||
<xsl:value-of select="$autotoc.label.separator"/>
|
||||
</xsl:if>
|
||||
<xsl:text> </xsl:text>
|
||||
</xsl:if>
|
||||
<xsl:copy-of select="$firstchunk"/>
|
||||
</fo:basic-link>
|
||||
</fo:inline>
|
||||
<fo:inline keep-together.within-line="always">
|
||||
<xsl:text> </xsl:text>
|
||||
<fo:leader leader-pattern="dots"
|
||||
leader-pattern-width="3pt"
|
||||
leader-alignment="reference-area"
|
||||
keep-with-next.within-line="always"/>
|
||||
<xsl:text> </xsl:text>
|
||||
<fo:basic-link internal-destination="{$id}">
|
||||
<fo:page-number-citation ref-id="{$id}"/>
|
||||
</fo:basic-link>
|
||||
</fo:inline>
|
||||
</fo:block>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="book|setindex" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="nodes" select="glossary|bibliography|preface|chapter
|
||||
|reference|part|article|appendix|index"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 0
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and $nodes">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="set" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="nodes" select="set|book|setindex"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 0
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and $nodes">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="part" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="nodes" select="chapter|appendix|preface|reference|
|
||||
refentry|article|index|glossary|
|
||||
bibliography"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 0
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and $nodes">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="reference" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 0
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and refentry">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="refentry" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="refentry" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="preface|chapter|appendix|article"
|
||||
mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="nodes" select="section|sect1
|
||||
|qandaset[$qanda.in.toc != 0]
|
||||
|simplesect[$simplesect.in.toc != 0]
|
||||
|refentry|appendix"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 0
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and $nodes">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect1" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 1
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and sect2">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent"/>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="sect2|qandaset[$qanda.in.toc != 0]"
|
||||
mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect2" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="reldepth"
|
||||
select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 2
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and sect3">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent">
|
||||
<xsl:with-param name="reldepth" select="$reldepth"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="sect3|qandaset[$qanda.in.toc != 0]"
|
||||
mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect3" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="reldepth"
|
||||
select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 3
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and sect4">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent">
|
||||
<xsl:with-param name="reldepth" select="$reldepth"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="sect4|qandaset[$qanda.in.toc != 0]"
|
||||
mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect4" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:variable name="reldepth"
|
||||
select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth > 4
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and sect5">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent">
|
||||
<xsl:with-param name="reldepth" select="$reldepth"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="sect5|qandaset[$qanda.in.toc != 0]"
|
||||
mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sect5|simplesect" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="set.toc.indent">
|
||||
<xsl:param name="reldepth"/>
|
||||
|
||||
<xsl:variable name="depth">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$reldepth != ''">
|
||||
<xsl:value-of select="$reldepth"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="count(ancestor::*)"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$fop.extensions != 0 or $passivetex.extensions != 0">
|
||||
<xsl:value-of select="concat($depth*$toc.indent.width, 'pt')"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="concat($toc.indent.width, 'pt')"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<xsl:template match="section" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="depth" select="count(ancestor::section) + 1"/>
|
||||
<xsl:variable name="reldepth"
|
||||
select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth >= $depth">
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:if test="$toc.section.depth > $depth
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and section">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent">
|
||||
<xsl:with-param name="reldepth" select="$reldepth"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="section|qandaset[$qanda.in.toc != 0]"
|
||||
mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="bibliography|glossary"
|
||||
mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="index" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:if test="* or $generate.index != 0">
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="title" mode="toc">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="list.of.titles">
|
||||
<xsl:param name="titles" select="'table'"/>
|
||||
<xsl:param name="nodes" select=".//table"/>
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:if test="$nodes">
|
||||
<fo:block id="lot...{$titles}...{$id}">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$titles='table'">
|
||||
<xsl:call-template name="list.of.tables.titlepage"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$titles='figure'">
|
||||
<xsl:call-template name="list.of.figures.titlepage"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$titles='equation'">
|
||||
<xsl:call-template name="list.of.equations.titlepage"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$titles='example'">
|
||||
<xsl:call-template name="list.of.examples.titlepage"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$titles='procedure'">
|
||||
<xsl:call-template name="list.of.procedures.titlepage"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="list.of.unknowns.titlepage"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:apply-templates select="$nodes" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="figure|table|example|equation|procedure" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- qandaset handled like a section when qanda.in.toc is set -->
|
||||
<xsl:template match="qandaset" mode="toc">
|
||||
<xsl:param name="toc-context" select="."/>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="cid">
|
||||
<xsl:call-template name="object.id">
|
||||
<xsl:with-param name="object" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="depth" select="count(ancestor::section) + 1"/>
|
||||
<xsl:variable name="reldepth"
|
||||
select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:variable name="depth.from.context" select="count(ancestor::*)-count($toc-context/ancestor::*)"/>
|
||||
|
||||
<xsl:if test="$toc.section.depth >= $depth">
|
||||
<xsl:call-template name="toc.line">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:call-template>
|
||||
|
||||
<xsl:if test="$toc.section.depth > $depth
|
||||
and $toc.max.depth > $depth.from.context
|
||||
and (child::qandadiv or child::qandaentry)">
|
||||
<fo:block id="toc.{$cid}.{$id}">
|
||||
<xsl:attribute name="margin-left">
|
||||
<xsl:call-template name="set.toc.indent">
|
||||
<xsl:with-param name="reldepth" select="$reldepth"/>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
|
||||
<xsl:apply-templates select="qandadiv|qandaentry" mode="toc">
|
||||
<xsl:with-param name="toc-context" select="$toc-context"/>
|
||||
</xsl:apply-templates>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
110
doc/reference/lib/docbook-xsl-snapshot/fo/axf.xsl
Normal file
110
doc/reference/lib/docbook-xsl-snapshot/fo/axf.xsl
Normal file
@@ -0,0 +1,110 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: axf.xsl 6483 2007-01-08 18:00:22Z bobstayton $
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:template name="axf-document-information">
|
||||
|
||||
<xsl:variable name="authors" select="(//author|//editor|
|
||||
//corpauthor|//authorgroup)[1]"/>
|
||||
<xsl:if test="$authors">
|
||||
<xsl:variable name="author">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$authors[self::authorgroup]">
|
||||
<xsl:call-template name="person.name.list">
|
||||
<xsl:with-param name="person.list"
|
||||
select="$authors/*[self::author|self::corpauthor|
|
||||
self::othercredit|self::editor]"/>
|
||||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="$authors[self::corpauthor]">
|
||||
<xsl:value-of select="$authors"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:call-template name="person.name">
|
||||
<xsl:with-param name="node" select="$authors"/>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:element name="axf:document-info">
|
||||
<xsl:attribute name="name">author</xsl:attribute>
|
||||
<xsl:attribute name="value">
|
||||
<xsl:value-of select="normalize-space($author)"/>
|
||||
</xsl:attribute>
|
||||
</xsl:element>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:variable name="title">
|
||||
<xsl:apply-templates select="/*[1]" mode="label.markup"/>
|
||||
<xsl:apply-templates select="/*[1]" mode="title.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- * see bug report #1465301 - mzjn -->
|
||||
<axf:document-info name="title">
|
||||
<xsl:attribute name="value">
|
||||
<xsl:value-of select="normalize-space($title)"/>
|
||||
</xsl:attribute>
|
||||
</axf:document-info>
|
||||
|
||||
<xsl:if test="//keyword">
|
||||
<xsl:element name="axf:document-info">
|
||||
<xsl:attribute name="name">keywords</xsl:attribute>
|
||||
<xsl:attribute name="value">
|
||||
<xsl:for-each select="//keyword">
|
||||
<xsl:value-of select="normalize-space(.)"/>
|
||||
<xsl:if test="position() != last()">
|
||||
<xsl:text>, </xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:attribute>
|
||||
</xsl:element>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="//subjectterm">
|
||||
<xsl:element name="axf:document-info">
|
||||
<xsl:attribute name="name">subject</xsl:attribute>
|
||||
<xsl:attribute name="value">
|
||||
<xsl:for-each select="//subjectterm">
|
||||
<xsl:value-of select="normalize-space(.)"/>
|
||||
<xsl:if test="position() != last()">
|
||||
<xsl:text>, </xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:attribute>
|
||||
</xsl:element>
|
||||
</xsl:if>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<!-- These properties are added to fo:simple-page-master -->
|
||||
<xsl:template name="axf-page-master-properties">
|
||||
<xsl:param name="page.master" select="''"/>
|
||||
|
||||
<xsl:if test="$crop.marks != 0">
|
||||
<xsl:attribute name="axf:printer-marks">crop</xsl:attribute>
|
||||
<xsl:attribute name="axf:bleed"><xsl:value-of
|
||||
select="$crop.mark.bleed"/></xsl:attribute>
|
||||
<xsl:attribute name="axf:printer-marks-line-width"><xsl:value-of
|
||||
select="$crop.mark.width"/></xsl:attribute>
|
||||
<xsl:attribute name="axf:crop-offset"><xsl:value-of
|
||||
select="$crop.mark.offset"/></xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:call-template name="user-axf-page-master-properties">
|
||||
<xsl:with-param name="page.master" select="$page.master"/>
|
||||
</xsl:call-template>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="user-axf-page-master-properties">
|
||||
<xsl:param name="page.master" select="''"/>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
1300
doc/reference/lib/docbook-xsl-snapshot/fo/biblio-iso690.xsl
Normal file
1300
doc/reference/lib/docbook-xsl-snapshot/fo/biblio-iso690.xsl
Normal file
File diff suppressed because it is too large
Load Diff
1169
doc/reference/lib/docbook-xsl-snapshot/fo/biblio.xsl
Normal file
1169
doc/reference/lib/docbook-xsl-snapshot/fo/biblio.xsl
Normal file
File diff suppressed because it is too large
Load Diff
600
doc/reference/lib/docbook-xsl-snapshot/fo/block.xsl
Normal file
600
doc/reference/lib/docbook-xsl-snapshot/fo/block.xsl
Normal file
@@ -0,0 +1,600 @@
|
||||
<?xml version='1.0'?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: block.xsl 6933 2007-07-03 11:48:38Z xmldoc $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/release/xsl/current/ for
|
||||
copyright and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- What should we do about styling blockinfo? -->
|
||||
|
||||
<xsl:template match="blockinfo|info">
|
||||
<!-- suppress -->
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="block.object">
|
||||
<fo:block>
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="para">
|
||||
<fo:block xsl:use-attribute-sets="normal.para.spacing">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="simpara">
|
||||
<fo:block xsl:use-attribute-sets="normal.para.spacing">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="formalpara">
|
||||
<fo:block xsl:use-attribute-sets="normal.para.spacing">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Only use title from info -->
|
||||
<xsl:template match="formalpara/info">
|
||||
<xsl:apply-templates select="title"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="formalpara/title|formalpara/info/title">
|
||||
<xsl:variable name="titleStr">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="lastChar">
|
||||
<xsl:if test="$titleStr != ''">
|
||||
<xsl:value-of select="substring($titleStr,string-length($titleStr),1)"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
|
||||
<fo:inline font-weight="bold"
|
||||
keep-with-next.within-line="always"
|
||||
padding-end="1em">
|
||||
<xsl:copy-of select="$titleStr"/>
|
||||
<xsl:if test="$lastChar != ''
|
||||
and not(contains($runinhead.title.end.punct, $lastChar))">
|
||||
<xsl:value-of select="$runinhead.default.title.end.punct"/>
|
||||
</xsl:if>
|
||||
<xsl:text> </xsl:text>
|
||||
</fo:inline>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="formalpara/para">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="blockquote">
|
||||
<fo:block xsl:use-attribute-sets="blockquote.properties">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<fo:block>
|
||||
<xsl:if test="title|info/title">
|
||||
<fo:block xsl:use-attribute-sets="formal.title.properties">
|
||||
<xsl:apply-templates select="." mode="object.title.markup"/>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="*[local-name(.) != 'title'
|
||||
and local-name(.) != 'attribution']"/>
|
||||
</fo:block>
|
||||
<xsl:if test="attribution">
|
||||
<fo:block text-align="right">
|
||||
<!-- mdash -->
|
||||
<xsl:text>—</xsl:text>
|
||||
<xsl:apply-templates select="attribution"/>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="epigraph">
|
||||
<fo:block>
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates select="para|simpara|formalpara|literallayout"/>
|
||||
<xsl:if test="attribution">
|
||||
<fo:inline>
|
||||
<xsl:text>--</xsl:text>
|
||||
<xsl:apply-templates select="attribution"/>
|
||||
</fo:inline>
|
||||
</xsl:if>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="attribution">
|
||||
<fo:inline><xsl:apply-templates/></fo:inline>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template name="floater">
|
||||
<xsl:param name="position" select="'none'"/>
|
||||
<xsl:param name="clear" select="'both'"/>
|
||||
<xsl:param name="width"/>
|
||||
<xsl:param name="content"/>
|
||||
<xsl:param name="start.indent">0pt</xsl:param>
|
||||
<xsl:param name="end.indent">0pt</xsl:param>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="not($fop.extensions = 0)">
|
||||
<!-- fop 0.20.5 does not support floats -->
|
||||
<xsl:copy-of select="$content"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$position = 'none'">
|
||||
<xsl:copy-of select="$content"/>
|
||||
</xsl:when>
|
||||
<xsl:when test="$position = 'before'">
|
||||
<fo:float float="before">
|
||||
<xsl:copy-of select="$content"/>
|
||||
</fo:float>
|
||||
</xsl:when>
|
||||
<xsl:when test="$position = 'left' or
|
||||
$position = 'start' or
|
||||
$position = 'right' or
|
||||
$position = 'end' or
|
||||
$position = 'inside' or
|
||||
$position = 'outside'">
|
||||
<xsl:variable name="float">
|
||||
<fo:float float="{$position}"
|
||||
clear="{$clear}">
|
||||
<fo:block-container
|
||||
start-indent="{$start.indent}"
|
||||
end-indent="{$end.indent}">
|
||||
<xsl:if test="$width != ''">
|
||||
<xsl:attribute name="inline-progression-dimension">
|
||||
<xsl:value-of select="$width"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<fo:block>
|
||||
<xsl:copy-of select="$content"/>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
</fo:float>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$axf.extensions != 0 and self::sidebar">
|
||||
<fo:block xsl:use-attribute-sets="normal.para.spacing"
|
||||
space-after="0pt"
|
||||
space-after.precedence="force"
|
||||
start-indent="0pt" end-indent="0pt">
|
||||
<xsl:copy-of select="$float"/>
|
||||
</fo:block>
|
||||
</xsl:when>
|
||||
<xsl:when test="$axf.extensions != 0 and
|
||||
($position = 'left' or $position = 'start')">
|
||||
<fo:float float="{$position}"
|
||||
clear="{$clear}">
|
||||
<fo:block-container
|
||||
inline-progression-dimension=".001mm"
|
||||
end-indent="{$start.indent} + {$width} + {$end.indent}">
|
||||
<xsl:attribute name="start-indent">
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor::para">
|
||||
<!-- Special case for handling inline floats
|
||||
in Antenna House-->
|
||||
<xsl:value-of select="concat('-', $body.start.indent)"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>0pt</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:attribute>
|
||||
<fo:block start-indent="{$start.indent}"
|
||||
end-indent="-{$start.indent} - {$width}">
|
||||
<xsl:copy-of select="$content"/>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
</fo:float>
|
||||
|
||||
</xsl:when>
|
||||
<xsl:when test="$axf.extensions != 0 and
|
||||
($position = 'right' or $position = 'end')">
|
||||
<!-- Special case for handling inline floats in Antenna House-->
|
||||
<fo:float float="{$position}"
|
||||
clear="{$clear}">
|
||||
<fo:block-container
|
||||
inline-progression-dimension=".001mm"
|
||||
end-indent="-{$body.end.indent}"
|
||||
start-indent="{$start.indent} + {$width} + {$end.indent}">
|
||||
<fo:block end-indent="{$end.indent}"
|
||||
start-indent="-{$end.indent} - {$width}">
|
||||
<xsl:copy-of select="$content"/>
|
||||
</fo:block>
|
||||
</fo:block-container>
|
||||
</fo:float>
|
||||
|
||||
</xsl:when>
|
||||
<xsl:when test="$xep.extensions != 0 and self::sidebar">
|
||||
<!-- float needs some space above to line up with following para -->
|
||||
<fo:block xsl:use-attribute-sets="normal.para.spacing">
|
||||
<xsl:copy-of select="$float"/>
|
||||
</fo:block>
|
||||
</xsl:when>
|
||||
<xsl:when test="$xep.extensions != 0">
|
||||
<xsl:copy-of select="$float"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:copy-of select="$float"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:copy-of select="$content"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sidebar" name="sidebar">
|
||||
<!-- Also does margin notes -->
|
||||
<xsl:variable name="pi-type">
|
||||
<xsl:call-template name="pi.dbfo_float-type"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="id">
|
||||
<xsl:call-template name="object.id"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-type = 'margin.note'">
|
||||
<xsl:call-template name="margin.note"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:variable name="content">
|
||||
<fo:block xsl:use-attribute-sets="sidebar.properties"
|
||||
id="{$id}">
|
||||
<xsl:call-template name="sidebar.titlepage"/>
|
||||
<xsl:apply-templates select="node()[not(self::title) and
|
||||
not(self::info) and
|
||||
not(self::sidebarinfo)]"/>
|
||||
</fo:block>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="pi-width">
|
||||
<xsl:call-template name="pi.dbfo_sidebar-width"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="position">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-type != ''">
|
||||
<xsl:value-of select="$pi-type"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$sidebar.float.type"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:call-template name="floater">
|
||||
<xsl:with-param name="content" select="$content"/>
|
||||
<xsl:with-param name="position" select="$position"/>
|
||||
<xsl:with-param name="width">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-width != ''">
|
||||
<xsl:value-of select="$pi-width"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$sidebar.float.width"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="start.indent">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$position = 'start' or
|
||||
$position = 'left'">0pt</xsl:when>
|
||||
<xsl:when test="$position = 'end' or
|
||||
$position = 'right'">0.5em</xsl:when>
|
||||
<xsl:otherwise>0pt</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="end.indent">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$position = 'start' or
|
||||
$position = 'left'">0.5em</xsl:when>
|
||||
<xsl:when test="$position = 'end' or
|
||||
$position = 'right'">0pt</xsl:when>
|
||||
<xsl:otherwise>0pt</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sidebar/title|sidebarinfo|sidebar/info"/>
|
||||
|
||||
<xsl:template match="sidebar/title|sidebarinfo/title|sidebar/info/title"
|
||||
mode="titlepage.mode" priority="1">
|
||||
<fo:block xsl:use-attribute-sets="sidebar.title.properties">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="margin.note">
|
||||
<xsl:param name="content">
|
||||
<fo:block xsl:use-attribute-sets="margin.note.properties">
|
||||
<xsl:if test="./title">
|
||||
<fo:block xsl:use-attribute-sets="margin.note.title.properties">
|
||||
<xsl:apply-templates select="./title" mode="margin.note.title.mode"/>
|
||||
</fo:block>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:param>
|
||||
|
||||
<xsl:variable name="pi-width">
|
||||
<xsl:call-template name="pi.dbfo_sidebar-width"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="position" select="$margin.note.float.type"/>
|
||||
|
||||
<xsl:call-template name="floater">
|
||||
<xsl:with-param name="content" select="$content"/>
|
||||
<xsl:with-param name="position" select="$position"/>
|
||||
<xsl:with-param name="width" >
|
||||
<xsl:choose>
|
||||
<xsl:when test="$pi-width != ''">
|
||||
<xsl:value-of select="$pi-width"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$margin.note.width"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="start.indent">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$position = 'start' or
|
||||
$position = 'left'">0pt</xsl:when>
|
||||
<xsl:when test="$position = 'end' or
|
||||
$position = 'right'">0.5em</xsl:when>
|
||||
<xsl:otherwise>0pt</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="end.indent">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$position = 'start' or
|
||||
$position = 'left'">0.5em</xsl:when>
|
||||
<xsl:when test="$position = 'end' or
|
||||
$position = 'right'">0pt</xsl:when>
|
||||
<xsl:otherwise>0pt</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="sidebar/title" mode="margin.note.title.mode">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="abstract">
|
||||
<fo:block xsl:use-attribute-sets="abstract.properties">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="abstract/title|abstract/info/title">
|
||||
<fo:block xsl:use-attribute-sets="abstract.title.properties">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="msgset">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgentry">
|
||||
<xsl:call-template name="block.object"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="simplemsgentry">
|
||||
<xsl:call-template name="block.object"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msg">
|
||||
<xsl:call-template name="block.object"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgmain">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgsub">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgrel">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgtext">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msginfo">
|
||||
<xsl:call-template name="block.object"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msglevel">
|
||||
<fo:block>
|
||||
<fo:inline font-weight="bold"
|
||||
keep-with-next.within-line="always">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'msgset'"/>
|
||||
<xsl:with-param name="name" select="'MsgLevel'"/>
|
||||
</xsl:call-template>
|
||||
</fo:inline>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgorig">
|
||||
<fo:block>
|
||||
<fo:inline font-weight="bold"
|
||||
keep-with-next.within-line="always">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'msgset'"/>
|
||||
<xsl:with-param name="name" select="'MsgOrig'"/>
|
||||
</xsl:call-template>
|
||||
</fo:inline>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgaud">
|
||||
<fo:block>
|
||||
<fo:inline font-weight="bold"
|
||||
keep-with-next.within-line="always">
|
||||
<xsl:call-template name="gentext.template">
|
||||
<xsl:with-param name="context" select="'msgset'"/>
|
||||
<xsl:with-param name="name" select="'MsgAud'"/>
|
||||
</xsl:call-template>
|
||||
</fo:inline>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgexplan">
|
||||
<xsl:call-template name="block.object"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="msgexplan/title">
|
||||
<fo:block font-weight="bold"
|
||||
keep-with-next.within-column="always"
|
||||
hyphenate="false">
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
<!-- For better or worse, revhistory is allowed in content... -->
|
||||
|
||||
<xsl:template match="revhistory">
|
||||
<fo:table table-layout="fixed" xsl:use-attribute-sets="revhistory.table.properties">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<fo:table-column column-number="1" column-width="proportional-column-width(1)"/>
|
||||
<fo:table-column column-number="2" column-width="proportional-column-width(1)"/>
|
||||
<fo:table-column column-number="3" column-width="proportional-column-width(1)"/>
|
||||
<fo:table-body start-indent="0pt" end-indent="0pt">
|
||||
<fo:table-row>
|
||||
<fo:table-cell number-columns-spanned="3" xsl:use-attribute-sets="revhistory.table.cell.properties">
|
||||
<fo:block xsl:use-attribute-sets="revhistory.title.properties">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'RevHistory'"/>
|
||||
</xsl:call-template>
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
<xsl:apply-templates/>
|
||||
</fo:table-body>
|
||||
</fo:table>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revhistory/revision">
|
||||
<xsl:variable name="revnumber" select="revnumber"/>
|
||||
<xsl:variable name="revdate" select="date"/>
|
||||
<xsl:variable name="revauthor" select="authorinitials|author"/>
|
||||
<xsl:variable name="revremark" select="revremark|revdescription"/>
|
||||
<fo:table-row>
|
||||
<fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties">
|
||||
<fo:block>
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:if test="$revnumber">
|
||||
<xsl:call-template name="gentext">
|
||||
<xsl:with-param name="key" select="'Revision'"/>
|
||||
</xsl:call-template>
|
||||
<xsl:call-template name="gentext.space"/>
|
||||
<xsl:apply-templates select="$revnumber[1]"/>
|
||||
</xsl:if>
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties">
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="$revdate[1]"/>
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
<fo:table-cell xsl:use-attribute-sets="revhistory.table.cell.properties">
|
||||
<fo:block>
|
||||
<xsl:for-each select="$revauthor">
|
||||
<xsl:apply-templates select="."/>
|
||||
<xsl:if test="position() != last()">
|
||||
<xsl:text>, </xsl:text>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
<xsl:if test="$revremark">
|
||||
<fo:table-row>
|
||||
<fo:table-cell number-columns-spanned="3" xsl:use-attribute-sets="revhistory.table.cell.properties">
|
||||
<fo:block>
|
||||
<xsl:apply-templates select="$revremark[1]"/>
|
||||
</fo:block>
|
||||
</fo:table-cell>
|
||||
</fo:table-row>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revision/revnumber">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revision/date">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revision/authorinitials">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revision/author">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revision/revremark">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="revision/revdescription">
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="ackno">
|
||||
<fo:block xsl:use-attribute-sets="normal.para.spacing">
|
||||
<xsl:call-template name="anchor"/>
|
||||
<xsl:apply-templates/>
|
||||
</fo:block>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<xsl:template match="highlights">
|
||||
<xsl:call-template name="block.object"/>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user