ansel/utf8 encodings

svn: r1258
This commit is contained in:
Don Allingham
2003-01-19 06:25:20 +00:00
parent af7a07d49d
commit a9f8fe034f
15 changed files with 480 additions and 487 deletions

View File

@@ -54,7 +54,7 @@ class DispBox:
self.person = person
self.root = root
self.name = person.getPrimaryName().getName()
self.name = GrampsCfg.nameof(person)
self.exp = "%s\nb. %s\nd. %s" % (self.name,person.getBirth().getDate(),
person.getDeath().getDate())
@@ -178,7 +178,7 @@ class PedigreeView:
for t in list:
if t:
for n in [t[0].getPrimaryName().getName(),
for n in [GrampsCfg.nameof(t[0]),
"b. %s" % t[0].getBirth().getDate(),
"d. %s" % t[0].getDeath().getDate()]:
a.set_text(n,len(n))