summaryrefslogtreecommitdiff
path: root/portato/constants.py
diff options
context:
space:
mode:
authornecoro <>2007-08-05 04:11:46 +0000
committernecoro <>2007-08-05 04:11:46 +0000
commit8fe46a012d17eaa874abf63b9be93c6f11b8df97 (patch)
tree517e994fa610586e83d297997a4865f7b3b86af4 /portato/constants.py
parent0087f656a2d9fe962d874ae73f5759dbfc09f634 (diff)
downloadportato-8fe46a012d17eaa874abf63b9be93c6f11b8df97.tar.gz
portato-8fe46a012d17eaa874abf63b9be93c6f11b8df97.tar.bz2
portato-8fe46a012d17eaa874abf63b9be93c6f11b8df97.zip
i18n support and german translations
Diffstat (limited to 'portato/constants.py')
-rw-r--r--portato/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/constants.py b/portato/constants.py
index c17ee24..80e7452 100644
--- a/portato/constants.py
+++ b/portato/constants.py
@@ -39,6 +39,7 @@ These should be set during the installation.
"""
from os.path import join as pjoin
+APP = "portato"
VERSION = "9999"
CONFIG_DIR = "/etc/portato/"
@@ -53,5 +54,7 @@ XSD_LOCATION = pjoin(XSD_DIR, "plugin.xsd")
ICON_DIR = "icons/"
APP_ICON = pjoin(ICON_DIR, "portato-icon.png")
+LOCALE_DIR = "i18n/"
+
FRONTENDS = ["gtk" ,"qt"]
STD_FRONTEND = "gtk"