Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/Config.py5
-rw-r--r--common/i18n/__init__.py (renamed from common/Resources/__init__.py)0
-rw-r--r--common/i18n/tooltips_en.py (renamed from common/Resources/tooltips_en.py)0
-rw-r--r--common/i18n/tooltips_fr.py (renamed from common/Resources/tooltips_fr.py)0
4 files changed, 2 insertions, 3 deletions
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
####################
diff --git a/common/Resources/__init__.py b/common/i18n/__init__.py
index e69de29..e69de29 100644
--- a/common/Resources/__init__.py
+++ b/common/i18n/__init__.py
diff --git a/common/Resources/tooltips_en.py b/common/i18n/tooltips_en.py
index e59e88d..e59e88d 100644
--- a/common/Resources/tooltips_en.py
+++ b/common/i18n/tooltips_en.py
diff --git a/common/Resources/tooltips_fr.py b/common/i18n/tooltips_fr.py
index e16ea53..e16ea53 100644
--- a/common/Resources/tooltips_fr.py
+++ b/common/i18n/tooltips_fr.py