Re: [mezzanine-users] Enable Mezzanine multilingual site support

2015-06-12 Thread Lee H.
Thanks Mathias, I think it must have been using the old ordering of INSTALLED_APPS, since my settings file came from pre-upgrade Mezzanie. On a clean Mezzanine, I no longer got the error. -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To

Re: [mezzanine-users] Enable Mezzanine multilingual site support

2015-06-12 Thread Mathias Ettinger
Hi Lee, To possibilities to fix your problem. Either you manually added modeltranslation to INSTALLED_APPS in a place that is too deep in the loading chain, in this case, just remove it. Turning on USE_MODELTRANSLATION will automatically add it to the list. Or you used the ordering of

Re: [mezzanine-users] Enable Mezzanine multilingual site support

2015-06-11 Thread Eduardo Rivas
Yep, only available in the development branch (which is very stable now). Documentation here: https://github.com/stephenmcd/mezzanine/blob/master/docs/multi-lingual-sites.rst. -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe

Re: [mezzanine-users] Enable Mezzanine multilingual site support

2015-06-11 Thread Lee H.
Thanks for the reply Eduardo I upgraded to the master branch, pip install git+https://github.com/stephenmcd/mezzanine.git, (which also upgraded django to 1.8), and I now get the error: Traceback (most recent call last): File manage.py, line 29, in module

[mezzanine-users] Enable Mezzanine multilingual site support

2015-06-11 Thread Lee H.
I want to use the Mezzanine multilingual site feature, so I can have different form labels and rich text content depending on whether my site is the en or fr version. I installed django-modeltranslation and added modeltranslation to my INSTALLED_APPS, also setting USE_MODELTRANSLATION = True,