diff --git a/ChangeLog b/ChangeLog index 2cff9fefd..a02d7c8bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,9 @@ * src/ScratchPad.py: remove tooltip for events as it crashes. * src/Utils.py: cleanup +2008-01-17 Benny Malengier + * src/DataViews/RelationView.py: shorter toolbar strings, #1553 + 2008-01-17 Benny Malengier * src/plugins/WriteCD.py: check if gnome is the desktop, #1599 diff --git a/src/DataViews/RelationView.py b/src/DataViews/RelationView.py index 9f493de8d..cca9abe9f 100644 --- a/src/DataViews/RelationView.py +++ b/src/DataViews/RelationView.py @@ -276,9 +276,9 @@ class RelationshipView(PageView.PersonNavView): - - - + + + @@ -328,13 +328,21 @@ class RelationshipView(PageView.PersonNavView): self.family_action.add_actions([ ('Edit', gtk.STOCK_EDIT, _('Edit'), None , _("Edit the active person"), self.edit_active), - ('AddSpouse', 'gramps-spouse', _('Add partner'), None , + ('AddSpouse', 'gramps-spouse', _('Partner'), None , _("Add a new family with person as parent"), self.add_spouse), - ('AddParents', 'gramps-parents-add', _('Add new parents'), None , + ('AddSpouseMenu', 'gramps-spouse', _('Add partner'), None , + _("Add a new family with person as parent"), self.add_spouse), + ('AddParents', 'gramps-parents-add', _('Add'), None , _("Add a new set of parents"), self.add_parents), - ('ShareFamily', 'gramps-parents-open', _('Add existing parents'), + ('AddParentsMenu', 'gramps-parents-add', _('Add new parents'), + None, _("Add a new set of parents"), self.add_parents), + ('ShareFamily', 'gramps-parents-open', _('Share'), None , _("Add person as child to an existing family"), self.select_parents), + ('ShareFamilyMenu', 'gramps-parents-open', + _('Add existing parents'), None , + _("Add person as child to an existing family"), + self.select_parents), ]) self._add_action_group(self.order_action)