| 1 | <?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 | |
|---|
| 3 | <!-- Magic: --> |
|---|
| 4 | |
|---|
| 5 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|---|
| 6 | version="1.0"> |
|---|
| 7 | |
|---|
| 8 | <xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl"/> |
|---|
| 9 | |
|---|
| 10 | <xsl:import href="aptitude-common.xsl"/> |
|---|
| 11 | |
|---|
| 12 | <xsl:param name="preferred.mediaobject.role">text</xsl:param> |
|---|
| 13 | |
|---|
| 14 | <!-- Force DocBook to use ASCII durnit --> |
|---|
| 15 | <xsl:param name='local.l10n.xml' select='document("")'/> |
|---|
| 16 | <l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0"> |
|---|
| 17 | <l:l10n language="en"> |
|---|
| 18 | <l:context name='xref-number-and-title'> |
|---|
| 19 | <l:template name="section" text="the section called ``%t''"/> |
|---|
| 20 | <l:template name="sect1" text="the section called ``%t''"/> |
|---|
| 21 | <l:template name="sect2" text="the section called ``%t''"/> |
|---|
| 22 | <l:template name="sect3" text="the section called ``%t''"/> |
|---|
| 23 | <l:template name="sect4" text="the section called ``%t''"/> |
|---|
| 24 | <l:template name="sect5" text="the section called ``%t''"/> |
|---|
| 25 | <l:template name="figure" text="Figure %n, ``%t''"/> |
|---|
| 26 | </l:context> |
|---|
| 27 | |
|---|
| 28 | <l:context name='xref'> |
|---|
| 29 | <l:template name="section" text="the section called ``%t''"/> |
|---|
| 30 | <l:template name="sect1" text="the section called ``%t''"/> |
|---|
| 31 | <l:template name="sect2" text="the section called ``%t''"/> |
|---|
| 32 | <l:template name="sect3" text="the section called ``%t''"/> |
|---|
| 33 | <l:template name="sect4" text="the section called ``%t''"/> |
|---|
| 34 | <l:template name="sect5" text="the section called ``%t''"/> |
|---|
| 35 | </l:context> |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | <!-- Apparently I can't do anything about an em-dash appearing |
|---|
| 39 | in the refentry. :( |
|---|
| 40 | --> |
|---|
| 41 | |
|---|
| 42 | <l:dingbat key="startquote" text="``"/> |
|---|
| 43 | <l:dingbat key="endquote" text="''"/> |
|---|
| 44 | |
|---|
| 45 | <l:dingbat key="nestedstartquote" text="`"/> |
|---|
| 46 | <l:dingbat key="nestedendquote" text="'"/> |
|---|
| 47 | |
|---|
| 48 | <l:dingbat key="singlestartquote" text="`"/> |
|---|
| 49 | <l:dingbat key="singleendquote" text="'"/> |
|---|
| 50 | |
|---|
| 51 | <l:dingbat key="bullet" text="*"/> |
|---|
| 52 | </l:l10n> |
|---|
| 53 | </l:i18n> |
|---|
| 54 | |
|---|
| 55 | </xsl:stylesheet> |
|---|