Mercurial > libervia-backend
comparison frontends/src/wix/constants.py @ 223:86d249b6d9b7
Files reorganisation
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 29 Dec 2010 01:06:29 +0100 |
parents | frontends/wix/constants.py@1438a1337732 |
children | 533507bb4e32 |
comparison
equal
deleted
inserted
replaced
222:3198bfd66daa | 223:86d249b6d9b7 |
---|---|
1 import sys | |
2 import __builtin__ | |
3 | |
4 __builtin__.__dict__['APP_NAME'] = "Wix" | |
5 __builtin__.__dict__['LICENCE_PATH'] = "../../COPYING" | |
6 __builtin__.__dict__['IMAGE_DIR'] = sys.path[0]+'/images' | |
7 | |
8 __builtin__.__dict__['msgOFFLINE'] = _("offline") | |
9 __builtin__.__dict__['msgONLINE'] = _("online") | |
10 __builtin__.__dict__['const_DEFAULT_GROUP'] = "Unclassed" | |
11 __builtin__.__dict__['const_STATUS'] = [("", _("Online"), None), | |
12 ("chat", _("Free for chat"), "green"), | |
13 ("away", _("AFK"), "brown"), | |
14 ("dnd", _("DND"), "red"), | |
15 ("xa", _("Away"), "red")] |