typo LOCALE

This commit is contained in:
Fabrice Mouhartem 2019-04-24 14:25:59 +05:30
parent c907e86489
commit 07c57c8eab

View File

@ -22,7 +22,7 @@ THEME_TEMPLATES_OVERRIDES = [os.path.dirname(__file__)]
# Plugins # Plugins
PLUGIN_PATHS = ['./plugins/'] PLUGIN_PATHS = ['./plugins/']
PLUGINS = ['i18n_subsites'] PLUGINS = ['i18n_subsites',]
# Static paths # Static paths
PATH = 'content' PATH = 'content'
@ -32,13 +32,16 @@ TIMEZONE = 'Europe/Paris'
#LANG #LANG
DEFAULT_LANG = 'en' DEFAULT_LANG = 'en'
DEFAULT_DATE_FORMAT = '%Y.%m.%d' LOCALE = 'en_GB.UTF-8'
DEFAULT_DATE_FORMAT = '%A, %B %d, %Y'
I18N_SUBSITES = { I18N_SUBSITES = {
'fr': { 'fr': {
'SITENAME': 'Le blog de fmouhart', 'SITENAME': 'Le blog de fmouhart',
'FOOTER_INCLUDE' : 'myfooter-fr.html', 'FOOTER_INCLUDE' : 'myfooter-fr.html',
} 'LOCALE' : 'fr_FR.UTF-8',
} 'DEFAULT_DATE_FORMAT' : '%A %d %B %Y',
}
}
# Social widget # Social widget
SOCIAL = () SOCIAL = ()