Add support for multisite setup

This commit is contained in:
Iacopo Spalletti 2014-10-04 19:22:22 +02:00
commit aef9313bb8
8 changed files with 243 additions and 6 deletions

View file

@ -46,6 +46,13 @@ HELPER_SETTINGS = {
'public': True,
},
],
2: [
{
'code': 'en',
'name': gettext('English'),
'public': True,
},
],
'default': {
'hide_untranslated': False,
},
@ -56,6 +63,9 @@ HELPER_SETTINGS = {
{'code': 'it'},
{'code': 'fr'},
),
2: (
{'code': 'en'},
),
'default': {
'fallback': 'en',
'hide_untranslated': False,