From 3f77cd5fb9ee63778471a60e3fc73146b2dc918e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Thu, 21 Apr 2011 16:26:15 +0000 Subject: [PATCH] enable translation on title enum list svn: r17187 --- src/plugins/drawreport/DescendTree.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/drawreport/DescendTree.py b/src/plugins/drawreport/DescendTree.py index e4e6a8c56..6d502d931 100644 --- a/src/plugins/drawreport/DescendTree.py +++ b/src/plugins/drawreport/DescendTree.py @@ -1633,16 +1633,16 @@ class DescendTreeOptions(MenuReportOptions): def __Title_enum(self): item_list = [ - [0, "Do not include a title" ], - [1, "Descendant Chart for [selected person(s)]" ], + [0, _("Do not include a title") ], + [1, _("Descendant Chart for [selected person(s)]") ], ] if self.name != _RPT_NAME: item_list.append( - [2, "Family Chart for [names of chosen family]" ] + [2, _("Family Chart for [names of chosen family]") ] ) if self.showparents.get_value(): item_list.append( - [3, "Cousin Chart for [names of children]" ] + [3, _("Cousin Chart for [names of children]") ] ) self.title.set_items(item_list)