diff options
author | Rathin <rathinusa@yahoo.co.in> | 2011-06-14 20:26:30 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:27 +0800 |
commit | 075e48579b3012928bc715e9e3058f16ffa52f3f (patch) | |
tree | 52f1182dfcc2605c2410576122f644f800b47fa4 /mail/e-mail-display.c | |
parent | 5de8b9f77e7bbe189a160e345bb452b648392919 (diff) | |
download | gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.gz gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.bz2 gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.lz gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.xz gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.tar.zst gsoc2013-evolution-075e48579b3012928bc715e9e3058f16ffa52f3f.zip |
Bug #530335 - Allow Reply to selected address only
Diffstat (limited to 'mail/e-mail-display.c')
-rw-r--r-- | mail/e-mail-display.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mail/e-mail-display.c b/mail/e-mail-display.c index ed88fec808..aa3c4bd3d2 100644 --- a/mail/e-mail-display.c +++ b/mail/e-mail-display.c @@ -48,6 +48,7 @@ static const gchar *ui = " <popup name='context'>" " <placeholder name='custom-actions-1'>" " <menuitem action='add-to-address-book'/>" +" <menuitem action='send-reply'/>" " </placeholder>" " <placeholder name='custom-actions-3'>" " <menu action='search-folder-menu'>" @@ -81,6 +82,13 @@ static GtkActionEntry mailto_entries[] = { NULL, /* XXX Add a tooltip! */ NULL /* Handled by EMailReader */ }, + { "send-reply", + NULL, + N_("Send _Reply To..."), + NULL, + N_("Send a reply message to this address"), + NULL /* Handled by EMailReader */ }, + /*** Menus ***/ { "search-folder-menu", |