aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorJerome Lacoste <jerome@coffeebreaks.org>2004-05-19 03:00:08 +0800
committerHans Petter <hansp@src.gnome.org>2004-05-19 03:00:08 +0800
commit3d0b57bcfeebc33b798f60f1b6703278f763baff (patch)
tree9211473f90db200eb1ad946dd2a89313770d8a21 /addressbook
parentfefa2c7ef6e88dbf14bc88704432fad4b7b50f8b (diff)
downloadgsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar
gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar.gz
gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar.bz2
gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar.lz
gsoc2013-evolution-3d0b57bcfeebc33b798f60f1b6703278f763baff.tar.xz
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')
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c6
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);
}