mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
fixed #3335: gettext does not extract field_name of a field in a field_list
This commit is contained in:
parent
4d6d8ae369
commit
da18a1a951
1
CHANGES
1
CHANGES
@ -34,6 +34,7 @@ Bugs fixed
|
|||||||
* #3328: Could not refer rubric implicitly
|
* #3328: Could not refer rubric implicitly
|
||||||
* #3329: emit warnings if po file is invalid and can't read it. Also writing mo too.
|
* #3329: emit warnings if po file is invalid and can't read it. Also writing mo too.
|
||||||
* #3337: Ugly rendering of definition list term's classifier.
|
* #3337: Ugly rendering of definition list term's classifier.
|
||||||
|
* #3335: gettext does not extract field_name of a field in a field_list
|
||||||
|
|
||||||
|
|
||||||
Release 1.5.1 (released Dec 13, 2016)
|
Release 1.5.1 (released Dec 13, 2016)
|
||||||
|
@ -67,6 +67,7 @@ def apply_source_workaround(node):
|
|||||||
nodes.rubric, # #1305 rubric directive
|
nodes.rubric, # #1305 rubric directive
|
||||||
nodes.line, # #1477 line node
|
nodes.line, # #1477 line node
|
||||||
nodes.image, # #3093 image directive in substitution
|
nodes.image, # #3093 image directive in substitution
|
||||||
|
nodes.field_name, # #3335 field list syntax
|
||||||
))):
|
))):
|
||||||
node.source = find_source_node(node)
|
node.source = find_source_node(node)
|
||||||
node.line = 0 # need fix docutils to get `node.line`
|
node.line = 0 # need fix docutils to get `node.line`
|
||||||
|
Loading…
Reference in New Issue
Block a user