Files
Phoenix/docs/sphinx/_downloads/i18nwxapp/app_const.py

17 lines
362 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-#
#
# Author: Werner F. Bruhin
# Purpose: Application constants
# Created: 06/04/2012
import wx
# language domain
langDomain = "I18Nwxapp"
# languages you want to support
supLang = {u"en": wx.LANGUAGE_ENGLISH,
u"fr": wx.LANGUAGE_FRENCH,
u"de": wx.LANGUAGE_GERMAN,
}