From dcd11300fc2379d5a19fa9e85e3f0445d304a2e3 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Thu, 1 May 2014 11:13:52 +0200 Subject: Internationalization to french. --- conf.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'conf.py') 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: -- cgit