fix a leftover

This commit is contained in:
Nikos Kouremenos 2005-09-04 23:28:04 +00:00
parent 3200801bc7
commit 447c5f617b
1 changed files with 2 additions and 2 deletions

View File

@ -266,9 +266,9 @@ class SystrayWin32(systray.Systray):
nb += jids[jid].nb_unread[jid] nb += jids[jid].nb_unread[jid]
text = i18n.ngettext( text = i18n.ngettext(
'Gajim - one unread message', 'Gajim - %d unread message',
'Gajim - %d unread messages', 'Gajim - %d unread messages',
nb, None, nb) nb, nb, nb)
self.systray_winapi.notify_icon.set_tooltip(text) self.systray_winapi.notify_icon.set_tooltip(text)