I found several tutorials that show how to use i18n on gae, but they assume django 0.96. Right now I do not have, for example, a separate script for makemessages, and I can not run manage.py. Has anyone tried using i18n recently and could explain to me how this can be done?
EDIT
I was able to generate po files and compile them. I get the language headers and I can install the langauge translation. self.request.LANGUAGE_CODE set to pl , which is just fine. Nevertheless, these translations are not used when displaying a web page. You do not know why this can happen?
EDIT2
Well, after completing the trial / error that I was able to detect, you need to import the settings from django.conf and reload them (setting._target = None). And it finally works.
source share