fixed #3335: gettext does not extract field_name of a field in a field_list

This commit is contained in:
shimizukawa 2017-01-15 11:55:17 +09:00
parent 4d6d8ae369
commit da18a1a951
2 changed files with 2 additions and 0 deletions

View File

@ -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)

View File

@ -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`