aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor/e-contact-editor.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-12-06 05:35:55 +0800
committerChris Lahey <clahey@src.gnome.org>2001-12-06 05:35:55 +0800
commitc6658ca9c11447bf932b6b3fb777442d2e1521a9 (patch)
tree4e925e816b02d975d0aa10b46934889535394f8c /addressbook/gui/contact-editor/e-contact-editor.c
parent94611b60abd2ee9f5345c805c7bcaf0269bd818d (diff)
downloadgsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.tar
gsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.tar.gz
gsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.tar.bz2
gsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.tar.lz
gsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.tar.xz
gsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.tar.zst
gsoc2013-evolution-c6658ca9c11447bf932b6b3fb777442d2e1521a9.zip
Merging changes:
2001-12-04 Christopher James Lahey <clahey@ximian.com> * gui/contact-editor/contact-editor.glade: Fixed up the accelerators and such here. * gui/contact-editor/e-contact-editor.c (file_save_as_cb): Translate this string. (pixmaps): Added a pixmap for the ContactEditorSaveClose command. (setup_tab_order): Fixed up the tab order here. * gui/contact-editor/fulladdr.glade: Made the country combo focusable here. svn path=/trunk/; revision=14895
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-editor.c')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index 5abc4af8f7..90c81edef5 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -21,6 +21,8 @@
#include <config.h>
+#include "e-contact-editor.h"
+
#include <time.h>
#include <gtk/gtkcheckbutton.h>
#include <gtk/gtkcheckmenuitem.h>
@@ -51,7 +53,6 @@
#include "e-card-merging.h"
-#include "e-contact-editor.h"
#include "e-contact-editor-address.h"
#include "e-contact-editor-fullname.h"
#include "e-contact-save-as.h"
@@ -974,7 +975,7 @@ file_save_as_cb (GtkWidget *widget, gpointer data)
e_card_simple_sync_card (ce->simple);
card = ce->card;
- e_contact_save_as("Save as VCard", card);
+ e_contact_save_as(_("Save Contact as VCard"), card);
}
static void
@@ -1128,6 +1129,7 @@ BonoboUIVerb verbs [] = {
EPixmap pixmaps[] = {
E_PIXMAP ("/commands/ContactEditorSave", "save-16.png"),
+ E_PIXMAP ("/commands/ContactEditorSaveClose", "save-16.png"),
E_PIXMAP ("/commands/ContactEditorSaveAs", "save-as-16.png"),
E_PIXMAP ("/commands/ContactEditorDelete", "evolution-trash-mini.png"),
E_PIXMAP ("/commands/ContactEditorPrint", "print.xpm"),
@@ -1196,13 +1198,11 @@ setup_tab_order(GladeXML *gui)
list = add_to_tab_order(list, gui, "entry-phone2");
list = add_to_tab_order(list, gui, "entry-phone3");
list = add_to_tab_order(list, gui, "entry-phone4");
- list = g_list_reverse(list);
- e_container_change_tab_order(GTK_CONTAINER(container), list);
- g_list_free(list);
- list = NULL;
list = add_to_tab_order(list, gui, "entry-email1");
+ list = add_to_tab_order(list, gui, "alignment-htmlmail");
list = add_to_tab_order(list, gui, "entry-web");
+ list = add_to_tab_order(list, gui, "button-fulladdr");
list = add_to_tab_order(list, gui, "text-address");
list = add_to_tab_order(list, gui, "alignment-contacts");
list = g_list_reverse(list);