Tagged Questions

2
votes
2answers
137 views

Can xgettext be used to extract specific domain strings only?

(Really surprised this isn't answered anywhere online; couple posts over the past few years with a similar question, but never answered. Let's hope the Stackoverflow crew can come to the rescue) ...
2
votes
2answers
942 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 ...
2
votes
1answer
448 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 ...
2
votes
1answer
2k views

How to use xgettext iteratively to update .po files for translation

I'm looking at using xgettext to aid translation of large codebase, and I have two questions: if I have one .po file per-language, is there an easy way to update them all using a single xgettext ...
1
vote
4answers
914 views

poedit and xml files

How to configure poedit to extract strings from xml file? I have Zend Framework navigation items in .xml like this: <entry-i> <label>Text to translate</label> ...
1
vote
1answer
127 views

Handling plurals using xgettextt with --extract-all

Using --extract-all with xgettext does not work with plurals. Using the answer to I18n C++ hello world with plurals as the C++ code here are two tests using xgettext. cat >helloplurals.cxx ...
0
votes
1answer
99 views

xgettext in gtk+

I am new to the gettext and Gtk+ programming world. First of all, I am developing an application on windows using the gtk+ library. I read that glib integrates the gettext library and makes the ...
0
votes
2answers
892 views

I18n for XSLT (or what is the gettext() and xgettext of C++ for XSLT)?

Complete C++ i18n gettext() “hello world” example shows a standard way to handle messages in a C++ program using gettext(). The message catalogs are stored in Portable Object files based upon a ...
0
votes
1answer
905 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" ...
0
votes
2answers
161 views

Where to translate message strings - in the view or in the model?

We have a multilingual (PHP) application and use gettext for i18n. There are a few classes in the backend/model that return messages or message formats for printf(). We use xgettext to extract the ...