view frontends/src/wix/constants.py @ 653:e2eff3c7ad02

wix: bug fix at startup when the method chatStateReceived doesn't exist TODO: implementation for displaying the states on the chat window and sending "composing" states
author souliane <souliane@mailoo.org>
date Thu, 26 Sep 2013 10:14:23 +0200
parents 0806a65a5fa9
children 6246eb6d64a0
line wrap: on
line source

import sys,os.path
import __builtin__
import sat_frontends.wix

wix_root = os.path.dirname(sat_frontends.wix.__file__)

__builtin__.__dict__['APP_NAME'] = "Wix"
__builtin__.__dict__['LICENCE_PATH'] = os.path.join(wix_root,"COPYING")

__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")]