* src/grampslib.i: same fixes as grampslib_wrap.c

* src/plugins/RelCalc.py: use preferred name format


svn: r2695
This commit is contained in:
Don Allingham
2004-01-23 03:38:23 +00:00
parent 28a7b09c64
commit e2b4392a39
2 changed files with 42 additions and 13 deletions

View File

@@ -43,6 +43,7 @@ import gtk.glade
#-------------------------------------------------------------------------
import Utils
import GrampsCfg
import ListModel
import Plugins
from gettext import gettext as _
@@ -136,8 +137,8 @@ class RelCalc:
commontext = ""
text1 = self.glade.get_widget("text1").get_buffer()
p1 = self.person.getPrimaryName().getName()
p2 = other_person.getPrimaryName().getName()
p1 = GrampsCfg.nameof(self.person)
p2 = GrampsCfg.nameof(other_person)
if rel_string == "":
rstr = _("%(person)s and %(active_person)s are not related.") % {