diff options
author | Jerome Lacoste <jerome@coffeebreaks.org> | 2004-05-19 03:00:08 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2004-05-19 03:00:08 +0800 |
commit | 3d0b57bcfeebc33b798f60f1b6703278f763baff (patch) | |
tree | 9211473f90db200eb1ad946dd2a89313770d8a21 /addressbook/gui/widgets | |
parent | fefa2c7ef6e88dbf14bc88704432fad4b7b50f8b (diff) | |
download | gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar.gz gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar.zst gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.zip |
Fixes #57940
2004-05-18 Jerome Lacoste <jerome@coffeebreaks.org>
Fixes #57940
* gui/widgets/e-addressbook-view.c: "Save as VCard" ->
"Save as VCard..."
svn path=/trunk/; revision=25962
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-view.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |