diff options
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 7 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index a9bf1d4d7c..27a0bf9826 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,10 @@ +2004-05-18 Jerome Lacoste <jerome@coffeebreaks.org> + + Fixes #57940 + + * gui/widgets/e-addressbook-view.c: "Save as VCard" -> + "Save as VCard..." + 2004-05-17 Hans Petter Jansson <hpj@ximian.com> * gui/contact-editor/e-contact-editor.c (e_contact_editor_init): diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c index 0c36039701..16177afa68 100644 --- a/addressbook/gui/widgets/e-addressbook-view.c +++ b/addressbook/gui/widgets/e-addressbook-view.c @@ -847,7 +847,7 @@ save_as (GtkWidget *widget, ContactAndBook *contact_and_book) { GList *contacts = get_contact_list (contact_and_book); if (contacts) { - eab_contact_list_save(_("Save as VCard"), contacts, NULL); + eab_contact_list_save(_("Save as VCard..."), contacts, NULL); e_free_object_list(contacts); } } @@ -1067,7 +1067,7 @@ do_popup_menu(EABView *view, GdkEvent *event) E_POPUP_ITEM (N_("Pilot Settings..."), G_CALLBACK (pilot_settings), 0), #endif E_POPUP_SEPARATOR, - E_POPUP_ITEM (N_("Save as VCard"), G_CALLBACK(save_as), POPUP_NOSELECTION_MASK), + E_POPUP_ITEM (N_("Save as VCard..."), G_CALLBACK(save_as), POPUP_NOSELECTION_MASK), E_POPUP_ITEM (N_("Forward Contact"), G_CALLBACK(send_as), POPUP_NOSELECTION_MASK), E_POPUP_ITEM (N_("Send Message to Contact"), G_CALLBACK(send_to), POPUP_NOSELECTION_MASK | POPUP_NOEMAIL_MASK), E_POPUP_ITEM (N_("Print"), G_CALLBACK(print), POPUP_NOSELECTION_MASK), @@ -2073,7 +2073,7 @@ eab_view_save_as (EABView *view) { GList *list = get_selected_contacts (view); if (list) - eab_contact_list_save (_("Save as VCard"), list, NULL); + eab_contact_list_save (_("Save as VCard..."), list, NULL); e_free_object_list(list); } |