aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-08-18 03:40:33 +0800
committerChris Lahey <clahey@src.gnome.org>2001-08-18 03:40:33 +0800
commit7473860c9fc3aa301cbb51da28928e63e74117b1 (patch)
treefec97c0fbacbbf795509959f81ba68eb3c8c3177
parent2968652a61a5e69556559c304b9362f049fa1544 (diff)
downloadgsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.tar
gsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.tar.gz
gsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.tar.bz2
gsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.tar.lz
gsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.tar.xz
gsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.tar.zst
gsoc2013-evolution-7473860c9fc3aa301cbb51da28928e63e74117b1.zip
Changed the messages here in the right click menus.
2001-08-17 Christopher James Lahey <clahey@ximian.com> * gui/widgets/e-addressbook-reflow-adapter.c (e_addressbook_reflow_adapter_right_click), gui/widgets/e-addressbook-view.c (table_right_click): Changed the messages here in the right click menus. svn path=/trunk/; revision=12171
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/widgets/e-addressbook-reflow-adapter.c4
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c4
3 files changed, 11 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 46cd02d448..997c8a480b 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2001-08-17 Christopher James Lahey <clahey@ximian.com>
+
+ * gui/widgets/e-addressbook-reflow-adapter.c
+ (e_addressbook_reflow_adapter_right_click),
+ gui/widgets/e-addressbook-view.c (table_right_click): Changed the
+ messages here in the right click menus.
+
2001-08-17 Chris Toshok <toshok@ximian.com>
* backend/pas/pas-backend-ldap.c (view_destroy): unref our
diff --git a/addressbook/gui/widgets/e-addressbook-reflow-adapter.c b/addressbook/gui/widgets/e-addressbook-reflow-adapter.c
index 8c4468d736..b9f4917015 100644
--- a/addressbook/gui/widgets/e-addressbook-reflow-adapter.c
+++ b/addressbook/gui/widgets/e-addressbook-reflow-adapter.c
@@ -264,8 +264,8 @@ e_addressbook_reflow_adapter_right_click (EAddressbookReflowAdapter *adapter, Gd
ModelAndSelection *mns = g_new(ModelAndSelection, 1);
EPopupMenu menu[] = { {N_("Open"), NULL, GTK_SIGNAL_FUNC(open_card), NULL, 0},
{N_("Save as VCard"), NULL, GTK_SIGNAL_FUNC(save_as), NULL, 0},
- {N_("Send contact to other"), NULL, GTK_SIGNAL_FUNC(send_as), NULL, 0},
- {N_("Send message to contact"), NULL, GTK_SIGNAL_FUNC(send_to), NULL, 0},
+ {N_("Forward Contact"), NULL, GTK_SIGNAL_FUNC(send_as), NULL, 0},
+ {N_("Send Message to Contact"), NULL, GTK_SIGNAL_FUNC(send_to), NULL, 0},
{N_("Print"), NULL, GTK_SIGNAL_FUNC(print), NULL, 0},
#if 0 /* Envelope printing is disabled for Evolution 1.0. */
{N_("Print Envelope"), NULL, GTK_SIGNAL_FUNC(print_envelope), NULL, 0},
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index 1f392a998b..d285fa283a 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -670,8 +670,8 @@ table_right_click(ETableScrolled *table, gint row, gint col, GdkEvent *event, EA
EPopupMenu menu[] = {
{N_("Save as VCard"), NULL, GTK_SIGNAL_FUNC(save_as), NULL, 0},
- {N_("Send contact to other"), NULL, GTK_SIGNAL_FUNC(send_as), NULL, 0},
- {N_("Send message to contact"), NULL, GTK_SIGNAL_FUNC(send_to), NULL, 0},
+ {N_("Forward Contact"), NULL, GTK_SIGNAL_FUNC(send_as), NULL, 0},
+ {N_("Send Message to Contact"), NULL, GTK_SIGNAL_FUNC(send_to), NULL, 0},
{N_("Print"), NULL, GTK_SIGNAL_FUNC(print), NULL, 0},
#if 0 /* Envelope printing is disabled for Evolution 1.0. */
{N_("Print Envelope"), NULL, GTK_SIGNAL_FUNC(print_envelope), NULL, 0},