From 7ce6046f986e2a3b6c13748215fc80c7e077fd8b Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Sun, 21 Dec 2008 01:21:48 +0000 Subject: move tooltipi_.py to i18n; MANIFEST fixes --- (limited to 'common/Config.py') diff --git a/common/Config.py b/common/Config.py index 2b3de1a..b7d8591 100644 --- a/common/Config.py +++ b/common/Config.py @@ -48,8 +48,7 @@ for i in (INSTANCE_DIR, DATA_DIR, SNDS_INFO_DIR, TMP_DIR): if not os.path.isdir(i): os.makedirs(i) #PLUGIN -PLUGIN_DEBUG = os.getenv("CSOUND_LOGFILE") -if PLUGIN_DEBUG == "": PLUGIN_DEBUG = "STDERR" +PLUGIN_DEBUG = os.getenv("CSOUND_LOGFILE", "") PLUGIN_VERBOSE = DEBUG PLUGIN_UNIVORC = os.path.join(FILES_DIR, "tamtamorc.csd") PLUGIN_KSMPS = 64 @@ -239,7 +238,7 @@ DEFAULT_GRID_DIV2 = DEFAULT_GRID / 2.0 ## ToolTips #################### LANGUAGE = 'en' -exec 'from Resources.tooltips_%s import Tooltips' % LANGUAGE +exec 'from i18n.tooltips_%s import Tooltips' % LANGUAGE #################### -- cgit v0.9.1