From d21d194d2e5af5657e0f1fc8434ae8b4b385f46f Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sun, 8 Oct 2006 00:48:14 +0000 Subject: [PATCH] use Gtalk terminology. email becomes mail conversation --- src/gajim.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/gajim.py b/src/gajim.py index 2c2409940..5584b89ca 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1078,12 +1078,16 @@ class Interface: if gajim.config.get('notify_on_new_gmail_email'): img = os.path.join(gajim.DATA_DIR, 'pixmaps', 'events', 'new_email_recv.png') - title = _('New E-mail on %(gmail_mail_address)s') % \ + title = _('New mail on %(gmail_mail_address)s') % \ {'gmail_mail_address': jid} - text = i18n.ngettext('You have %d new E-mail message', 'You have %d new E-mail messages', gmail_new_messages, gmail_new_messages, gmail_new_messages) + text = i18n.ngettext('You have %d new mail conversation', + 'You have %d new mail conversations', gmail_new_messages, + gmail_new_messages, gmail_new_messages) if gajim.config.get('notify_on_new_gmail_email_extra'): for gmessage in gmail_messages_list: + #FIXME: emulate Gtalk client popups. find out what they parse and how + #they decide what to show # each message has a 'From', 'Subject' and 'Snippet' field text += _('\nFrom: %(from_address)s') % \ {'from_address': gmessage['From']}