aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 11:13:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-05-01 11:13:52 +0200
commitdcd11300fc2379d5a19fa9e85e3f0445d304a2e3 (patch)
treec75095dcce0e8c627c1df439a7b5a363af0fb6f1 /conf.py
parentLink between next and previous articles. (diff)
downloadnewspipe-dcd11300fc2379d5a19fa9e85e3f0445d304a2e3.tar.gz
newspipe-dcd11300fc2379d5a19fa9e85e3f0445d304a2e3.tar.bz2
newspipe-dcd11300fc2379d5a19fa9e85e3f0445d304a2e3.zip
Internationalization to french.
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