2

Is there any know issue about using Django CMS and Django Rosetta together. I cant get the "static" template messages translated although it appears correctly translated in the Rosetta interface.

All the dynamic content is correctly translated. Only the one I´ve set up around the `{% trans 'blabla' %} does not work.

Fernando Ferreira
  • 798
  • 1
  • 11
  • 26

1 Answers1

2

Gotcha!

Just add in settings.py

LOCALE_PATHS = (BASE_DIR + "/locale/",)

It worked for me.

nicolas
  • 880
  • 2
  • 9
  • 19