From 4cb138619619c872b773c36f1ca8a68831e5b128 Mon Sep 17 00:00:00 2001 From: Emilie Date: Thu, 14 Dec 2017 10:25:22 +0100 Subject: [PATCH] [settings] : languages --- app/settings.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/settings.py b/app/settings.py index 4b425df8..669e3d4f 100644 --- a/app/settings.py +++ b/app/settings.py @@ -198,17 +198,18 @@ ROOT_URLCONF = "urls" # Language code for this installation. All choices can be found here: # http://www.i18nguy.com/unicode/language-identifiers.html -LANGUAGE_CODE = "en" +LANGUAGE_CODE = "fr" # Supported languages LANGUAGES = ( - ('en', _('English')), ('fr', _('French')), + ('en', _('English')), ) -LOCALE_PATHS = ( - os.path.join(PROJECT_ROOT, 'lib/mezzanine-organization/organization/locale'), -) +#LOCALE_PATHS = ( + #os.path.join(PROJECT_ROOT, 'lib/mezzanine-organization/organization/locale'), + #os.path.join(PROJECT_ROOT, 'lib/mezzanine-organization-themes/organization_themes/locale'), +#) ############# # DATABASES # -- 2.39.5