From a999b463a02990600e5af366700eda6f0eef57cf Mon Sep 17 00:00:00 2001 From: Johnny Jacob Date: Mon, 28 Jan 2008 09:58:09 +0000 Subject: Added proper translator comments for strings svn path=/trunk/; revision=34917 --- plugins/mail-notification/ChangeLog | 5 +++++ plugins/mail-notification/mail-notification.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'plugins') diff --git a/plugins/mail-notification/ChangeLog b/plugins/mail-notification/ChangeLog index 0da9cb2136..b14337ce9a 100644 --- a/plugins/mail-notification/ChangeLog +++ b/plugins/mail-notification/ChangeLog @@ -1,3 +1,8 @@ +2008-01-28 Johnny Jacob + + * mail-notification.c (new_notify_status): Adding proper + comments for strings. + 2008-01-28 Johnny Jacob ** Fixes Bug #511226. diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c index 239f466344..c88e08bd49 100644 --- a/plugins/mail-notification/mail-notification.c +++ b/plugins/mail-notification/mail-notification.c @@ -356,9 +356,10 @@ new_notify_status (EMEventTargetFolder *t) status_icon = gtk_status_icon_new (); gtk_status_icon_set_from_pixbuf (status_icon, e_icon_factory_get_icon ("mail-unread", E_ICON_SIZE_LARGE_TOOLBAR)); } - /* Translators : '%d' is the number of mails recieved and '%s' is the name of the folder*/ + if (!status_count) { status_count = t->new; + /* To translators: '%d' is the number of mails recieved and '%s' is the name of the folder*/ msg = g_strdup_printf (ngettext ("You have received %d new message\nin %s.", "You have received %d new messages\nin %s.", status_count),status_count, t->name); -- cgit