* src/plugins/Verify.py (on_apply_clicked): Append warnings
to errors instead of overwriting; determine actual dates of burial and baptism; (get_year): Correctly compare calendar names. * src/plugins/rel_it.py: removed translatable strings (should be already italian). * src/plugins/IndivComplete.py (_get_report_filters): Set both ancestor and descendant filters to be inclusive. * src/plugins/RelGraph.py (get_report_filters): Set both ancestor and descendant filters to be inclusive. * src/plugins/TimeLine.py (_get_report_filters): Set both ancestor and descendant filters to be inclusive. * src/plugins/WebPage.py (get_report_filters): Set both ancestor and descendant filters to be inclusive. * src/plugins/WriteFtree.py (__init__): Set both ancestor and descendant filters to be inclusive. * src/plugins/Ancestors.py (person_name): Use translated name type. svn: r3454
This commit is contained in:
@ -109,11 +109,11 @@ class FtreeWriter:
|
||||
|
||||
des = GenericFilter.GenericFilter()
|
||||
des.set_name(_("Descendants of %s") % person.get_primary_name().get_name())
|
||||
des.add_rule(GenericFilter.IsDescendantOf([person.get_handle()]))
|
||||
des.add_rule(GenericFilter.IsDescendantOf([person.get_handle(),1]))
|
||||
|
||||
ans = GenericFilter.GenericFilter()
|
||||
ans.set_name(_("Ancestors of %s") % person.get_primary_name().get_name())
|
||||
ans.add_rule(GenericFilter.IsAncestorOf([person.get_handle()]))
|
||||
ans.add_rule(GenericFilter.IsAncestorOf([person.get_handle(),1]))
|
||||
|
||||
com = GenericFilter.GenericFilter()
|
||||
com.set_name(_("People with common ancestor with %s") %
|
||||
|
Reference in New Issue
Block a user