diff options
author | Johnny Jacob <jjohnny@src.gnome.org> | 2008-01-28 17:58:09 +0800 |
---|---|---|
committer | Johnny Jacob <jjohnny@src.gnome.org> | 2008-01-28 17:58:09 +0800 |
commit | a999b463a02990600e5af366700eda6f0eef57cf (patch) | |
tree | 172f198113ab77fdd8d7a3715a15961a4ccaa5fb /plugins/mail-notification/mail-notification.c | |
parent | 356c68134a2ac3a25ccfdc9f236b37c2faa40066 (diff) | |
download | gsoc2013-evolution-a999b463a02990600e5af366700eda6f0eef57cf.tar.gz gsoc2013-evolution-a999b463a02990600e5af366700eda6f0eef57cf.tar.zst gsoc2013-evolution-a999b463a02990600e5af366700eda6f0eef57cf.zip |
Added proper translator comments for strings
svn path=/trunk/; revision=34917
Diffstat (limited to 'plugins/mail-notification/mail-notification.c')
-rw-r--r-- | plugins/mail-notification/mail-notification.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |