Changeset 9588
- Timestamp:
- 05/07/08 00:25:27 (3 months ago)
- Files:
-
- 1 modified
-
trunk/src/roster_window.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/roster_window.py
r9587 r9588 344 344 # We are a normal contact. Add us to our groups. 345 345 if not groups: 346 if contact.is_transport():347 contact.groups = [_('Transports')]348 346 if contact.is_observer(): 349 347 contact.groups = [_('Observers')] … … 621 619 622 620 # Draw the contact and its groups contact 623 if contact.is_transport():624 contact.groups = [_('Transports')]625 621 if is_observer: 626 622 contact.groups = [_('Observers')] … … 668 664 # Draw all groups of the contact 669 665 groups = contact.groups 670 if contact.is_transport():671 contact.groups = [_('Transports')]672 666 if contact.is_observer(): 673 667 contact.groups = [_('Observers')] … … 1128 1122 1129 1123 groups = contact.groups 1130 if contact.is_transport():1131 contact.groups = [_('Transports')]1132 1124 if contact.is_observer(): 1133 1125 contact.groups = [_('Observers')] … … 1462 1454 if jid in attached_keys: 1463 1455 keyID = attached_keys[attached_keys.index(jid) + 1] 1456 1457 if gajim.jid_is_transport(jid): 1458 array[jid]['groups'] = [_('Transports')] 1464 1459 contact1 = gajim.contacts.create_contact(jid = ji, name = name, 1465 1460 groups = array[jid]['groups'], show = show, status = status,
