2006-05-22 Alex Roitman <shura@gramps-project.org>

* data/gramps.schemas.in: Typos.
	* src/DataViews/_PedigreeView.py (rebuild): Typo.



svn: r6753
This commit is contained in:
Alex Roitman
2006-05-23 04:59:50 +00:00
parent 4200f34ab2
commit 8b9b3112d8
4 changed files with 8 additions and 4 deletions

View File

@@ -353,7 +353,7 @@ class FamilyView(PageView.PersonNavView):
fmt = '<span size="larger" weight="bold">%s %s</span>'
text = fmt % (cgi.escape(name), _GenderCode[person.gender])
label = GrampsWidgets.MarkupLabel(text)
button = GrampsWidgets.IconButton(self.edit_button_press, person.handle)
button = GrampsWidgets.IconButton(self.edit_button_press,person.handle)
hbox = GrampsWidgets.LinkBox(label, button)
table.attach(hbox, 0, 2, 0, 1)

View File

@@ -907,7 +907,7 @@ class PedigreeView(PageView.PersonNavView):
l = gtk.Button("")
if lst[1]:
l.connect("clicked",self.on_childmenu_changed,lst[1][0].handle)
self.tooltips.set_tip(l, _("jump to father"))
self.tooltips.set_tip(l, _("Jump to father"))
else:
l.set_sensitive(False)
ymid = int(math.floor(ymax/4))