aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-notification/mail-notification.c
diff options
context:
space:
mode:
authorClaude Paroz <claudep@src.gnome.org>2007-07-20 22:35:16 +0800
committerClaude Paroz <claudep@src.gnome.org>2007-07-20 22:35:16 +0800
commit2edaf2d67d0024f3509f250be88d139453e9427a (patch)
tree28c26125c1c1af681613bd57b3ba715db95096d9 /plugins/mail-notification/mail-notification.c
parent96811f70b6db1820b5b14dea54af39f9e371f93a (diff)
downloadgsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.gz
gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.zst
gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.zip
Fixed syntax of ngettext.
svn path=/trunk/; revision=33824
Diffstat (limited to 'plugins/mail-notification/mail-notification.c')
-rw-r--r--plugins/mail-notification/mail-notification.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c
index 3d2bcd2eaa..2e3938d6fc 100644
--- a/plugins/mail-notification/mail-notification.c
+++ b/plugins/mail-notification/mail-notification.c
@@ -129,7 +129,7 @@ org_gnome_mail_new_notify (EPlugin *ep, EMEventTargetFolder *t)
}
folder = em_utils_folder_name_from_uri (t->uri);
- msg = g_strdup_printf (ngettext(_("You have received %d new message in %s."), _("You have received %d new messages in %s."), t->new), t->new, folder);
+ msg = g_strdup_printf (ngettext("You have received %d new message in %s.", "You have received %d new messages in %s.", t->new), t->new, folder);
gtk_status_icon_set_tooltip (status_icon, msg);
gtk_status_icon_set_visible (status_icon, TRUE);