5

I used to run Mezzanine on Heroku. Recently, I need to customize some data in the django.po. As Mezzanine is installed from requirements.txt, how do I upload my own django.po in order to overwrite Django's standard django.po?

Randy Tang
  • 3,897
  • 8
  • 50
  • 100
  • This might be useful http://stackoverflow.com/questions/13246545/i18n-doesnt-work-at-production-enviroment-on-heroku/14927172#14927172 – jnishiyama Jul 01 '15 at 16:34
  • 1
    I ended up with forking Mezzanine on Github, customizing it, and then installing the customized version on Heroku. Problem solved. – Randy Tang Jul 03 '15 at 02:23

1 Answers1

5

The best solution is to override them dynamically while running application. Here's probably the best answer that I've seen.

Community
  • 1
  • 1
mdargacz
  • 997
  • 14
  • 28