Tagged Questions

2
votes
2answers
906 views

Getting translation strings for jinja2 templates integrated with django 1.x?

I can use jinj2 templates with django via render_to_response defined as below from django.conf import settings from django.core.exceptions import ImproperlyConfigured from django.http import ...
0
votes
1answer
104 views

Django MakeMessages missing xgettext in Windows

Running Django on Windows 7. I'm currently trying to translate a couple of Django templates using the instructions found in the django book chapter 19. I've added a translation tag to the template, ...
0
votes
1answer
877 views

bug in “django-admin.py makemessages” or xgettext call? -> “warning: unterminated string”

django-admin.py makemessages dies with errors "warning: unterminated string" on cases where really long strings are wrapped: string = "some text \ more text\ and even more" ...