diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-01 11:13:52 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-05-01 11:13:52 +0200 |
commit | dcd11300fc2379d5a19fa9e85e3f0445d304a2e3 (patch) | |
tree | c75095dcce0e8c627c1df439a7b5a363af0fb6f1 /conf.py | |
parent | Link between next and previous articles. (diff) | |
download | newspipe-dcd11300fc2379d5a19fa9e85e3f0445d304a2e3.tar.gz newspipe-dcd11300fc2379d5a19fa9e85e3f0445d304a2e3.tar.bz2 newspipe-dcd11300fc2379d5a19fa9e85e3f0445d304a2e3.zip |
Internationalization to french.
Diffstat (limited to 'conf.py')
-rw-r--r-- | conf.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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: |