Tagged Questions
2
votes
1answer
108 views
Gettext : How to update po and pot files after the source is modified
I've got a python project with internationalized strings.
I've modified the source codes and the lines of the strings are changed, i.e. in pot and po files lines of he strings are not pointing to ...
2
votes
1answer
437 views
generating plural forms into a .pot file
I'm internationalizing a python program and cant get plural forms into the .pot file. I have marked string that require plural translations with a _pl() eg.
self.write_info(_pl("%(num)d track ...
0
votes
1answer
103 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"
...