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

@ -1,3 +1,7 @@
2006-05-22 Alex Roitman <shura@gramps-project.org>
* data/gramps.schemas.in: Typos.
* src/DataViews/_PedigreeView.py (rebuild): Typo.
2006-05-22 Don Allingham <don@gramps-project.org>
* src/DataViews/_FamilyView.py: start shading of data

View File

@ -548,7 +548,7 @@
<short>Information shown in statusbar</short>
<long>If set to 0 or 1, the statusbar will the name and GRAMPS ID
of an active person. If set to 2, the statusbar will show the
relationship of the active person tp the Default Person.</long>
relationship of the active person to the Default Person.</long>
</locale>
</schema>
@ -563,7 +563,7 @@
<long>This key determines the style of the surname guessing when
the new person is added to the database. Use 0 for Father's surname,
1 for no guessing, 2 for the combination of mother's and father's
surnames, and 3 foe the Icelandic style.</long>
surnames, and 3 for the Icelandic style.</long>
</locale>
</schema>

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))