this might be caused by circular imports within your INSTALLED_APPS. To make this more clear here a small example:
I have app proj.base and another app proj.menus. Now I got the great idea of writing some utility functions to make my life much easier. And to make it even more easier I put everything right into the __init__.py of proj.base.
And the problem is now what exactly? Well, on of my utility functions uses a model from proj.menus. So I imported this app's models right in proj.base's __init__.py. For some reason now, this (or at least something in this direction) causes severe trouble with Django's translation subsystem. Sorry for that incomplete example, but I somehow couldn't completely reproduce this problem with a blank project.
So now I simply put everything I previously had in base's __init__.py into a utils.py in the same module, and finally everything works :)
Comments: