2371: translate family attributes

svn: r16101
This commit is contained in:
Jérôme Rapinat 2010-11-01 15:33:53 +00:00
parent fec4833e24
commit 56ed2ce45e

View File

@ -659,8 +659,9 @@ class DetDescendantReport(Report):
for attr in attrs:
self.doc.start_paragraph('DDR-MoreDetails')
attrName = str(attr.get_type())
text = self._("%(type)s: %(value)s%(endnotes)s") % {
'type' : attr.get_type(),
'type' : self._(attrName),
'value' : attr.get_value(),
'endnotes' : self.endnotes(attr) }
self.doc.write_text_citation( text )