aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-12-28 12:16:48 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-12-28 12:16:48 +0800
commita6c6f6d90674cf789a114768f8597086b572ffae (patch)
treedeba09b296186f3695a51cec37ae1a71b394fe6c /mail
parent8e2b445e9dd2ec76be420bfffdf13bbacae14a3e (diff)
downloadgsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar
gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.gz
gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.bz2
gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.lz
gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.xz
gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.tar.zst
gsoc2013-evolution-a6c6f6d90674cf789a114768f8597086b572ffae.zip
Solve a translation issue related to the New menu.
svn path=/branches/kill-bonobo/; revision=36934
Diffstat (limited to 'mail')
-rw-r--r--mail/e-mail-reader.c2
-rw-r--r--mail/e-mail-shell-module.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c
index ca23deda78..112e8e9a80 100644
--- a/mail/e-mail-reader.c
+++ b/mail/e-mail-reader.c
@@ -1521,7 +1521,7 @@ e_mail_reader_init (EMailReader *reader)
action = gtk_action_group_get_action (action_group, "mail-previous");
g_object_set (action, "short-label", _("Previous"), NULL);
- action = gtk_action_group_get_action (action_group, "mail-reply");
+ action = gtk_action_group_get_action (action_group, "mail-reply-sender");
g_object_set (action, "short-label", _("Reply"), NULL);
/* Connect signals. */
diff --git a/mail/e-mail-shell-module.c b/mail/e-mail-shell-module.c
index c918cf64af..2accb7db94 100644
--- a/mail/e-mail-shell-module.c
+++ b/mail/e-mail-shell-module.c
@@ -459,7 +459,7 @@ static GtkActionEntry item_entries[] = {
{ "mail-message-new",
"mail-message-new",
- N_("_Mail Message"), /* XXX C_() here */
+ NC_("New", "_Mail Message"),
"<Shift><Control>m",
N_("Compose a new mail message"),
G_CALLBACK (action_mail_message_new_cb) }
@@ -469,7 +469,7 @@ static GtkActionEntry source_entries[] = {
{ "mail-folder-new",
"folder-new",
- N_("Mail _Folder"),
+ NC_("New", "Mail _Folder"),
NULL,
N_("Create a new mail folder"),
G_CALLBACK (action_mail_folder_new_cb) }