Bring the docbook xsl to the main branch
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18761 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
########################################################################
|
||||
# CatalogManager provides an interface to the catalog properties.
|
||||
# Properties can come from two places: from system properties or
|
||||
# from a CatalogManager.properties file. This class provides a
|
||||
# transparent interface to both, with system properties preferred
|
||||
# over property file values.
|
||||
|
||||
#######################################################################
|
||||
# Catalog Files:
|
||||
# The semicolon-delimited list of catalog files.
|
||||
# Example: catalogs=/etc/xml/catalog;~/catalog.xml
|
||||
|
||||
catalogs=
|
||||
|
||||
#######################################################################
|
||||
# Relative Catalogs:
|
||||
# If false, relative catalog URIs are made absolute with respect to the
|
||||
# base URI of the CatalogManager.properties file. This setting only
|
||||
# applies to catalog URIs obtained from the catalogs property in the
|
||||
# CatalogManager.properties file
|
||||
# Example: relative-catalogs = [yes|no]
|
||||
|
||||
relative-catalogs=yes
|
||||
|
||||
#######################################################################
|
||||
# Verbosity:
|
||||
# If non-zero, the Catalog classes will print informative and debugging
|
||||
# messages. The higher the number, the more messages.
|
||||
# Example: verbosity = [0..99]
|
||||
|
||||
verbosity=0
|
||||
|
||||
#######################################################################
|
||||
# Prefer:
|
||||
# Which identifier is preferred, "public" or "system"?
|
||||
# Example: xml.catalog.prefer = [public|system]
|
||||
|
||||
prefer=system
|
||||
|
||||
#######################################################################
|
||||
# Static-catalog:
|
||||
# Should a single catalog be constructed for all parsing, or should a
|
||||
# different catalog be created for each parser?
|
||||
# Example: static-catalog = [yes|no]
|
||||
|
||||
static-catalog=yes
|
||||
|
||||
#######################################################################
|
||||
# Allow-oasis-xml-catalog-pi
|
||||
# If the source document contains "oasis-xml-catalog" processing
|
||||
# instructions, should they be used?
|
||||
# Example: allow-oasis-xml-catalog-pi = [yes|no]
|
||||
|
||||
allow-oasis-xml-catalog-pi=yes
|
||||
|
||||
#######################################################################
|
||||
# catalog-class-name
|
||||
# If you're using the convenience classes
|
||||
# org.apache.xml.resolver.tools.*, this setting allows you to specify
|
||||
# an alternate class name to use for the underlying catalog.
|
||||
# Example: catalog-class-name=org.apache.xml.resolver.Resolver
|
||||
@@ -0,0 +1,32 @@
|
||||
if ( ! $?XML_CATALOG_FILES ) then
|
||||
setenv XML_CATALOG_FILES "/docbook-sandbox/xsl/catalog.xml"
|
||||
# /docbook-sandbox/xsl/catalog.xml is not in XML_CATALOG_FILES, so add it
|
||||
else if ( "`echo $XML_CATALOG_FILES | grep -v /docbook-sandbox/xsl/catalog.xml`" != "" ) then
|
||||
setenv XML_CATALOG_FILES "/docbook-sandbox/xsl/catalog.xml $XML_CATALOG_FILES"
|
||||
endif
|
||||
endif
|
||||
# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it
|
||||
if ( -f /etc/xml/catalog && "`echo $XML_CATALOG_FILES | grep -v /etc/xml/catalog`" != "" ) then
|
||||
setenv XML_CATALOG_FILES "$XML_CATALOG_FILES /etc/xml/catalog"
|
||||
endif
|
||||
|
||||
endif
|
||||
if ( ! $?SGML_CATALOG_FILES ) then
|
||||
setenv SGML_CATALOG_FILES "/docbook-sandbox/xsl/catalog"
|
||||
else if ( "`echo $SGML_CATALOG_FILES | grep -v /docbook-sandbox/xsl/catalog`" != "" ) then
|
||||
setenv SGML_CATALOG_FILES "/docbook-sandbox/xsl/catalog $SGML_CATALOG_FILES"
|
||||
endif
|
||||
endif
|
||||
# /etc/SGML/catalog exists but is not in SGML_CATALOG_FILES, so add it
|
||||
if ( -f /etc/sgml/catalog && "`echo $SGML_CATALOG_FILES | grep -v /etc/sgml/catalog`" != "" ) then
|
||||
setenv SGML_CATALOG_FILES "$SGML_CATALOG_FILES /etc/sgml/catalog"
|
||||
endif
|
||||
|
||||
|
||||
if ( ! $?CLASSPATH ) then
|
||||
setenv CLASSPATH "/home/mikes/.resolver"
|
||||
# /home/mikes/.resolver is not in CLASSPATH, so add it
|
||||
else if ( "`echo $CLASSPATH | grep -v /home/mikes/.resolver`" != "" ) then
|
||||
setenv CLASSPATH "/home/mikes/.resolver:$CLASSPATH"
|
||||
endif
|
||||
endif
|
||||
@@ -0,0 +1,6 @@
|
||||
(add-hook
|
||||
'nxml-mode-hook
|
||||
(lambda ()
|
||||
(setq rng-schema-locating-files-default
|
||||
(append '("/docbook-sandbox/xsl/locatingrules.xml")
|
||||
rng-schema-locating-files-default ))))
|
||||
@@ -0,0 +1,38 @@
|
||||
if [ -z "$XML_CATALOG_FILES" ]; then
|
||||
XML_CATALOG_FILES="/docbook-sandbox/xsl/catalog.xml"
|
||||
else
|
||||
# /docbook-sandbox/xsl/catalog.xml is not in XML_CATALOG_FILES, so add it
|
||||
if [ "${XML_CATALOG_FILES#*/docbook-sandbox/xsl/catalog.xml*}" = "$XML_CATALOG_FILES" ]; then
|
||||
XML_CATALOG_FILES="/docbook-sandbox/xsl/catalog.xml $XML_CATALOG_FILES"
|
||||
fi
|
||||
fi
|
||||
# /etc/xml/catalog exists but is not in XML_CATALOG_FILES, so add it
|
||||
if [ -f /etc/xml/catalog ] && [ "${XML_CATALOG_FILES#*/etc/xml/catalog*}" = "$XML_CATALOG_FILES" ]; then
|
||||
XML_CATALOG_FILES="$XML_CATALOG_FILES /etc/xml/catalog"
|
||||
fi
|
||||
export XML_CATALOG_FILES
|
||||
|
||||
if [ -z "$SGML_CATALOG_FILES" ]; then
|
||||
SGML_CATALOG_FILES="/docbook-sandbox/xsl/catalog"
|
||||
else
|
||||
# /docbook-sandbox/xsl/catalog is not in SGML_CATALOG_FILES, so add it
|
||||
if [ "${SGML_CATALOG_FILES#*/docbook-sandbox/xsl/catalog}" = "$SGML_CATALOG_FILES" ]; then
|
||||
SGML_CATALOG_FILES="/docbook-sandbox/xsl/catalog:$SGML_CATALOG_FILES"
|
||||
fi
|
||||
fi
|
||||
# /etc/sgml/catalog exists but is not in SGML_CATALOG_FILES, so add it
|
||||
if [ -f /etc/sgml/catalog ] && [ "${SGML_CATALOG_FILES#*/etc/sgml/catalog*}" = "$SGML_CATALOG_FILES" ]; then
|
||||
SGML_CATALOG_FILES="$SGML_CATALOG_FILES:/etc/sgml/catalog"
|
||||
fi
|
||||
export SGML_CATALOG_FILES
|
||||
|
||||
|
||||
if [ -z "$CLASSPATH" ]; then
|
||||
CLASSPATH="/home/mikes/.resolver"
|
||||
else
|
||||
# /home/mikes/.resolver is not in CLASSPATH, so add it
|
||||
if [ "${CLASSPATH#*/home/mikes/.resolver*}" = "$CLASSPATH" ]; then
|
||||
CLASSPATH="/home/mikes/.resolver:$CLASSPATH"
|
||||
fi
|
||||
fi
|
||||
export CLASSPATH
|
||||
@@ -0,0 +1 @@
|
||||
. http://docbook.sourceforge.net/release/xsl/current/
|
||||
@@ -0,0 +1,3 @@
|
||||
The DocBook XSL stylesheets are maintained by Norman Walsh,
|
||||
<[email protected]>, and members of the DocBook Project,
|
||||
<[email protected]>
|
||||
@@ -0,0 +1,5 @@
|
||||
For information about open DocBook XSL stylesheets bugs, see the
|
||||
following:
|
||||
|
||||
http://sourceforge.net/tracker/?atid=373747&group_id=21935&func=browse
|
||||
http://sourceforge.net/tracker/?atid=516914&group_id=21935&func=browse
|
||||
@@ -0,0 +1,45 @@
|
||||
Copyright
|
||||
---------
|
||||
|
||||
Copyright (C) 1999, 2000, 2001, 2002 Norman Walsh
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the ``Software''), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
Except as contained in this notice, the names of individuals
|
||||
credited with contribution to this software shall not be used in
|
||||
advertising or otherwise to promote the sale, use or other
|
||||
dealings in this Software without prior written authorization
|
||||
from the individuals in question.
|
||||
|
||||
Any stylesheet derived from this Software that is publically
|
||||
distributed will be identified with a different name and the
|
||||
version strings in any derived Software will be changed so that
|
||||
no possibility of confusion between the derived package and this
|
||||
Software will exist.
|
||||
|
||||
Warranty
|
||||
--------
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER
|
||||
CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Contacting the Author
|
||||
---------------------
|
||||
|
||||
These stylesheets are maintained by Norman Walsh, <[email protected]>.
|
||||
Binary file not shown.
@@ -0,0 +1,179 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<changelog xmlns="http://www.red-bean.com/xmlns/cvs2cl/">
|
||||
|
||||
<entry>
|
||||
<date>2006-05-26</date>
|
||||
<weekday>Friday</weekday>
|
||||
<time>07:47</time>
|
||||
<isoDate>2006-05-26T05:47:35Z</isoDate>
|
||||
<author>xmldoc</author>
|
||||
<file>
|
||||
<name>Makefile</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.25</revision>
|
||||
</file>
|
||||
<msg>Merged Makefile from build branch into trunk.</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-24</date>
|
||||
<weekday>Wednesday</weekday>
|
||||
<time>16:39</time>
|
||||
<isoDate>2006-05-24T14:39:48Z</isoDate>
|
||||
<author>nwalsh</author>
|
||||
<file>
|
||||
<name>Makefile</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.24</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>RELEASE-NOTES.xml</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.51</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>docsrc/release-notes-fo.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.1</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>docsrc/release-notes.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.6</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>docsrc/tdg-link.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.4</revision>
|
||||
</file>
|
||||
<msg>Tweaked RELEASE-NOTES to make them valid DocBook V5.0</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-21</date>
|
||||
<weekday>Sunday</weekday>
|
||||
<time>17:05</time>
|
||||
<isoDate>2006-05-21T15:05:10Z</isoDate>
|
||||
<author>kosek</author>
|
||||
<file>
|
||||
<name>htmlhelp/htmlhelp-common.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.38</revision>
|
||||
</file>
|
||||
<msg>htmlhelp.generate.index is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (see http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-21</date>
|
||||
<weekday>Sunday</weekday>
|
||||
<time>15:05</time>
|
||||
<isoDate>2006-05-21T13:05:19Z</isoDate>
|
||||
<author>kosek</author>
|
||||
<file>
|
||||
<name>fo/block.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.34</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>fo/param.ent</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.101</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>fo/param.xweb</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.114</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>fo/titlepage.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.41</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>params/revhistory.table.cell.properties.xml</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.1</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>params/revhistory.table.properties.xml</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.1</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>params/revhistory.title.properties.xml</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.1</revision>
|
||||
</file>
|
||||
<msg>Added three new attribute sets (revhistory.title.properties, revhistory.table.properties and revhistory.table.cell.properties) for controlling appearance of revhistory in FO output.</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-21</date>
|
||||
<weekday>Sunday</weekday>
|
||||
<time>14:47</time>
|
||||
<isoDate>2006-05-21T12:47:25Z</isoDate>
|
||||
<author>kosek</author>
|
||||
<file>
|
||||
<name>fo/block.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.33</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>fo/titlepage.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.40</revision>
|
||||
</file>
|
||||
<commondir>fo/</commondir>
|
||||
<msg>Support DBv5 revisions with full author name (not only authorinitials)</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-21</date>
|
||||
<weekday>Sunday</weekday>
|
||||
<time>14:25</time>
|
||||
<isoDate>2006-05-21T12:25:21Z</isoDate>
|
||||
<author>kosek</author>
|
||||
<file>
|
||||
<name>html/block.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.23</revision>
|
||||
</file>
|
||||
<file>
|
||||
<name>html/titlepage.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.34</revision>
|
||||
</file>
|
||||
<commondir>html/</commondir>
|
||||
<msg>Support DBv5 revisions with full author name (not only authorinitials)</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-18</date>
|
||||
<weekday>Thursday</weekday>
|
||||
<time>09:31</time>
|
||||
<isoDate>2006-05-18T07:31:44Z</isoDate>
|
||||
<author>bobstayton</author>
|
||||
<file>
|
||||
<name>RELEASE-NOTES.xml</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.50</revision>
|
||||
</file>
|
||||
<msg>added a few items to the list of new features.</msg>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<date>2006-05-17</date>
|
||||
<weekday>Wednesday</weekday>
|
||||
<time>11:57</time>
|
||||
<isoDate>2006-05-17T09:57:59Z</isoDate>
|
||||
<author>kosek</author>
|
||||
<file>
|
||||
<name>htmlhelp/htmlhelp-common.xsl</name>
|
||||
<cvsstate>Exp</cvsstate>
|
||||
<revision>1.37</revision>
|
||||
</file>
|
||||
<msg>Support chunk.tocs.and.lots in HTML Help</msg>
|
||||
</entry>
|
||||
|
||||
</changelog>
|
||||
@@ -0,0 +1,88 @@
|
||||
$Id: INSTALL,v 1.5 2006/04/13 09:29:22 xmldoc Exp $
|
||||
|
||||
INSTALL file for the DocBook XSL stylesheets distribution
|
||||
|
||||
----------------------------------------------------------------------
|
||||
Case #1: Installation using a package management system
|
||||
----------------------------------------------------------------------
|
||||
If you have installed the DocBook XSL distribution using "apt-get",
|
||||
"yum", "urpmi", or some similar package-management front-end,
|
||||
then, as part of the package installation, the stylesheets have
|
||||
already been automatically installed in the appropriate location
|
||||
for your system, and your XML catalog environment has probably
|
||||
been updated to use that location.
|
||||
|
||||
----------------------------------------------------------------------
|
||||
Case #2: Installing manually
|
||||
----------------------------------------------------------------------
|
||||
If you have downloaded a docbook-xsl zip, tar.gz, or tar.bz2
|
||||
file, use the following steps to install it.
|
||||
|
||||
1. Move the zip, tar.gz, or tar.bz2 file to the directory where
|
||||
you'd like to install it (not to a temporary directory).
|
||||
|
||||
2. unzip or untar/uncompress the file
|
||||
|
||||
That will create a docbook-xsl-$VERSION directory (where
|
||||
$VERSION is the version number for the release).
|
||||
|
||||
The remaining steps are all OPTIONAL. They are intended to
|
||||
automatically update your user environment with XML Catalog
|
||||
information about the DocBook XSL distribution. You are NOT
|
||||
REQUIRED to complete these remaining steps. However, if you do
|
||||
not, and you want to use XML catalogs with the DocBook XSL
|
||||
stylesheets, you will need to manually update your XML catalog
|
||||
environment
|
||||
|
||||
3. Change to the docbook-xsl-$VERSION directory and execute the
|
||||
install.sh script:
|
||||
|
||||
./install.sh
|
||||
|
||||
That will launch an interactive installer, which will emit a
|
||||
series of prompts for you to respond to.
|
||||
|
||||
To instead run it non-interactively without being prompted
|
||||
for confirmation of the changes it makes, invoke it with the
|
||||
"--batch" switch, like this:
|
||||
|
||||
./install.sh --batch
|
||||
|
||||
After the process is complete, the installer will emit a
|
||||
message with a command you need to run in order to source
|
||||
your environment for use with the stylesheets.
|
||||
|
||||
4. To test that he installation has updated your environment
|
||||
correctly, execute the test.sh script:
|
||||
|
||||
./test.sh
|
||||
|
||||
That will test your XML catalog environment, using both the
|
||||
xmlcatalog application and the Apache XML Commons Resolver.
|
||||
|
||||
NOTE: The test.sh file is not created until the install.sh
|
||||
file is run for the first time.
|
||||
|
||||
5. (UNINSTALLING) If/when you want to uninstall the release,
|
||||
execute the uninstall.sh script.
|
||||
|
||||
./uninstall.sh
|
||||
|
||||
To instead run it non-interactively without being prompted
|
||||
for confirmation of the changes it makes, invoke it with the
|
||||
"--batch" switch, like this:
|
||||
|
||||
./uninstall.sh --batch
|
||||
|
||||
NOTE: The uninstall.sh file is not created until the install.sh
|
||||
file is run for the first time.
|
||||
|
||||
|
||||
----------------------------------------------------------------------
|
||||
Note to packagers
|
||||
----------------------------------------------------------------------
|
||||
The install.sh, .CatalogManager.properties.example, and .urilist
|
||||
files should not be packaged. They are useful only to users who
|
||||
are installing the stylesheets manually.
|
||||
|
||||
The catalog.xml file should be packaged.
|
||||
@@ -0,0 +1,25 @@
|
||||
cvs2cl \
|
||||
--stdout --xml -g -q > ChangeHistory.xml
|
||||
zip ChangeHistory.xml.zip ChangeHistory.xml
|
||||
updating: ChangeHistory.xml (deflated 89%)
|
||||
rm -f ChangeHistory.xml
|
||||
find . -type f | xargs chmod 0644
|
||||
find . -type d | xargs chmod 0755
|
||||
chmod 0755 fo/pdf2index install.sh
|
||||
rm -rf /tmp/docbook-xsl-1.70.1
|
||||
rm -f /tmp/tar.exclude
|
||||
rm -f /tmp/docbook-xsl-1.70.1.tar.gz
|
||||
rm -f /tmp/docbook-xsl-1.70.1.tar.bz2
|
||||
rm -f /tmp/docbook-xsl-1.70.1.zip
|
||||
umask 022; mkdir -p /tmp/docbook-xsl-1.70.1
|
||||
touch /tmp/tar.exclude
|
||||
for file in extensions/xsltproc saxon8 extensions/build/ extensions/build2/; do \
|
||||
find . -print | grep $file | cut -c3- >> /tmp/tar.exclude; \
|
||||
done
|
||||
for file in /CVS$ /CVS/ /debian \.classes ~$ \..*\.pyc \#.* \.\#.* prj\.el \.cvsignore MANIFEST.build Makefile$ Makefile.common Makefile.incl Makefile.param LatestTag README\.CVS RELEASE-NOTES\.fo \.make-catalog\.xsl; do \
|
||||
find . -print | grep $file | cut -c3- >> /tmp/tar.exclude; \
|
||||
done
|
||||
for part in doc; do \
|
||||
find . -print | grep "^./$part\|^./${part}src" | cut -c3- >> /tmp/tar.exclude; \
|
||||
done
|
||||
tar cfP - -X /tmp/tar.exclude * .[^.]* | (cd /tmp/docbook-xsl-1.70.1; tar xfP -)
|
||||
@@ -0,0 +1,104 @@
|
||||
Changes since the 1.70.0 release
|
||||
|
||||
------------------------------------------------------------------------------
|
||||
|
||||
Table of Contents
|
||||
|
||||
Release: 1.70.0
|
||||
|
||||
Common
|
||||
Extensions
|
||||
FO
|
||||
HTML
|
||||
HTMLHelp
|
||||
Lib
|
||||
Manpages
|
||||
Params
|
||||
Profiling
|
||||
Template
|
||||
Tools
|
||||
WordML
|
||||
|
||||
Release: 1.70.0
|
||||
|
||||
The following is a list of changes that have been made since the 1.70.0
|
||||
release.
|
||||
|
||||
Common
|
||||
|
||||
The following changes have been made to the common code since the 1.70.0
|
||||
release.
|
||||
|
||||
Extensions
|
||||
|
||||
The following changes have been made to the extensions code since the 1.70.0
|
||||
release.
|
||||
|
||||
FO
|
||||
|
||||
The following changes have been made to the fo code since the 1.70.0 release.
|
||||
|
||||
* Added three new attribute sets (revhistory.title.properties, revhistory.
|
||||
table.properties and revhistory.table.cell.properties) for controlling
|
||||
appearance of revhistory in FO output.
|
||||
|
||||
* Support DBv5 revisions with full author name (not only authorinitials)
|
||||
|
||||
HTML
|
||||
|
||||
The following changes have been made to the html code since the 1.70.0
|
||||
release.
|
||||
|
||||
* Support DBv5 revisions with full author name (not only authorinitials)
|
||||
|
||||
HTMLHelp
|
||||
|
||||
The following changes have been made to the htmlhelp code since the 1.70.0
|
||||
release.
|
||||
|
||||
* htmlhelp.generate.index is now param, not variable. This means that you
|
||||
can override its setting from outside. This is useful when you generate
|
||||
indexterms on the fly (see
|
||||
http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).
|
||||
|
||||
* Support chunk.tocs.and.lots in HTML Help
|
||||
|
||||
Lib
|
||||
|
||||
The following changes have been made to the lib code since the 1.70.0 release.
|
||||
|
||||
Manpages
|
||||
|
||||
The following changes have been made to the manpages code since the 1.70.0
|
||||
release.
|
||||
|
||||
Params
|
||||
|
||||
The following changes have been made to the params code since the 1.70.0
|
||||
release.
|
||||
|
||||
* Added three new attribute sets (revhistory.title.properties, revhistory.
|
||||
table.properties and revhistory.table.cell.properties) for controlling
|
||||
appearance of revhistory in FO output.
|
||||
|
||||
Profiling
|
||||
|
||||
The following changes have been made to the profiling code since the 1.70.0
|
||||
release.
|
||||
|
||||
Template
|
||||
|
||||
The following changes have been made to the template code since the 1.70.0
|
||||
release.
|
||||
|
||||
Tools
|
||||
|
||||
The following changes have been made to the tools code since the 1.70.0
|
||||
release.
|
||||
|
||||
WordML
|
||||
|
||||
The following changes have been made to the wordml code since the 1.70.0
|
||||
release.
|
||||
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
<html><head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Changes since the 1.70.0 release</title><meta name="generator" content="DocBook XSL Stylesheets V1.70.0"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="article" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="d0e1"></a>Changes since the 1.70.0 release</h2></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="#V1700">Release: 1.70.0</a></span></dt><dd><dl><dt><span class="sect2"><a href="#V1700_Common">Common</a></span></dt><dt><span class="sect2"><a href="#V1700_Extensions">Extensions</a></span></dt><dt><span class="sect2"><a href="#V1700_FO">FO</a></span></dt><dt><span class="sect2"><a href="#V1700_HTML">HTML</a></span></dt><dt><span class="sect2"><a href="#V1700_HTMLHelp">HTMLHelp</a></span></dt><dt><span class="sect2"><a href="#V1700_Lib">Lib</a></span></dt><dt><span class="sect2"><a href="#V1700_Manpages">Manpages</a></span></dt><dt><span class="sect2"><a href="#V1700_Params">Params</a></span></dt><dt><span class="sect2"><a href="#V1700_Profiling">Profiling</a></span></dt><dt><span class="sect2"><a href="#V1700_Template">Template</a></span></dt><dt><span class="sect2"><a href="#V1700_Tools">Tools</a></span></dt><dt><span class="sect2"><a href="#V1700_WordML">WordML</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="V1700"></a>Release: 1.70.0</h2></div></div></div><p>The following is a list of changes that have been made
|
||||
since the 1.70.0 release.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Common"></a>Common</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">common</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Extensions"></a>Extensions</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">extensions</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_FO"></a>FO</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">fo</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"><li><p><span title="fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek" class="commit-message">Added three new attribute sets (<a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>.<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>.properties, <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.properties and <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.cell.properties) for controlling appearance of <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a> in FO output.</span></p></li><li><p><span title="fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek" class="commit-message">Support DBv5 revisions with full <a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a> name (not only <a href="http://docbook.org/tdg/en/html/authorinitials.html"><code class="sgmltag-element">authorinitials</code></a>)</span></p></li></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_HTML"></a>HTML</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">html</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"><li><p><span title="html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek" class="commit-message">Support DBv5 revisions with full <a href="http://docbook.org/tdg/en/html/author.html"><code class="sgmltag-element">author</code></a> name (not only <a href="http://docbook.org/tdg/en/html/authorinitials.html"><code class="sgmltag-element">authorinitials</code></a>)</span></p></li></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_HTMLHelp"></a>HTMLHelp</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">htmlhelp</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"><li><p><span title="htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek" class="commit-message">htmlhelp.<a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/generate.index.html"><em class="parameter"><code>generate.index</code></em></a> is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (<a href="http://docbook.org/tdg/en/html/see.html"><code class="sgmltag-element">see</code></a> http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).</span></p></li><li><p><span title="htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek" class="commit-message">Support <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/chunk.tocs.and.lots.html"><em class="parameter"><code>chunk.tocs.and.lots</code></em></a> in HTML Help</span></p></li></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Lib"></a>Lib</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">lib</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Manpages"></a>Manpages</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">manpages</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Params"></a>Params</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">params</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"><li><p><span title="fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek" class="commit-message">Added three new attribute sets (<a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>.<a href="http://docbook.org/tdg/en/html/title.html"><code class="sgmltag-element">title</code></a>.properties, <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.properties and <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a>.<a href="http://docbook.org/tdg/en/html/table.html"><code class="sgmltag-element">table</code></a>.cell.properties) for controlling appearance of <a href="http://docbook.org/tdg/en/html/revhistory.html"><code class="sgmltag-element">revhistory</code></a> in FO output.</span></p></li></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Profiling"></a>Profiling</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">profiling</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Template"></a>Template</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">template</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_Tools"></a>Tools</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">tools</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="V1700_WordML"></a>WordML</h3></div></div></div><p>The following changes have been made to the
|
||||
<code class="filename">wordml</code> code
|
||||
since the 1.70.0 release.</p><div class="itemizedlist"><ul type="disc"></ul></div></div></div></div></body></html>
|
||||
@@ -0,0 +1,136 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<article>
|
||||
<title>Changes since the 1.70.0 release</title>
|
||||
<sect1 xml:id="V1700">
|
||||
<title>Release: 1.70.0</title>
|
||||
<para>The following is a list of changes that have been made
|
||||
since the 1.70.0 release.</para>
|
||||
|
||||
<sect2 xml:id="V1700_Common">
|
||||
<title>Common</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>common</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Common changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Extensions">
|
||||
<title>Extensions</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>extensions</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Extensions changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_FO">
|
||||
<title>FO</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>fo</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para><phrase role="commit-message">Added three new attribute sets (<tag>revhistory</tag>.<tag>title</tag>.properties, <tag>revhistory</tag>.<tag>table</tag>.properties and <tag>revhistory</tag>.<tag>table</tag>.cell.properties) for controlling appearance of <tag>revhistory</tag> in FO output.<alt>fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek</alt></phrase></para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para><phrase role="commit-message">Support DBv5 revisions with full <tag>author</tag> name (not only <tag>authorinitials</tag>)<alt>fo/block.xsl,1.33; fo/titlepage.xsl,1.40 - Jirka Kosek</alt></phrase></para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of FO changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_HTML">
|
||||
<title>HTML</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>html</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para><phrase role="commit-message">Support DBv5 revisions with full <tag>author</tag> name (not only <tag>authorinitials</tag>)<alt>html/block.xsl,1.23; html/titlepage.xsl,1.34 - Jirka Kosek</alt></phrase></para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of HTML changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_HTMLHelp">
|
||||
<title>HTMLHelp</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>htmlhelp</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para><phrase role="commit-message">htmlhelp.<parameter>generate.index</parameter> is now param, not variable. This means that you can override its setting from outside. This is useful when you generate indexterms on the fly (<tag>see</tag> http://www.xml.com/pub/a/2004/07/14/dbndx.html?page=3).<alt>htmlhelp/htmlhelp-common.xsl,1.38 - Jirka Kosek</alt></phrase></para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para><phrase role="commit-message">Support <parameter>chunk.tocs.and.lots</parameter> in HTML Help<alt>htmlhelp/htmlhelp-common.xsl,1.37 - Jirka Kosek</alt></phrase></para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of HTMLHelp changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Lib">
|
||||
<title>Lib</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>lib</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Lib changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Manpages">
|
||||
<title>Manpages</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>manpages</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Manpages changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Params">
|
||||
<title>Params</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>params</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para><phrase role="commit-message">Added three new attribute sets (<tag>revhistory</tag>.<tag>title</tag>.properties, <tag>revhistory</tag>.<tag>table</tag>.properties and <tag>revhistory</tag>.<tag>table</tag>.cell.properties) for controlling appearance of <tag>revhistory</tag> in FO output.<alt>fo/block.xsl,1.34; fo/param.ent,1.101; fo/param.xweb,1.114; fo/titlepage.xsl,1.41; params/revhistory.table.cell.properties.xml,1.1; params/revhistory.table.properties.xml,1.1; params/revhistory.title.properties.xml,1.1 - Jirka Kosek</alt></phrase></para>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Params changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Profiling">
|
||||
<title>Profiling</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>profiling</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Profiling changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Template">
|
||||
<title>Template</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>template</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Template changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_Tools">
|
||||
<title>Tools</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>tools</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of Tools changes for 1.70.0-->
|
||||
|
||||
<sect2 xml:id="V1700_WordML">
|
||||
<title>WordML</title>
|
||||
<para>The following changes have been made to the
|
||||
<filename>wordml</filename> code
|
||||
since the 1.70.0 release.</para>
|
||||
<itemizedlist>
|
||||
</itemizedlist>
|
||||
</sect2><!--end of WordML changes for 1.70.0-->
|
||||
|
||||
</sect1>
|
||||
</article>
|
||||
@@ -0,0 +1,119 @@
|
||||
----------------------------------------------------------------------
|
||||
README file for the DocBook XSL Stylesheets
|
||||
----------------------------------------------------------------------
|
||||
$Id: README,v 1.8 2005/06/28 10:35:48 xmldoc Exp $
|
||||
|
||||
These are XSL stylesheets for transforming DocBook XML document
|
||||
instances into various output formats.
|
||||
|
||||
This README file provides only very minimal documentation on using
|
||||
the stylesheets. For more complete information, see Bob Stayton's
|
||||
book "DocBook XSL: The Complete Guide", available online at:
|
||||
|
||||
http://www.sagehill.net/docbookxsl/
|
||||
|
||||
----------------------------------------------------------------------
|
||||
Installation
|
||||
----------------------------------------------------------------------
|
||||
See the INSTALL file for information about installing this release.
|
||||
|
||||
----------------------------------------------------------------------
|
||||
How to use the stylesheets
|
||||
----------------------------------------------------------------------
|
||||
The base canonical URI for these stylesheets is:
|
||||
|
||||
http://docbook.sourceforge.net/release/xsl/current/
|
||||
|
||||
You call any of the stylesheets in this distribution by doing one
|
||||
of the following:
|
||||
|
||||
- Use the base canonical URI in combination with one of the
|
||||
pathnames below. For example, for "chunked" HTML, output:
|
||||
|
||||
http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
|
||||
|
||||
If your system has a working XML Catalog or SGML Catalog setup
|
||||
(most Linux systems do), then that URI will automatically be
|
||||
resolved and replaced with a local pathname on your system.
|
||||
|
||||
- Use a "real" local system base path in combination with one of
|
||||
the pathnames below. For example, for "chunked" HTML, output:
|
||||
|
||||
/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl
|
||||
|
||||
To transform documents created with the standard DocBook schema/DTD
|
||||
(or DocBook NG schema/DTD, use one of the following stylesheets:
|
||||
|
||||
fo/docbook.xsl - for XSL-FO
|
||||
fo/profile-docbook.xsl - for XSL-FO (single-pass profiled)
|
||||
|
||||
html/docbook.xsl - for HTML (as a single file)
|
||||
html/chunk.xsl - for HTML (chunked into multiple files)
|
||||
html/onechunk.xsl - for HTML (chunked output in single file)
|
||||
html/profile-* - for HTML (single-pass profiled versions)
|
||||
|
||||
xhtml/*.xsl - for XHTML versions of the above
|
||||
|
||||
htmlhelp/htmlhelp.xsl - for HTML Help
|
||||
javahelp/javahelp.xsl - for JavaHelp
|
||||
eclipse/eclipse.xsl - for Eclipse Help
|
||||
|
||||
manpages/docbook.xsl - for groff/nroff man pages
|
||||
|
||||
To transform documents created with the DocBook Slides schema/DTD,
|
||||
use one of the following stylesheets:
|
||||
|
||||
slides/html/*.xsl - for HTML slides of various kinds
|
||||
slides/xhtml/*.xsl - for XHTML slides of various kinds
|
||||
slides/fo/plain.xsl - for XSL-FO slides
|
||||
slides/htmlhelp/... - for HTML Help slides
|
||||
|
||||
To transform documents created with the DocBook Website
|
||||
schema/DTD, use one of the following stylesheets:
|
||||
|
||||
website/website.xsl - for non-tabular, non-chunked output
|
||||
website/tabular.xsl - for tabular, non-chunked output
|
||||
website/chunk-* - for chunked output
|
||||
|
||||
----------------------------------------------------------------------
|
||||
Manifest
|
||||
----------------------------------------------------------------------
|
||||
AUTHORS contact information
|
||||
BUGS about known problems
|
||||
COPYING copyright information
|
||||
INSTALL installation instructions
|
||||
README this file
|
||||
RELEASE.* per-release cumulative summaries of user-visible changes
|
||||
TODO about planned features not yet implemented
|
||||
VERSION the current version number (note that this is an XSL stylesheet,
|
||||
included by both fo/docbook.xsl and html/docbook.xsl)
|
||||
NEWS changes since the last public release (for cumulative lists of
|
||||
changes, see the ChangeLog files in each subdirectory)
|
||||
|
||||
common/ contains code common to both the HTML and FO stylesheets
|
||||
doc/ documentation
|
||||
docsrc/ documentation sources
|
||||
eclipse/ stylesheet that produces Eclipse Help
|
||||
extensions/ Java extensions
|
||||
fo/ stylesheets that produce XSL FO
|
||||
html/ stylesheets that produce HTML
|
||||
htmlhelp/ stylesheets that produce HTML Help
|
||||
images/ images
|
||||
javahelp/ stylesheets that produce Java Help
|
||||
lib/ contains schema-independent functions
|
||||
manpages/ stylesheets for producing groff/nroff man pages
|
||||
profiling/ stylesheets for profiling (omitting/including conditional text)
|
||||
slides/ stylesheets for producing slides (from DocBook Slides source)
|
||||
template/ contains templates for building stylesheet customization layers
|
||||
website/ stylesheets for producing a website (from DocBook Website source)
|
||||
xhtml/ stylesheets that produce XHTML
|
||||
|
||||
----------------------------------------------------------------------
|
||||
Changes
|
||||
----------------------------------------------------------------------
|
||||
See the ChangeLog in each subdirectory for cumulative lists of all changes.
|
||||
|
||||
See the NEWS file for changes made since the previous release.
|
||||
|
||||
See the RELEASE-NOTES.html or RELEASE-NOTES.txt or RELEASE-NOTES.pdf files
|
||||
for per-release cumulative summaries of significant user-visible changes.
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
For information about pending DocBook XSL stylesheets feature
|
||||
requests, see the following:
|
||||
|
||||
http://sourceforge.net/tracker/?atid=373750&group_id=21935&func=browse
|
||||
http://sourceforge.net/tracker/?atid=516914&group_id=21935&func=browse
|
||||
@@ -0,0 +1,86 @@
|
||||
<?xml version='1.0'?> <!-- -*- nxml -*- -->
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
xmlns:fm="http://freshmeat.net/projects/freshmeat-submit/"
|
||||
xmlns:sf="http://sourceforge.net/"
|
||||
exclude-result-prefixes="fm sf"
|
||||
version='1.0'>
|
||||
|
||||
<xsl:param name="VERSION" select="string(document('')//fm:Version[1])"/>
|
||||
<xsl:param name="sf-relid" select="0"/>
|
||||
<xsl:strip-space elements="fm:*"/>
|
||||
|
||||
<fm:project>
|
||||
<fm:Project>DocBook</fm:Project>
|
||||
<fm:Branch>XSL Stylesheets</fm:Branch>
|
||||
<fm:Version>1.70.1</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/docbook-xsl-{VERSION}.tar.gz?download</fm:Gzipped-Tar-URL>
|
||||
<fm:Zipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/docbook-xsl-{VERSION}.zip?download</fm:Zipped-Tar-URL>
|
||||
<fm:Bzipped-Tar-URL>http://prdownloads.sourceforge.net/docbook/docbook-xsl-{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.cvs.sourceforge.net/docbook/</fm:CVS-URL>
|
||||
<fm:Mailing-List-URL>http://lists.oasis-open.org/archives/docbook-apps/</fm:Mailing-List-URL>
|
||||
<fm:Changes>This is a stable release of the 1.70 stylesheets. It
|
||||
includes only a few small changes from 1.70.0.
|
||||
</fm:Changes>
|
||||
</fm:project>
|
||||
|
||||
<xsl:template match="/" priority="-100">
|
||||
<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:template>
|
||||
|
||||
<xsl:template match="fm:project">
|
||||
<xsl:text> </xsl:text>
|
||||
<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(., '{VERSION}')"/>
|
||||
<xsl:value-of select="$VERSION"/>
|
||||
<xsl:value-of select="substring-after(., '{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>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
|
||||
<!-- XML Catalog file for DocBook XSL Stylesheets v1.70.0 -->
|
||||
<rewriteURI uriStartString="http://docbook.sourceforge.net/release/xsl/current/" rewritePrefix="./"/>
|
||||
<rewriteSystem systemIdStartString="http://docbook.sourceforge.net/release/xsl/current/" rewritePrefix="./"/>
|
||||
<rewriteURI uriStartString="http://docbook.sourceforge.net/release/xsl/1.70.0/" rewritePrefix="./"/>
|
||||
<rewriteSystem systemIdStartString="http://docbook.sourceforge.net/release/xsl/1.70.0/" rewritePrefix="./"/>
|
||||
</catalog>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,146 @@
|
||||
<?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, "en")'>
|
||||
]>
|
||||
<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:k="java:com.isogen.saxoni18n.Saxoni18nService"
|
||||
extension-element-prefixes="func exslt"
|
||||
exclude-result-prefixes="func exslt i l k"
|
||||
xmlns:i="urn:cz-kosek:functions:index">
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: autoidx-ng.xsl,v 1.2 2006/05/14 04:34:41 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the DocBook XSL Stylesheet distribution.
|
||||
See ../README or http://docbook.sf.net/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- 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>
|
||||
|
||||
<!-- The following key used in the kosek indexing method. -->
|
||||
<xsl:key name="group-code"
|
||||
match="indexterm"
|
||||
use="i:group-index(&primary;)"/>
|
||||
|
||||
<!-- The following key used in the kimber indexing method. -->
|
||||
<xsl:key name="k-group"
|
||||
match="indexterm"
|
||||
use="k:getIndexGroupKey(⟨, &primary;)"/>
|
||||
|
||||
</xsl:stylesheet>
|
||||
@@ -0,0 +1,632 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="az" english-language-name="Azerbaijani">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="by"/>
|
||||
<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="in"/>
|
||||
<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="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="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="the section called"/>
|
||||
<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: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="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="part" text="Hissə %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,622 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="bs" english-language-name="Bosnian">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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: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="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="part" text="Dio %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,660 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="cs" english-language-name="Czech">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="by"/>
|
||||
<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="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="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: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="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="part" text="Část %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,624 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="da" english-language-name="Danish">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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: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="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="part" text="Del %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
@@ -0,0 +1,626 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="de" english-language-name="German">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="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="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: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="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="part" text="Teil %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,636 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="es" english-language-name="Spanish">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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: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="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="part" text="Parte %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,650 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="fr" english-language-name="French">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="Colophon"/>
|
||||
<l:gentext key="colophon" text="Colophon"/>
|
||||
<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é"/>
|
||||
<l:gentext key="published" text="Publié"/>
|
||||
<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=""/>
|
||||
<l:gentext key="sidebar" text="sidebar"/>
|
||||
<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 par : "/>
|
||||
<l:gentext key="revisedby" text="Revu 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 non attendu"/>
|
||||
<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 des inconnues"/>
|
||||
<l:gentext key="listofunknown" text="Liste des inconnues"/>
|
||||
<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: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="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="part" text="Partie %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,831 @@
|
||||
<?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,v 1.34 2005/07/10 08:54:39 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ 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="*" 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="$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"/>
|
||||
<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"/>
|
||||
</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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -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,v 1.1 2005/10/12 14:58:42 xmldoc Exp $
|
||||
********************************************************************
|
||||
|
||||
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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||
>
|
||||
@@ -0,0 +1,123 @@
|
||||
<?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 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 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 mn SYSTEM "mn.xml">
|
||||
<!ENTITY nl SYSTEM "nl.xml">
|
||||
<!ENTITY nn SYSTEM "nn.xml">
|
||||
<!ENTITY no SYSTEM "no.xml">
|
||||
<!ENTITY or SYSTEM "or.xml">
|
||||
<!ENTITY pa SYSTEM "pa.xml">
|
||||
<!ENTITY pl SYSTEM "pl.xml">
|
||||
<!ENTITY pt SYSTEM "pt.xml">
|
||||
<!ENTITY pt_br SYSTEM "pt_br.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 SYSTEM "sr.xml">
|
||||
<!ENTITY sr_Latn SYSTEM "sr_Latn.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;
|
||||
&es;
|
||||
&et;
|
||||
&eu;
|
||||
&fa;
|
||||
&fi;
|
||||
&fr;
|
||||
&ga;
|
||||
&gu;
|
||||
&he;
|
||||
&hi;
|
||||
&hr;
|
||||
&hu;
|
||||
&id;
|
||||
⁢
|
||||
&ja;
|
||||
&kn;
|
||||
&ko;
|
||||
&la;
|
||||
&lit;
|
||||
&mn;
|
||||
&nl;
|
||||
&nn;
|
||||
&no;
|
||||
∨
|
||||
&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>
|
||||
@@ -0,0 +1,461 @@
|
||||
<?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,v 1.27 2005/05/26 23:29:25 xmldoc Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ 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="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>
|
||||
|
||||
<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="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: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">
|
||||
<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">
|
||||
<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:call-template>
|
||||
</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>
|
||||
|
||||
<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="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: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: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">1</xsl:when>
|
||||
<xsl:when test="$template.node/@text">1</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($name, '/')">
|
||||
<xsl:call-template name="gentext.template.exists">
|
||||
<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:call-template>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>0</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,840 @@
|
||||
<?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,v 1.37 2006/05/07 07:14:44 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- label markup -->
|
||||
|
||||
<doc:mode mode="label.markup" xmlns="">
|
||||
<refpurpose>Provides access to element labels</refpurpose>
|
||||
<refdescription>
|
||||
<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="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($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="reference" format="{$format}" level="any"/>
|
||||
</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]" from="chapter|appendix" level="any"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:number format="1" count="equation[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 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>
|
||||
<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="$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: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>
|
||||
<para>Returns format passed as parameter if non zero. Supported
|
||||
format are 'arabic' or '1', 'loweralpha' or 'a', 'lowerroman' or 'i',
|
||||
'uppoerlapha' or 'A', 'upperroman' or 'I'. If its not one of these then
|
||||
returns the default format.</para>
|
||||
</refdescription>
|
||||
</doc:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
@@ -0,0 +1,638 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="lt" english-language-name="Lithuanian">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="Author" lang="en"/>
|
||||
<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="References" lang="en"/>
|
||||
<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="by"/>
|
||||
<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="in"/>
|
||||
<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="Sekantis"/>
|
||||
<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: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" lang="en"/>
|
||||
</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="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="part" text="Dalis %n. %t" lang="en"/>
|
||||
</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="(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="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="[Definition: " lang="en"/>
|
||||
<l:template name="suffix" text="]" lang="en"/>
|
||||
</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=", " lang="en"/>
|
||||
<l:template name="number-separator" text=", " lang="en"/>
|
||||
<l:template name="range-separator" 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>
|
||||
@@ -0,0 +1,638 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="mn" english-language-name="Mongolian">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="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="Зориулсан"/>
|
||||
<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="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="байхгүй элемент"/>
|
||||
<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="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="Лруу"/>
|
||||
<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: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="Хавсралт %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"/>
|
||||
<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" 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="Хавсралт %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="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="part" text="хэсэг %n. %t" lang="en"/>
|
||||
</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="(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="Х: %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: " 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="0x0450 Mongolian (MONGOLIA)"/>
|
||||
</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:letters>
|
||||
<l:l i="-1"/>
|
||||
<l:l i="0">Symbole</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">Ы</l:l>
|
||||
<l:l i="31">ы</l:l>
|
||||
<l:l i="32">Ь</l:l>
|
||||
<l:l i="32">ь</l:l>
|
||||
<l:l i="33">Э</l:l>
|
||||
<l:l i="33">э</l:l>
|
||||
<l:l i="34">Ю</l:l>
|
||||
<l:l i="34">ю</l:l>
|
||||
<l:l i="35">Я</l:l>
|
||||
<l:l i="35">я</l:l>
|
||||
</l:letters>
|
||||
</l:l10n>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,209 @@
|
||||
<?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"
|
||||
exclude-result-prefixes="doc date exsl"
|
||||
extension-element-prefixes="date exsl"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: pi.xsl,v 1.10 2005/09/09 03:58:58 xmldoc Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
This file contains general templates for processing processing
|
||||
instructions common to both the HTML and FO versions of the
|
||||
DocBook stylesheets.
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- Process PIs also on title pages -->
|
||||
<xsl:template match="processing-instruction()" mode="titlepage.mode">
|
||||
<xsl:apply-templates select="."/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="processing-instruction('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>
|
||||
|
||||
<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>
|
||||
<xsl:when test="function-available('exsl:node-set')">
|
||||
<!-- 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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,686 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="ru" english-language-name="Russian">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="and"/>
|
||||
<l:gentext key="by" text="by"/>
|
||||
<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: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="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="part" text="Часть %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,315 @@
|
||||
<?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:exsl="http://exslt.org/common"
|
||||
exclude-result-prefixes="db ng exsl saxon"
|
||||
version='1.0'>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: stripns.xsl,v 1.12 2006/05/02 16:15:29 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
This file contains general templates common to both the HTML and FO
|
||||
versions of the DocBook stylesheets.
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- 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:link|db:link" mode="stripNS">
|
||||
<xsl:variable xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
name="href" select="@xlink:href|@href"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="$href != '' and not(starts-with($href,'#'))">
|
||||
<ulink url="{$href}">
|
||||
<xsl:for-each select="@*">
|
||||
<xsl:if test="local-name(.) != 'href'
|
||||
and name(.) != 'version'
|
||||
and name(.) != 'xml:id'">
|
||||
<xsl:copy/>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</ulink>
|
||||
</xsl:when>
|
||||
<xsl:when test="$href != '' and starts-with($href,'#')">
|
||||
<link linkend="{substring-after($href,'#')}">
|
||||
<xsl:for-each select="@*">
|
||||
<xsl:if test="local-name(.) != 'href'
|
||||
and name(.) != 'version'
|
||||
and name(.) != 'xml:id'">
|
||||
<xsl:copy/>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="@xml:id">
|
||||
<xsl:attribute name="id">
|
||||
<xsl:value-of select="@xml:id"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates mode="stripNS"/>
|
||||
</link>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<link>
|
||||
<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"/>
|
||||
</link>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</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) and function-available('saxon:systemId')">
|
||||
<xsl:variable name="base" select="saxon:systemId()"/>
|
||||
<xsl:attribute name="xml:base">
|
||||
<xsl:call-template name="systemIdToBaseURI">
|
||||
<xsl:with-param name="systemId">
|
||||
<!-- file: seems to confuse some processors. -->
|
||||
<xsl:choose>
|
||||
<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:/')
|
||||
and substring($base, 8, 1) = ':'">
|
||||
<!-- Stupid windows file:/c:/path... -->
|
||||
<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:otherwise>
|
||||
<xsl:value-of select="$base"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:attribute>
|
||||
</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')
|
||||
and (*/self::ng:* or */self::db:*)">
|
||||
<xsl:message>Stripping NS from DocBook 5/NG 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>
|
||||
@@ -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,v 1.7 2006/05/07 07:14:44 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- subtitle markup -->
|
||||
|
||||
<doc:mode mode="subtitle.markup" xmlns="">
|
||||
<refpurpose>Provides access to element subtitles</refpurpose>
|
||||
<refdescription>
|
||||
<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="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"
|
||||
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[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>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,464 @@
|
||||
<?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,v 1.18 2005/12/15 18:18:59 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ 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>
|
||||
<para>If an <sgmltag>entry</sgmltag> has a
|
||||
<sgmltag class="attribute">colname</sgmltag> or
|
||||
<sgmltag class="attribute">namest</sgmltag> attribute, this template
|
||||
will determine the number of the column in which the entry should occur.
|
||||
For other <sgmltag>entry</sgmltag>s, nothing is returned.</para>
|
||||
</refdescription>
|
||||
<refparameter>
|
||||
<variablelist>
|
||||
<varlistentry><term>entry</term>
|
||||
<listitem>
|
||||
<para>The <sgmltag>entry</sgmltag>-element which is to be tested.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refparameter>
|
||||
|
||||
<refreturn>
|
||||
<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="$ecol >= $scol">
|
||||
<xsl:value-of select="$ecol - $scol + 1"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="$scol - $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="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="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="$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: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
|
||||
>
|
||||
@@ -0,0 +1,271 @@
|
||||
<?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,v 1.11 2005/12/29 19:27:24 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ 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>
|
||||
<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="'yes'"/>
|
||||
<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: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]" 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>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,708 @@
|
||||
<?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,v 1.35 2006/05/07 07:14:44 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<!-- ==================================================================== -->
|
||||
|
||||
<!-- title markup -->
|
||||
|
||||
<doc:mode mode="title.markup" xmlns="">
|
||||
<refpurpose>Provides access to element titles</refpurpose>
|
||||
<refdescription>
|
||||
<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>
|
||||
<xsl:when test="title">
|
||||
<xsl:apply-templates select="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="name(.)"/>
|
||||
<xsl:if test="@id">
|
||||
<xsl:text> (id="</xsl:text>
|
||||
<xsl:value-of select="@id"/>
|
||||
<xsl:text>")</xsl:text>
|
||||
</xsl:if>
|
||||
</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="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" 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" 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
|
||||
|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
|
||||
|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="name(.)"/>
|
||||
</xsl:call-template>
|
||||
</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" 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="abstract" 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="'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[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">
|
||||
|
||||
<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="link" 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" 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: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:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:template>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,626 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<l:l10n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0" language="tr" english-language-name="Turkish">
|
||||
|
||||
<!-- This file is generated automatically. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="by"/>
|
||||
<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="in"/>
|
||||
<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="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="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="the section called"/>
|
||||
<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: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="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="part" text="Kısım %n. %t" lang="en"/>
|
||||
</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: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>
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,620 @@
|
||||
<?xml version="1.0" encoding="US-ASCII"?>
|
||||
<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. -->
|
||||
<!-- Do not edit this file by hand! -->
|
||||
<!-- See http://docbook.sourceforge.net/ -->
|
||||
<!-- To update this file: edit the corresponding document at -->
|
||||
<!-- http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docbook/gentext/locale/ -->
|
||||
|
||||
<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="Author" lang="en"/>
|
||||
<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="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="受众"/>
|
||||
<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="Production"/>
|
||||
<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="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="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="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="不存在的元素"/>
|
||||
<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="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="过程清单"/>
|
||||
<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="above"/>
|
||||
<l:gentext key="below" text="below"/>
|
||||
<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: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" 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="第 %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"/>
|
||||
<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="附录 %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="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="part" text="部分 %n. %t" lang="en"/>
|
||||
</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="(第 %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 页)"/>
|
||||
<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="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="“%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="[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="0x0804 Chinese (CHINA)"/>
|
||||
</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: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:letters>
|
||||
</l:l10n>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,177 @@
|
||||
<?xml version="1.0"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||
version="1.0">
|
||||
|
||||
<xsl:import href="../html/chunk.xsl"/>
|
||||
|
||||
<!-- ********************************************************************
|
||||
$Id: eclipse.xsl,v 1.3 2005/04/10 18:09:50 bobstayton Exp $
|
||||
********************************************************************
|
||||
|
||||
This file is part of the XSL DocBook Stylesheet distribution.
|
||||
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
|
||||
and other information.
|
||||
|
||||
******************************************************************** -->
|
||||
|
||||
<xsl:template match="/">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$rootid != ''">
|
||||
<xsl:choose>
|
||||
<xsl:when test="count(key('id',$rootid)) = 0">
|
||||
<xsl:message terminate="yes">
|
||||
<xsl:text>ID '</xsl:text>
|
||||
<xsl:value-of select="$rootid"/>
|
||||
<xsl:text>' not found in document.</xsl:text>
|
||||
</xsl:message>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:if test="$collect.xref.targets = 'yes' or
|
||||
$collect.xref.targets = 'only'">
|
||||
<xsl:apply-templates select="key('id', $rootid)"
|
||||
mode="collect.targets"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="$collect.xref.targets != 'only'">
|
||||
<xsl:message>Formatting from <xsl:value-of
|
||||
select="$rootid"/></xsl:message>
|
||||
<xsl:apply-templates select="key('id',$rootid)"
|
||||
mode="process.root"/>
|
||||
<xsl:call-template name="etoc"/>
|
||||
<xsl:call-template name="plugin.xml"/>
|
||||
</xsl:if>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:if test="$collect.xref.targets = 'yes' or
|
||||
$collect.xref.targets = 'only'">
|
||||
<xsl:apply-templates select="/" mode="collect.targets"/>
|
||||
</xsl:if>
|
||||
<xsl:if test="$collect.xref.targets != 'only'">
|
||||
<xsl:apply-templates select="/" mode="process.root"/>
|
||||
<xsl:call-template name="etoc"/>
|
||||
<xsl:call-template name="plugin.xml"/>
|
||||
</xsl:if>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="etoc">
|
||||
<xsl:call-template name="write.chunk">
|
||||
<xsl:with-param name="filename">
|
||||
<xsl:if test="$manifest.in.base.dir != 0">
|
||||
<xsl:value-of select="$base.dir"/>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="'toc.xml'"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="method" select="'xml'"/>
|
||||
<xsl:with-param name="encoding" select="'utf-8'"/>
|
||||
<xsl:with-param name="indent" select="'yes'"/>
|
||||
<xsl:with-param name="content">
|
||||
<xsl:choose>
|
||||
|
||||
<xsl:when test="$rootid != ''">
|
||||
<xsl:variable name="title">
|
||||
<xsl:if test="$eclipse.autolabel=1">
|
||||
<xsl:variable name="label.markup">
|
||||
<xsl:apply-templates select="key('id',$rootid)" mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="normalize-space($label.markup)">
|
||||
<xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="key('id',$rootid)" mode="title.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="href">
|
||||
<xsl:call-template name="href.target.with.base.dir">
|
||||
<xsl:with-param name="object" select="key('id',$rootid)"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<toc label="{$title}" topic="{$href}">
|
||||
<xsl:apply-templates select="key('id',$rootid)/*" mode="etoc"/>
|
||||
</toc>
|
||||
</xsl:when>
|
||||
|
||||
<xsl:otherwise>
|
||||
<xsl:variable name="title">
|
||||
<xsl:if test="$eclipse.autolabel=1">
|
||||
<xsl:variable name="label.markup">
|
||||
<xsl:apply-templates select="/*" mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="normalize-space($label.markup)">
|
||||
<xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="/*" mode="title.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="href">
|
||||
<xsl:call-template name="href.target.with.base.dir">
|
||||
<xsl:with-param name="object" select="/"/>
|
||||
</xsl:call-template>
|
||||
</xsl:variable>
|
||||
|
||||
<toc label="{$title}" topic="{$href}">
|
||||
<xsl:apply-templates select="/*/*" mode="etoc"/>
|
||||
</toc>
|
||||
</xsl:otherwise>
|
||||
|
||||
</xsl:choose>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="book|part|reference|preface|chapter|bibliography|appendix|article|glossary|section|sect1|sect2|sect3|sect4|sect5|refentry|colophon|bibliodiv|index" mode="etoc">
|
||||
<xsl:variable name="title">
|
||||
<xsl:if test="$eclipse.autolabel=1">
|
||||
<xsl:variable name="label.markup">
|
||||
<xsl:apply-templates select="." mode="label.markup"/>
|
||||
</xsl:variable>
|
||||
<xsl:if test="normalize-space($label.markup)">
|
||||
<xsl:value-of select="concat($label.markup,$autotoc.label.separator)"/>
|
||||
</xsl:if>
|
||||
</xsl:if>
|
||||
<xsl:apply-templates select="." mode="title.markup"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="href">
|
||||
<xsl:call-template name="href.target.with.base.dir"/>
|
||||
</xsl:variable>
|
||||
|
||||
<topic label="{$title}" href="{$href}">
|
||||
<xsl:apply-templates select="part|reference|preface|chapter|bibliography|appendix|article|glossary|section|sect1|sect2|sect3|sect4|sect5|refentry|colophon|bibliodiv|index" mode="etoc"/>
|
||||
</topic>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="text()" mode="etoc"/>
|
||||
|
||||
<xsl:template name="plugin.xml">
|
||||
<xsl:call-template name="write.chunk">
|
||||
<xsl:with-param name="filename">
|
||||
<xsl:if test="$manifest.in.base.dir != 0">
|
||||
<xsl:value-of select="$base.dir"/>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="'plugin.xml'"/>
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="method" select="'xml'"/>
|
||||
<xsl:with-param name="encoding" select="'utf-8'"/>
|
||||
<xsl:with-param name="indent" select="'yes'"/>
|
||||
<xsl:with-param name="content">
|
||||
<plugin name="{$eclipse.plugin.name}"
|
||||
id="{$eclipse.plugin.id}"
|
||||
version="1.0"
|
||||
provider-name="{$eclipse.plugin.provider}">
|
||||
|
||||
<extension point="org.eclipse.help.toc">
|
||||
<toc file="toc.xml" primary="true"/>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</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