diff options
author | Claude Paroz <claudep@src.gnome.org> | 2007-07-20 22:35:16 +0800 |
---|---|---|
committer | Claude Paroz <claudep@src.gnome.org> | 2007-07-20 22:35:16 +0800 |
commit | 2edaf2d67d0024f3509f250be88d139453e9427a (patch) | |
tree | 28c26125c1c1af681613bd57b3ba715db95096d9 /plugins | |
parent | 96811f70b6db1820b5b14dea54af39f9e371f93a (diff) | |
download | gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.gz gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.bz2 gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.lz gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.xz gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.tar.zst gsoc2013-evolution-2edaf2d67d0024f3509f250be88d139453e9427a.zip |
Fixed syntax of ngettext.
svn path=/trunk/; revision=33824
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mail-notification/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/mail-notification/mail-notification.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/mail-notification/ChangeLog b/plugins/mail-notification/ChangeLog index 2ca262f8b9..e930ec7372 100644 --- a/plugins/mail-notification/ChangeLog +++ b/plugins/mail-notification/ChangeLog @@ -1,3 +1,8 @@ +2007-07-20 Claude Paroz <claude@2xlibre.net> + + * mail-notification.c: (org_gnome_mail_new_notify): Fixed syntax of + ngettext. + 2007-07-05 Srinivasa Ragavan <sragavan@novell.com> ** Fix for byug #452900 from Cosimo Cecchi 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); |