aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/mail-display.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index efbf63423f..6ce834d78a 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,11 @@
2001-06-28 Ettore Perazzoli <ettore@ximian.com>
+ * mail-display.c: Fix case of labels in the `link_menu' so that it
+ is consistent with that of the other menus in Evolution
+ [i.e. "Copy Link Location" instead of "Copy Location" etc.].
+
+2001-06-28 Ettore Perazzoli <ettore@ximian.com>
+
* mail-display.c (invisible_selection_get_callback): New, signal
handler for "selection_get" on the GtkInvisible widget we use for
selections.
diff --git a/mail/mail-display.c b/mail/mail-display.c
index 75d93cc631..36665a8bd6 100644
--- a/mail/mail-display.c
+++ b/mail/mail-display.c
@@ -1307,11 +1307,11 @@ link_copy_location (GtkWidget *w, MailDisplay *mail_display)
#define TERMINATOR { NULL, NULL, (NULL), NULL, 0 }
static EPopupMenu link_menu [] = {
- { N_("Open link in browser"), NULL,
+ { N_("Open Link in Browser"), NULL,
GTK_SIGNAL_FUNC (link_open_in_browser), NULL, 0 },
{ N_("Save as (FIXME)"), NULL,
GTK_SIGNAL_FUNC (link_save_as), NULL, 0 },
- { N_("Copy location"), NULL,
+ { N_("Copy Link Location"), NULL,
GTK_SIGNAL_FUNC (link_copy_location), NULL, 0 },
TERMINATOR