2004-11-12 Tim Waugh <twaugh@redhat.com>

* src/plugins/Ancestors.py (person_name): Handle surname prefix (patch
        from Julio Sanchez).


svn: r3724
This commit is contained in:
Tim Waugh 2004-11-12 13:09:41 +00:00
parent 1f20b40d55
commit 986f3fe9aa
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-11-12 Tim Waugh <twaugh@redhat.com>
* src/plugins/Ancestors.py (person_name): Handle surname prefix (patch
from Julio Sanchez).
2004-11-11 Alex Roitman <shura@alex.neuro.umn.edu>
* src/DateDisplay.py: Add Russian displayer.

View File

@ -665,6 +665,10 @@ class ComprehensiveAncestorsReport (Report.Report):
nick = nick[:-1]
name += ' ("%s")' % nick
spfx = primary.getSurnamePrefix ()
if spfx:
name += ' ' + spfx
if last.replace ('?', '') == '':
if first_replaced == '':
name += _(' (unknown)')