Mercurial > libervia-backend
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frontends/src/wix/constants.py Wed Dec 29 01:06:29 2010 +0100 @@ -0,0 +1,15 @@ +import sys +import __builtin__ + +__builtin__.__dict__['APP_NAME'] = "Wix" +__builtin__.__dict__['LICENCE_PATH'] = "../../COPYING" +__builtin__.__dict__['IMAGE_DIR'] = sys.path[0]+'/images' + +__builtin__.__dict__['msgOFFLINE'] = _("offline") +__builtin__.__dict__['msgONLINE'] = _("online") +__builtin__.__dict__['const_DEFAULT_GROUP'] = "Unclassed" +__builtin__.__dict__['const_STATUS'] = [("", _("Online"), None), + ("chat", _("Free for chat"), "green"), + ("away", _("AFK"), "brown"), + ("dnd", _("DND"), "red"), + ("xa", _("Away"), "red")]