diff options
author | JP Rosevear <jpr@ximian.com> | 2002-02-08 03:36:50 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-02-08 03:36:50 +0800 |
commit | ffbfce483236f609599807572ca8366d1115d88a (patch) | |
tree | 65e762de9a3b9ecfcd8d861340629b55105bfdbb /addressbook | |
parent | 70398dd9e66a5b78c847ad45e42a168e99b5893a (diff) | |
download | gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.tar gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.tar.gz gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.tar.bz2 gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.tar.lz gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.tar.xz gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.tar.zst gsoc2013-evolution-ffbfce483236f609599807572ca8366d1115d88a.zip |
remove "New" from user creatable menu items
2002-02-07 JP Rosevear <jpr@ximian.com>
* gui/component/addressbook-component.c (create_component): remove
"New" from user creatable menu items
svn path=/trunk/; revision=15596
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-component.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index ee2ba67f15..f4396c4f97 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2002-02-07 JP Rosevear <jpr@ximian.com> + + * gui/component/addressbook-component.c (create_component): remove + "New" from user creatable menu items + 2002-02-07 Christopher James Lahey <clahey@ximian.com> * gui/widgets/e-addressbook-view.c, diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c index d214fe6199..7b3e78720d 100644 --- a/addressbook/gui/component/addressbook-component.c +++ b/addressbook/gui/component/addressbook-component.c @@ -524,10 +524,10 @@ create_component (void) BONOBO_OBJECT (destination_interface)); evolution_shell_component_add_user_creatable_item (shell_component, "contact", - _("New Contact"), _("New _Contact"), 'c', + _("New Contact"), _("_Contact"), 'c', NULL); evolution_shell_component_add_user_creatable_item (shell_component, "contact_list", - _("New Contact List"), _("New Contact _List"), 'l', + _("New Contact List"), _("Contact _List"), 'l', NULL); gtk_signal_connect (GTK_OBJECT (shell_component), "owner_set", |