Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
227 views

PoEdit keywords - plurals

I incorporated a gettext-like localization system in my app, but my translation function looks like this: t($category, $string, [$plural_string, $number, $vprintf_arguments]) My PoEdit keywords: ...
7
votes
1answer
588 views

CMake module for gettext support?

Is there a good, open-source, documented CMake module for gettext support? I mean: Extracting messages from sources Merging messages to existing translations Compilation of mo-files Installation of ...
4
votes
4answers
2k 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 ...
2
votes
1answer
109 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
3answers
114 views

How to generate a new .pot template from a translated .po file

Having started off with an incomplete gettext .pot file, the resulting .po translations file now includes a large number of translation strings that were not originally in the .pot file. How can I ...
2
votes
1answer
221 views

xgettext - extract translatable strings and update .pot

I have inherited a sample.pot file. Now, I have added new messages in a1.c and a2.cpp. Is it possible for me to use xgettext and output the contents to same sample.pot instead of creating a new one? ...
2
votes
2answers
130 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
908 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
3answers
1k views

Recusive xgettext?

How can I compile a .po file using xgettext with PHP files with a single command recursively? My PHP files exist in a hierarchy, and the straight xgettext command doesn't seem to dig down ...
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 ...
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
2answers
103 views

Need just the strings for translation to be generated by xgettext, not all the strings in the source files

really struggling with this one. I've recently setup a bash shell script to extract, concat and deduplicate the strings to translate out of a whole webite's view pages (MVC framework in use), it ...
1
vote
3answers
155 views

Regex to find GetText strings “<%$ GetText:”

I need to grab the text "Home" or 'Home' from this code: <%@ Page Title="<%$ GetText: '**Home**' %>" Language="C#" ..%> <asp:Button Text="<%$ GetText: '**Home**' %>"/> ...
1
vote
1answer
182 views

Charset problem with xgettext & msgmerge

I'm trying to make a script to create a .po files from my sources files & merge it with the existing one so I don't have to redo the translation every time I update my website. I'm basing my ...
1
vote
0answers
161 views

xgettext > search through smarty templates for {php}{/php} tags

How could I use xgettext with poedit to replace tags like these: {php}printf(_("You have to pay &euro; %01.2f for this car."), $this->get_template_vars('amount')){/php} I've renamed my tpl ...
1
vote
4answers
851 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
124 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
836 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
2answers
61 views

xgettext in OSX to create .po file from PHP code

I'm on Mac OSX, and I'm unable to find a good solution to parse PHP Code and extract the translatable strings. I've tried PoEdit, but it fail with an anti-verbose trunkated error: I've also tried ...
0
votes
1answer
35 views

How do I extract translatable strings from a glade (Builder) file?

In command prompt I wrote: C:\Users\Waqar Ali Khan\Documents\NetBeansProjects\MedicalEmergency>xgettext -d MedicalEmergency -o LocaleStrings.pot main.cpp MedicalEmergency.glade xgettext: Language ...
0
votes
1answer
21 views

xgettext extracts wrong literals

I use this to extract all string literals that need translation: xgettext -o $@ -k"Localizer.get" $^ --from-code=utf-8 These should be extracted: Localizer.get("Could not find the config file. ...
0
votes
1answer
26 views

Let xgettext find keywords in comments

As default, xgettext ignores any keyword found within a comment block. <?php // file.php echo _('This text will be found'); //_('This text will be ignored'); Is it possible to override this ...
0
votes
2answers
180 views

Translate variables with POEdit/xgettext

I am using PHP, Zend Framework and Zend_Translate (gettext adapter). To edit translations I use POEdit which utilizes xgettext to fetch strings to be translated. POEdit (xgettext) will search for ...
0
votes
1answer
106 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
25 views

Small issue with xgettext in PHP source code

it seems that xgettext does not find strings with inlined variables in PHP source code: _("Search has found $a occurence(s).") // not extracted I must use sprintf. sprintf(_('Search has found %d ...
0
votes
1answer
97 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
1answer
67 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
2answers
864 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
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" ...
0
votes
2answers
159 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 ...