mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 12:00:13 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
17 lines
362 B
Python
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,
|
|
}
|