annotate frontends/wix/constants.py @ 125:8d611eb9ae48
primitivus: contact list enhancement
- primitivus: contact list now display groups and sexy name (instead of bare jid)
- primitivus: contact list now show an alert when somebody want to contact you, and its chat window is not on the screen
- primitivus: cursor is now visible when going to chat window (useful to go back in logs)
author |
Goffi <goffi@goffi.org> |
date |
Mon, 12 Jul 2010 17:50:00 +0800 |
parents |
f271fff3a713 |
children |
1438a1337732 |
rev |
line source |
72
|
1 import sys |
|
2 import __builtin__ |
|
3 |
|
4 __builtin__.__dict__['IMAGE_DIR'] = sys.path[0]+'/images' |
|
5 |
|
6 __builtin__.__dict__['msgOFFLINE'] = _("offline") |
|
7 __builtin__.__dict__['msgONLINE'] = _("online") |
|
8 __builtin__.__dict__['const_DEFAULT_GROUP'] = "Unclassed" |
|
9 __builtin__.__dict__['const_STATUS'] = [("", _("Online"), None), |
|
10 ("chat", _("Free for chat"), "green"), |
|
11 ("away", _("AFK"), "brown"), |
|
12 ("dnd", _("DND"), "red"), |
|
13 ("xa", _("Away"), "red")] |