view frontends/src/wix/constants.py @ 226:d8bb72f00eec

distutils install: fixed plugin import and log file path
author Goffi <goffi@goffi.org>
date Wed, 05 Jan 2011 02:39:35 +0100
parents 86d249b6d9b7
children 533507bb4e32
line wrap: on
line source

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