Provide language codes for i18n testing

This commit is contained in:
Sarina Canelake
2013-11-18 19:08:51 -05:00
parent 55590f321a
commit 878097d06e
2 changed files with 8 additions and 0 deletions

View File

@@ -10,6 +10,10 @@ from logsettings import get_logger_config
DEBUG = True
USE_I18N = True
# For displaying the dummy text, we need to provide a language mapping.
LANGUAGES = (
('fr', 'Francais'),
)
TEMPLATE_DEBUG = DEBUG
LOGGING = get_logger_config(ENV_ROOT / "log",
logging_env="dev",

View File

@@ -17,6 +17,10 @@ from logsettings import get_logger_config
DEBUG = True
USE_I18N = True
# For displaying the dummy text, we need to provide a language mapping.
LANGUAGES = (
('fr', 'Francais'),
)
TEMPLATE_DEBUG = True