Changeset 8562 for branches/jingle
- Timestamp:
- 08/24/07 16:45:24 (15 months ago)
- Files:
-
- 1 modified
-
branches/jingle/src/gajim.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/jingle/src/gajim.py
r8561 r8562 1888 1888 self.add_event(account, peerjid, 'voip-incoming', (peerjid, sid,)) 1889 1889 1890 # TODO: check this too1891 1890 if helpers.allow_showing_notification(account): 1892 1891 # TODO: we should use another pixmap ;-) 1893 1892 img = os.path.join(gajim.DATA_DIR, 'pixmaps', 'events', 1894 1893 'ft_request.png') 1895 txt = _('%s wants to start a jingle session.') % gajim.get_name_from_jid(1894 txt = _('%s wants to start a voice chat.') % gajim.get_name_from_jid( 1896 1895 account, peerjid) 1897 1896 path = gtkgui_helpers.get_path_to_generic_or_avatar(img) 1898 event_type = _(' Jingle SessionRequest')1899 notify.popup(event_type, peerjid, account, ' jingle-request',1897 event_type = _('Voice Chat Request') 1898 notify.popup(event_type, peerjid, account, 'voip-incoming', 1900 1899 path_to_image = path, title = event_type, text = txt) 1901 1900
