aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/conf.py b/conf.py
index 2b57c57c..98bb03d9 100644
--- a/conf.py
+++ b/conf.py
@@ -11,6 +11,12 @@ import os, sys
basedir = os.path.abspath(os.path.dirname(__file__))
PATH = os.path.abspath(".")
+# available languages
+LANGUAGES = {
+ 'en': 'English',
+ 'fr': 'French'
+}
+
ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
if not ON_HEROKU:
bgstack15