diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-29 04:12:48 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-06-29 04:12:48 +0800 |
commit | 7ff106049038bfd8dbded3210b179eb985b0601d (patch) | |
tree | dc3197440a2eb8b016895909530d3cdce9fa3d55 | |
parent | 76190d873c23d99733b75f245e60fd7744acd35e (diff) | |
download | gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.tar gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.tar.gz gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.tar.bz2 gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.tar.lz gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.tar.xz gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.tar.zst gsoc2013-evolution-7ff106049038bfd8dbded3210b179eb985b0601d.zip |
Capitalize words in the link right-click menu to make it consistent
with the other menus.
svn path=/trunk/; revision=10573
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-display.c | 4 |
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 |