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:
parent
231c21ce4c
commit
824df0bf5a
@ -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.
|
||||
|
||||
|
@ -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)')
|
||||
|
Loading…
Reference in New Issue
Block a user