From b242c6b47c8f36d0ce9261cd1b11c2a029a23436 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 21:13:23 +0200 Subject: [PATCH 1/9] #232: Support non-ASCII metadata in Qt help builder. --- CHANGES | 2 ++ sphinx/builders/qthelp.py | 9 +++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 820c06931..4260cffdb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Release 0.6.3 (in development) ============================== +* #232: Support non-ASCII metadata in Qt help builder. + * Properly format bullet lists nested in definition lists for LaTeX. * Section titles are now allowed inside ``only`` directives. diff --git a/sphinx/builders/qthelp.py b/sphinx/builders/qthelp.py index 62a55ee89..df01aaa54 100644 --- a/sphinx/builders/qthelp.py +++ b/sphinx/builders/qthelp.py @@ -12,6 +12,7 @@ import os import re import cgi +import codecs from os import path from docutils import nodes @@ -28,7 +29,7 @@ _idpattern = re.compile( # It contains references to compressed help files which should be # included in the collection. # It may contain various other information for customizing Qt Assistant. -collection_template = '''\ +collection_template = u'''\ @@ -50,7 +51,7 @@ collection_template = '''\ # It contains the table of contents, indices and references to the # actual documentation files (*.html). # In addition it defines a unique namespace for the documentation. -project_template = '''\ +project_template = u'''\ %(outname)s.org.%(outname)s.%(nversion)s @@ -109,7 +110,7 @@ class QtHelpBuilder(StandaloneHTMLBuilder): def build_qhcp(self, outdir, outname): self.info('writing collection project file...') - f = open(path.join(outdir, outname+'.qhcp'), 'w') + f = codecs.open(path.join(outdir, outname+'.qhcp'), 'w', 'utf-8') try: f.write(collection_template % {'outname': outname}) finally: @@ -161,7 +162,7 @@ class QtHelpBuilder(StandaloneHTMLBuilder): projectfiles = '\n'.join(projectfiles) # write the project file - f = open(path.join(outdir, outname+'.qhp'), 'w') + f = codecs.open(path.join(outdir, outname+'.qhp'), 'w', 'utf-8') try: nversion = self.config.version.replace('.', '_') nversion = nversion.replace(' ', '_') From efa16ae0c7812c8dca78c98388086b6e8b16c525 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 21:22:12 +0200 Subject: [PATCH 2/9] #205: When copying files, don't copy full stat info, only modification times. --- CHANGES | 3 +++ sphinx/util/__init__.py | 16 ++++++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 4260cffdb..2033e8b67 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ Release 0.6.3 (in development) ============================== +* #205: When copying files, don't copy full stat info, only + modification times. + * #232: Support non-ASCII metadata in Qt help builder. * Properly format bullet lists nested in definition lists for LaTeX. diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index 40d4e323c..ec7f164fa 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -12,6 +12,7 @@ import os import re import sys +import stat import time import types import shutil @@ -399,11 +400,22 @@ def movefile(source, dest): os.rename(source, dest) +def copytimes(source, dest): + """Copy a file's modification times.""" + st = os.stat(source) + mode = stat.S_IMODE(st.st_mode) + if hasattr(os, 'utime'): + os.utime(dest, (st.st_atime, st.st_mtime)) + + def copyfile(source, dest): """Copy a file and its modification times, if possible.""" shutil.copyfile(source, dest) - try: shutil.copystat(source, dest) - except shutil.Error: pass + try: + # don't do full copystat because the source may be read-only + copytimes(source, dest) + except shutil.Error: + pass def copy_static_entry(source, target, builder, context={}): From c914884f57038528d4d9b436dd20cb17215f2e9f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:06:19 +0200 Subject: [PATCH 3/9] #229: Fix autodoc failures with members that raise errors on ``getattr()``. --- CHANGES | 3 +++ sphinx/ext/autodoc.py | 26 ++++--------------------- sphinx/util/inspect.py | 43 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 50 insertions(+), 22 deletions(-) create mode 100644 sphinx/util/inspect.py diff --git a/CHANGES b/CHANGES index 2033e8b67..4eb24cd9a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ Release 0.6.3 (in development) ============================== +* #229: Fix autodoc failures with members that raise errors + on ``getattr()``. + * #205: When copying files, don't copy full stat info, only modification times. diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py index c9a248a70..155c5711a 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -25,6 +25,7 @@ from sphinx.util import rpartition, nested_parse_with_titles, force_decode from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.application import ExtensionError from sphinx.util.compat import Directive +from sphinx.util.inspect import isdescriptor, safe_getmembers, safe_getattr from sphinx.util.docstrings import prepare_docstring @@ -194,25 +195,6 @@ def between(marker, what=None, keepempty=False): return process -def safe_getattr(obj, name, *defargs): - try: - return getattr(obj, name, *defargs) - except Exception: - # this is a catch-all for all the weird things that some modules do - # with attribute access - if defargs: - return defargs[0] - raise AttributeError - - -def isdescriptor(x): - """Check if the object is some kind of descriptor.""" - for item in '__get__', '__set__', '__delete__': - if hasattr(safe_getattr(x, item, None), '__call__'): - return True - return False - - class Documenter(object): """ A Documenter knows how to autodocument a single object type. When @@ -486,9 +468,9 @@ class Documenter(object): % (mname, self.fullname)) return False, ret elif self.options.inherited_members: - # getmembers() uses dir() which pulls in members from all + # safe_getmembers() uses dir() which pulls in members from all # base classes - return False, inspect.getmembers(self.object) + return False, safe_getmembers(self.object) else: # __dict__ contains only the members directly defined in # the class (but get them via getattr anyway, to e.g. get @@ -728,7 +710,7 @@ class ModuleDocumenter(Documenter): if not hasattr(self.object, '__all__'): # for implicit module members, check __module__ to avoid # documenting imported objects - return True, inspect.getmembers(self.object) + return True, safe_getmembers(self.object) else: memberlist = self.object.__all__ else: diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py new file mode 100644 index 000000000..9cec5deca --- /dev/null +++ b/sphinx/util/inspect.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +""" + sphinx.util.inspect + ~~~~~~~~~~~~~~~~~~~ + + Helpers for inspecting Python modules. + + :copyright: Copyright 2007-2009 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +def isdescriptor(x): + """Check if the object is some kind of descriptor.""" + for item in '__get__', '__set__', '__delete__': + if hasattr(safe_getattr(x, item, None), '__call__'): + return True + return False + + +def safe_getattr(obj, name, *defargs): + """A getattr() that turns all exceptions into AttributeErrors.""" + try: + return getattr(obj, name, *defargs) + except Exception: + # this is a catch-all for all the weird things that some modules do + # with attribute access + if defargs: + return defargs[0] + raise AttributeError(name) + + +def safe_getmembers(object, predicate=None): + """A version of inspect.getmembers() that uses safe_getattr().""" + results = [] + for key in dir(object): + try: + value = safe_getattr(object, key, None) + except AttributeError: + continue + if not predicate or predicate(value): + results.append((key, value)) + results.sort() + return results From ea5b0088fadd79584846242769ac8b7d2d264690 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:29:31 +0200 Subject: [PATCH 4/9] #227: Make ``literalinclude`` work when the document's path name contains non-ASCII characters. --- CHANGES | 3 +++ sphinx/directives/code.py | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 4eb24cd9a..824fbaa01 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ Release 0.6.3 (in development) ============================== +* #227: Make ``literalinclude`` work when the document's path + name contains non-ASCII characters. + * #229: Fix autodoc failures with members that raise errors on ``getattr()``. diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 645bc7844..6aaf44b86 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -101,7 +101,13 @@ class LiteralInclude(Directive): else: docdir = path.dirname(env.doc2path(env.docname, base=None)) rel_fn = path.normpath(path.join(docdir, filename)) - fn = path.join(env.srcdir, rel_fn) + try: + fn = path.join(env.srcdir, rel_fn) + except UnicodeDecodeError: + # the source directory is a bytestring with non-ASCII characters; + # let's try to encode the rel_fn in the file system encoding + rel_fn = rel_fn.encode(sys.getfilesystemencoding()) + fn = path.join(env.srcdir, rel_fn) if 'pyobject' in self.options and 'lines' in self.options: return [document.reporter.warning( From 13ced8d60668c0220bb2a0e8d37acdd01541ef7d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:32:14 +0200 Subject: [PATCH 5/9] #225: Don't add whitespace in generated HTML after inline tags. --- CHANGES | 2 ++ sphinx/writers/html.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 824fbaa01..c864f9350 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Release 0.6.3 (in development) ============================== +* #225: Don't add whitespace in generated HTML after inline tags. + * #227: Make ``literalinclude`` work when the document's path name contains non-ASCII characters. diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index 76c03c7b1..c15e5ce5b 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -123,7 +123,7 @@ class HTMLTranslator(BaseTranslator): self.body.append(']') def visit_desc_annotation(self, node): - self.body.append(self.starttag(node, 'em', CLASS='property')) + self.body.append(self.starttag(node, 'em', '', CLASS='property')) def depart_desc_annotation(self, node): self.body.append('') @@ -457,7 +457,7 @@ class HTMLTranslator(BaseTranslator): attrs = {} if node.hasattr('explanation'): attrs['title'] = node['explanation'] - self.body.append(self.starttag(node, 'abbr', **attrs)) + self.body.append(self.starttag(node, 'abbr', '', **attrs)) def depart_abbreviation(self, node): self.body.append('') From c32186282fa2f9ddb62b173a9b75d213c941735d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:48:14 +0200 Subject: [PATCH 6/9] #222: Allow the "Footnotes" header to be translated. --- CHANGES | 2 ++ doc/markup/para.rst | 7 ++++--- sphinx/writers/latex.py | 3 ++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index c864f9350..03b1af31c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Release 0.6.3 (in development) ============================== +* #222: Allow the "Footnotes" header to be translated. + * #225: Don't add whitespace in generated HTML after inline tags. * #227: Make ``literalinclude`` work when the document's path diff --git a/doc/markup/para.rst b/doc/markup/para.rst index e8adc75c1..469947ab5 100644 --- a/doc/markup/para.rst +++ b/doc/markup/para.rst @@ -88,9 +88,10 @@ units as well as normal text: .. note:: - If the *title* of the rubric is "Footnotes", this rubric is ignored by - the LaTeX writer, since it is assumed to only contain footnote - definitions and therefore would create an empty heading. + If the *title* of the rubric is "Footnotes" (or the selected language's + equivalent), this rubric is ignored by the LaTeX writer, since it is + assumed to only contain footnote definitions and therefore would create an + empty heading. .. directive:: centered diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 1719f22e7..07eed28ae 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -567,7 +567,8 @@ class LaTeXTranslator(nodes.NodeVisitor): self.body.append("\n\n") def visit_rubric(self, node): - if len(node.children) == 1 and node.children[0].astext() == 'Footnotes': + if len(node.children) == 1 and node.children[0].astext() in \ + ('Footnotes', _('Footnotes')): raise nodes.SkipNode self.body.append('\\paragraph{') self.context.append('}\n') From de3c790694ec6da52b708244829d325c0ca4b879 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:49:06 +0200 Subject: [PATCH 7/9] Update message catalogs. --- sphinx/locale/cs/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/de/LC_MESSAGES/sphinx.po | 34 +++++++++++++---------- sphinx/locale/es/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/fi/LC_MESSAGES/sphinx.po | 29 +++++++++---------- sphinx/locale/fr/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/it/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/ja/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/nl/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/pl/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/ru/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/sl/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/sphinx.pot | 28 +++++++++++-------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 26 +++++++++-------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 26 +++++++++-------- 15 files changed, 231 insertions(+), 172 deletions(-) diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 1f138ef01..c05571112 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-11-27 18:39+0100\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Pavel Kosina \n" "Language-Team: Pavel Kosina \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -32,11 +32,11 @@ msgstr "%d.%m.%Y" msgid "Index" msgstr "Index" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Rejstřík modulů " -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Vyhledávací stránka" @@ -71,8 +71,8 @@ msgstr "Rejstřík indexů" msgid "index" msgstr "index" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Celkový rejstřík modulů" @@ -234,12 +234,12 @@ msgstr "Autor: " msgid "See also" msgstr "Viz také" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -589,11 +589,15 @@ msgstr "Vyhledávání skončilo, nalezeno %s stran." msgid "Release" msgstr "Vydání" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Plný index na jedné stránce" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 3a08fe886..60bd6b83a 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-08-07 21:40+0200\n" -"PO-Revision-Date: 2009-06-16 19:25+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Horst Gutmann \n" "Language-Team: de \n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d. %m. %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -30,11 +30,11 @@ msgstr "%d. %m. %Y" msgid "Index" msgstr "Stichwortverzeichnis" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Modulindex" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Suche" @@ -69,8 +69,8 @@ msgstr "Allgemeiner Index" msgid "index" msgstr "Index" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Globaler Modulindex" @@ -231,12 +231,12 @@ msgstr "Autor: " msgid "See also" msgstr "Siehe auch" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr " Basisklassen: %s" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "Alias von :class:`%s`" @@ -427,7 +427,9 @@ msgstr "Los" #: sphinx/themes/basic/layout.html:81 msgid "Enter search terms or a module, class or function name." -msgstr "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein." +msgstr "" +"Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen " +"ein." #: sphinx/themes/basic/layout.html:119 #, python-format @@ -574,8 +576,8 @@ msgid "" "Your search did not match any documents. Please make sure that all words " "are spelled correctly and that you've selected enough categories." msgstr "" -"Es wurden keine zutreffenden Dokumente gefunden. Haben Sie alle Suchbegriffe richtig " -"geschrieben und genügend Kategorien ausgewählt?" +"Es wurden keine zutreffenden Dokumente gefunden. Haben Sie alle " +"Suchbegriffe richtig geschrieben und genügend Kategorien ausgewählt?" #: sphinx/themes/basic/static/searchtools.js:457 #, python-format @@ -586,11 +588,15 @@ msgstr "Suche beendet, %s zutreffende Seite(n) gefunden." msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "Fortsetzung der vorherigen Seite" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 msgid "Continued on next page" msgstr "Fortsetzung auf der nächsten Seite" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index ceee4ac80..b7718a10a 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: guillem@torroja.dmt.upm.es\n" "POT-Creation-Date: 2008-09-11 23:58+0200\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Guillem Borrell \n" "Language-Team: es \n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, fuzzy, python-format msgid "%B %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "%d de %B de %Y" msgid "Index" msgstr "Índice" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Página de Búsqueda" @@ -72,8 +72,8 @@ msgstr "Índice General" msgid "index" msgstr "índice" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Índice Global de Módulos" @@ -236,12 +236,12 @@ msgstr "Autor:" msgid "See also" msgstr "Ver también" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -599,11 +599,15 @@ msgstr "" msgid "Release" msgstr "Versión" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Índice completo en una página" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 4bfebbdef..922cb1f73 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: sphinx@awot.fi\n" "POT-Creation-Date: 2009-01-24 18:39+0000\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Jukka Inkeri \n" "Language-Team: fi \n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "%d.%m.%Y" msgid "Index" msgstr "Sisällysluettelo" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Etsi sivu" @@ -70,8 +70,8 @@ msgstr "Yleinen sisällysluettelo" msgid "index" msgstr "hakemisto" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Yleinen moduulien sisällysluettelo" @@ -232,12 +232,12 @@ msgstr "Tekijä: " msgid "See also" msgstr "Katso myös" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -578,11 +578,15 @@ msgstr "Etsintä tehty, löydetty %s sivu(a)." msgid "Release" msgstr "" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Hakemisto yhtenä luettelona" @@ -596,6 +600,3 @@ msgstr "Ympäristö" msgid "[image]" msgstr "" -#~ msgid "Ympäristö: %s" -#~ msgstr "" - diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 8274c76c0..a8960ada1 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: larlet@gmail.com\n" "POT-Creation-Date: 2008-08-08 12:39+0000\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Sébastien Douche \n" "Language-Team: French Translation Team \n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d %B %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -32,11 +32,11 @@ msgstr "%d %B %Y" msgid "Index" msgstr "Index" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Index du module" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Page de recherche" @@ -71,8 +71,8 @@ msgstr "Index général" msgid "index" msgstr "index" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Index général des modules" @@ -234,12 +234,12 @@ msgstr "Auteur : " msgid "See also" msgstr "Voir aussi" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -594,11 +594,15 @@ msgstr "La recherche est terminée, %s page(s) correspond(ent) à la requête." msgid "Release" msgstr "Version" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Index complet sur une seule page" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index cdfa9b96c..0529b3cb8 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-11-27 18:39+0100\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Sandro Dentella \n" "Language-Team: \n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d %B %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -30,11 +30,11 @@ msgstr "%d %B %Y" msgid "Index" msgstr "Indice" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Indice dei Moduli" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Cerca" @@ -69,8 +69,8 @@ msgstr "Indice generale" msgid "index" msgstr "indice" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Indice dei moduli" @@ -231,12 +231,12 @@ msgstr "Autore: " msgid "See also" msgstr "Vedi anche" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "alias per :class:`%s`" @@ -588,11 +588,15 @@ msgstr "Ricerca terminata, trovate %s pagine corrispondenti alla ricerca." msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Indice completo in una pagina" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 49c8a9d84..afaedfdcd 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-09-11 23:58+0200\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Yasushi MASUDA \n" "Language-Team: ja \n" "Plural-Forms: nplurals=1; plural=0\n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "%Y 年 %m 月 %d 日" msgid "Index" msgstr "索引" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "検索ページ" @@ -70,8 +70,8 @@ msgstr "総合索引" msgid "index" msgstr "索引" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "モジュール総索引" @@ -233,12 +233,12 @@ msgstr "作者: " msgid "See also" msgstr "参考" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -584,11 +584,15 @@ msgstr "検索が終了し、条件に一致するページが %s 個みつか msgid "Release" msgstr "リリース" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "総索引" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index d450aa700..1b21566fa 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-09-11 23:58+0200\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: nl \n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -16,12 +16,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d. %B %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -30,11 +30,11 @@ msgstr "%d. %B %Y" msgid "Index" msgstr "Index" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Module-index" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Zoekpagina" @@ -69,8 +69,8 @@ msgstr "Algemene index" msgid "index" msgstr "Index" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Globale Module-index" @@ -232,12 +232,12 @@ msgstr "Auteur: " msgid "See also" msgstr "Zie ook" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -591,11 +591,15 @@ msgstr "Zoeken voltooid, %s pagina(s) gevonden." msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Volledige index op een pagina" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 2b15a7936..350280b33 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-08-10 11:43+0000\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Michał Kandulski \n" "Language-Team: \n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && " @@ -14,12 +14,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%B %d %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -28,11 +28,11 @@ msgstr "%B %d %Y" msgid "Index" msgstr "Indeks" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Wyszukiwanie" @@ -67,8 +67,8 @@ msgstr "Indeks ogólny" msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Indeks modułów" @@ -230,12 +230,12 @@ msgstr "Autor: " msgid "See also" msgstr "Zobacz także" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -588,11 +588,15 @@ msgstr "Przeszukiwanie zakończone, znaleziono %s pasujących stron." msgid "Release" msgstr "Wydanie" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Cały indeks na jednej stronie" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 8f5b39892..1d63841f0 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: roger.demetrescu@gmail.com\n" "POT-Creation-Date: 2008-11-09 19:46+0100\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Roger Demetrescu \n" "Language-Team: pt_BR \n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "%d/%m/%Y" msgid "Index" msgstr "Índice" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Página de Pesquisa" @@ -70,8 +70,8 @@ msgstr "Índice Geral" msgid "index" msgstr "índice" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Índice Global de Módulos" @@ -233,12 +233,12 @@ msgstr "Autor: " msgid "See also" msgstr "Veja também" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -594,11 +594,15 @@ msgstr "" msgid "Release" msgstr "Versão" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Índice completo em uma página" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index a1e2e3fc7..cf466c7ec 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.6b1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2009-01-24 18:39+0000\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: alexander smishlajev \n" "Language-Team: ru \n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d %B %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "%d %B %Y" msgid "Index" msgstr "Алфавитный указатель" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Поиск" @@ -70,8 +70,8 @@ msgstr "Словарь-указатель" msgid "index" msgstr "словарь" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Алфавитный указатель модулей" @@ -232,12 +232,12 @@ msgstr "Автор: " msgid "See also" msgstr "См.также" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "псевдоним класса :class:`%s`" @@ -587,11 +587,15 @@ msgstr "Поиск окончен, найдено страниц: %s." msgid "Release" msgstr "Выпуск" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Полный алфавитный указатель на одной странице" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index d33cec311..cba48284f 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-09-11 23:58+0200\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Rok Garbas \n" "Language-Team: Rok Garbas \n" "Plural-Forms: nplurals=1; plural=0\n" @@ -13,12 +13,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%d %B, %Y" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -27,11 +27,11 @@ msgstr "%d %B, %Y" msgid "Index" msgstr "Abecedni seznam" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Iskalna stran" @@ -66,8 +66,8 @@ msgstr "Splošni abecedni seznam" msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Splošen Seznam Modulov" @@ -229,12 +229,12 @@ msgstr "Avtor:" msgid "See also" msgstr "Poglej tudi" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -585,11 +585,15 @@ msgstr "Iskanje končano, najdeno %s strani, ki ustrezajo iskalnemu nizu." msgid "Release" msgstr "Izdaja" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Poln indeks na eni strani" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 68a03a50a..eff6e9835 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 0.6.1+\n" +"Project-Id-Version: Sphinx 0.6.2+/6b02a19ccf31\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2009-05-22 18:18+0200\n" +"POT-Creation-Date: 2009-08-06 22:48+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "" @@ -70,8 +70,8 @@ msgstr "" msgid "index" msgstr "" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "" @@ -232,12 +232,12 @@ msgstr "" msgid "See also" msgstr "" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -578,11 +578,15 @@ msgstr "" msgid "Release" msgstr "" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 msgid "Continued on next page" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 38f838cad..75c933a25 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-12-28 23:40+0100\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Petro Sasnyk \n" "Language-Team: uk_UA \n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " @@ -18,12 +18,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -32,11 +32,11 @@ msgstr "" msgid "Index" msgstr "Індекс" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "Сторінка пошуку" @@ -71,8 +71,8 @@ msgstr "Загальний індекс" msgid "index" msgstr "індекс" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "Загальний індекс модулів" @@ -233,12 +233,12 @@ msgstr "Автор: " msgid "See also" msgstr "Дивись також" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr " Базовий: %s" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "синонім :class:`%s`" @@ -590,11 +590,15 @@ msgstr "Пошук закінчено, знайдено %s сторінок як msgid "Release" msgstr "Реліз" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 #, fuzzy msgid "Continued on next page" msgstr "Повний індекс на одній сторінці" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index d50cd4aaf..6b86de790 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-11-09 19:46+0100\n" -"PO-Revision-Date: 2009-05-22 18:19+0200\n" +"PO-Revision-Date: 2009-08-06 22:48+0200\n" "Last-Translator: Fred Lin \n" "Language-Team: tw \n" "Plural-Forms: nplurals=1; plural=0\n" @@ -17,12 +17,12 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.4\n" -#: sphinx/environment.py:104 sphinx/writers/latex.py:182 +#: sphinx/environment.py:103 sphinx/writers/latex.py:182 #, python-format msgid "%B %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/environment.py:323 sphinx/themes/basic/genindex-single.html:2 +#: sphinx/environment.py:324 sphinx/themes/basic/genindex-single.html:2 #: sphinx/themes/basic/genindex-split.html:2 #: sphinx/themes/basic/genindex-split.html:5 #: sphinx/themes/basic/genindex.html:2 sphinx/themes/basic/genindex.html:5 @@ -31,11 +31,11 @@ msgstr "%Y 年 %m 月 %d 日" msgid "Index" msgstr "索引" -#: sphinx/environment.py:324 sphinx/writers/latex.py:187 +#: sphinx/environment.py:325 sphinx/writers/latex.py:187 msgid "Module Index" msgstr "模組索引" -#: sphinx/environment.py:325 sphinx/themes/basic/defindex.html:16 +#: sphinx/environment.py:326 sphinx/themes/basic/defindex.html:16 msgid "Search Page" msgstr "搜尋頁面" @@ -70,8 +70,8 @@ msgstr "總索引" msgid "index" msgstr "索引" -#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:184 -#: sphinx/builders/qthelp.py:132 sphinx/themes/basic/defindex.html:19 +#: sphinx/builders/html.py:226 sphinx/builders/htmlhelp.py:219 +#: sphinx/builders/qthelp.py:133 sphinx/themes/basic/defindex.html:19 #: sphinx/themes/basic/modindex.html:2 sphinx/themes/basic/modindex.html:13 msgid "Global Module Index" msgstr "" @@ -233,12 +233,12 @@ msgstr "作者:" msgid "See also" msgstr "" -#: sphinx/ext/autodoc.py:889 +#: sphinx/ext/autodoc.py:883 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:920 +#: sphinx/ext/autodoc.py:916 #, python-format msgid "alias of :class:`%s`" msgstr "" @@ -580,11 +580,15 @@ msgstr "" msgid "Release" msgstr "釋出" -#: sphinx/writers/latex.py:637 +#: sphinx/writers/latex.py:571 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:639 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:641 +#: sphinx/writers/latex.py:644 msgid "Continued on next page" msgstr "" From 4e3746c7f3b3b42c058ba6ef8436d71608264069 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:49:47 +0200 Subject: [PATCH 8/9] Update German locale. --- sphinx/locale/de/LC_MESSAGES/sphinx.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 60bd6b83a..a054b142a 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2008-08-07 21:40+0200\n" -"PO-Revision-Date: 2009-08-06 22:48+0200\n" +"PO-Revision-Date: 2009-08-06 22:49+0200\n" "Last-Translator: Horst Gutmann \n" "Language-Team: de \n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -590,7 +590,7 @@ msgstr "Release" #: sphinx/writers/latex.py:571 msgid "Footnotes" -msgstr "" +msgstr "Fußnoten" #: sphinx/writers/latex.py:639 msgid "continued from previous page" From 304255894f6d0bd26c2b7b865fd697cbe3b4d238 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 6 Aug 2009 22:57:12 +0200 Subject: [PATCH 9/9] #220: Fix CSS so that displaymath really is centered. --- CHANGES | 2 ++ sphinx/themes/basic/static/basic.css | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 03b1af31c..d435175c4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ Release 0.6.3 (in development) ============================== +* #220: Fix CSS so that displaymath really is centered. + * #222: Allow the "Footnotes" header to be translated. * #225: Don't add whitespace in generated HTML after inline tags. diff --git a/sphinx/themes/basic/static/basic.css b/sphinx/themes/basic/static/basic.css index 68cae4fc6..128114b76 100644 --- a/sphinx/themes/basic/static/basic.css +++ b/sphinx/themes/basic/static/basic.css @@ -378,7 +378,7 @@ img.math { vertical-align: middle; } -div.math p { +div.body div.math p { text-align: center; }