Merge branch 'stable'

This commit is contained in:
Takeshi KOMIYA 2016-09-29 00:23:50 +09:00
commit 984874fc20
16 changed files with 11 additions and 7 deletions

View File

@ -183,6 +183,8 @@ Bugs fixed
* #2931: code-block directive with same :caption: causes warning of duplicate
target. Now `code-block` and `literalinclude` does not define hyperlink
target using its caption automatially.
* #2962: latex: missing label of longtable
* #2968: autodoc: show-inheritance option breaks docstrings
Release 1.4.6 (released Aug 20, 2016)
=====================================

View File

@ -446,7 +446,7 @@ msgstr "Page de recherche"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Bases: %s"
msgstr " Bases: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -441,7 +441,7 @@ msgstr "Cerca"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Basi: %s"
msgstr " Basi: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -439,7 +439,7 @@ msgstr "पानामा खोज्नुहोस्"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Bases: %s"
msgstr " Bases: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -440,7 +440,7 @@ msgstr "Página de Busca"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Bases: %s"
msgstr " Bases: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -439,7 +439,7 @@ msgstr "Página de Pesquisa"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Bases: %s"
msgstr " Bases: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -439,7 +439,7 @@ msgstr "Pagină de Căutare"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Baze: %s"
msgstr " Baze: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -440,7 +440,7 @@ msgstr "Stránka hľadania"
#: sphinx/ext/autodoc.py:1265
#, python-format
msgid " Bases: %s"
msgstr "Základné: %s"
msgstr " Základné: %s"
#: sphinx/ext/autodoc.py:1318
#, python-format

View File

@ -1025,6 +1025,8 @@ class LaTeXTranslator(nodes.NodeVisitor):
self.body.append('}')
for id in self.pop_hyperlink_ids('table'):
self.body.append(self.hypertarget(id, anchor=False))
if node['ids']:
self.body.append(self.hypertarget(node['ids'][0], anchor=False))
self.body.append(u'\\\\\n')
if self.table.longtable:
self.body.append('\\hline\n')