2

I had Django 1.5.5 translation working correctly in development but when deployed to Heroku strings were not being translated.

Shahar 'Dawn' Or
  • 2,713
  • 1
  • 26
  • 38

1 Answers1

3

The reason was that I had *.mo in my global .gitignore and so I added !*.mo to the local .gitignore to solve it.

Shahar 'Dawn' Or
  • 2,713
  • 1
  • 26
  • 38