enable translation on title enum list
svn: r17188
This commit is contained in:
parent
bf23e340db
commit
e66777a888
@ -1633,16 +1633,16 @@ class DescendTreeOptions(MenuReportOptions):
|
|||||||
|
|
||||||
def __Title_enum(self):
|
def __Title_enum(self):
|
||||||
item_list = [
|
item_list = [
|
||||||
[0, "Do not include a title" ],
|
[0, _("Do not include a title") ],
|
||||||
[1, "Descendant Chart for [selected person(s)]" ],
|
[1, _("Descendant Chart for [selected person(s)]") ],
|
||||||
]
|
]
|
||||||
if self.name != _RPT_NAME:
|
if self.name != _RPT_NAME:
|
||||||
item_list.append(
|
item_list.append(
|
||||||
[2, "Family Chart for [names of chosen family]" ]
|
[2, _("Family Chart for [names of chosen family]") ]
|
||||||
)
|
)
|
||||||
if self.showparents.get_value():
|
if self.showparents.get_value():
|
||||||
item_list.append(
|
item_list.append(
|
||||||
[3, "Cousin Chart for [names of children]" ]
|
[3, _("Cousin Chart for [names of children]") ]
|
||||||
)
|
)
|
||||||
self.title.set_items(item_list)
|
self.title.set_items(item_list)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user