Tagged Questions

2
votes
1answer
115 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 …
1
vote
3answers
239 views

xgettext vs gettext

I have a few questions: I know what gettext is. I've read a few posts where they mentioned xgettext and was curious as to what is the difference between the two. How can I install xgettext on …
1
vote
1answer
64 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 …
1
vote
1answer
190 views

Poedit regex based parser?

In our JS files we use the following format for Gettext translation: var str1 = '!t[The text that should be translated]'; var str2 = '!t[Some more text]'; This JS files will be parsed using PHP and …
0
votes
1answer
9 views

In a project using GNU Autotools, is there a task to launch xgettext ?

Summary : I have a project using GNU Autotools. I have a pot file. I need to update it. Is there a magical "make" task that run xgettext for me (I'm lazy ?) Verbose version : Hi I am trying to …
0
votes
0answers
146 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
170 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
74 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 …
0
votes
1answer
655 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 …