Add LOCALE_PATHS to settings

manage.py compilemessages doesn't seem to function without this setting

Change-Id: I0efad66e6dee424a82479e7679ef0d3534163014
Closes-Bug: 1638240
(cherry picked from commit 6db8fd82f5)
This commit is contained in:
Rob Cresswell 2016-11-01 10:28:14 +00:00
parent e5f3800193
commit 881ee84834
1 changed files with 5 additions and 0 deletions

View File

@ -228,6 +228,11 @@ USE_I18N = True
USE_L10N = True
USE_TZ = True
LOCALE_PATHS = [
'horizon/locale',
'openstack_dashboard/locale',
]
OPENSTACK_KEYSTONE_DEFAULT_ROLE = '_member_'
DEFAULT_EXCEPTION_REPORTER_FILTER = 'horizon.exceptions.HorizonReporterFilter'