Commit 878097d0 by Sarina Canelake

Provide language codes for i18n testing

parent 55590f32
...@@ -10,6 +10,10 @@ from logsettings import get_logger_config ...@@ -10,6 +10,10 @@ from logsettings import get_logger_config
DEBUG = True DEBUG = True
USE_I18N = True USE_I18N = True
# For displaying the dummy text, we need to provide a language mapping.
LANGUAGES = (
('fr', 'Francais'),
)
TEMPLATE_DEBUG = DEBUG TEMPLATE_DEBUG = DEBUG
LOGGING = get_logger_config(ENV_ROOT / "log", LOGGING = get_logger_config(ENV_ROOT / "log",
logging_env="dev", logging_env="dev",
......
...@@ -17,6 +17,10 @@ from logsettings import get_logger_config ...@@ -17,6 +17,10 @@ from logsettings import get_logger_config
DEBUG = True DEBUG = True
USE_I18N = True USE_I18N = True
# For displaying the dummy text, we need to provide a language mapping.
LANGUAGES = (
('fr', 'Francais'),
)
TEMPLATE_DEBUG = True TEMPLATE_DEBUG = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment