Commit 2ea6b849 by Myles Fang

Language code fix

parent 4cc34265
...@@ -5,4 +5,5 @@ David Adams <dcadams@stanford.edu> ...@@ -5,4 +5,5 @@ David Adams <dcadams@stanford.edu>
Sarina Canelake <sarina@edx.org> Sarina Canelake <sarina@edx.org>
Nimisha Asthagiri <nasthagiri@edx.org> Nimisha Asthagiri <nasthagiri@edx.org>
Christina Roberts <christina@edx.org> Christina Roberts <christina@edx.org>
Myles Fong <i@myles.hk>
...@@ -189,13 +189,13 @@ LANGUAGE_CODE = os.getenv('NOTIFIER_LANGUAGE', 'en') ...@@ -189,13 +189,13 @@ LANGUAGE_CODE = os.getenv('NOTIFIER_LANGUAGE', 'en')
LANGUAGES = ( LANGUAGES = (
("en", "English"), ("en", "English"),
("ar", "Arabic"), ("ar", "Arabic"),
("es_419", "Spanish (Latin America)"), ("es-419", "Spanish (Latin America)"),
("fr", "French"), ("fr", "French"),
("he", "Hebrew"), ("he", "Hebrew"),
("hi", "Hindi"), ("hi", "Hindi"),
("pt_BR", "Portuguese (Brazil)"), ("pt-br", "Portuguese (Brazil)"),
("ru", "Russian"), ("ru", "Russian"),
("zh_CN", "Chinese (Simplified)"), ("zh-cn", "Chinese (China)"),
) )
USE_L10N = True USE_L10N = True
LOCALE_PATHS = (os.path.join(os.path.dirname(os.path.dirname(__file__)), 'locale'),) LOCALE_PATHS = (os.path.join(os.path.dirname(os.path.dirname(__file__)), 'locale'),)
......
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