Tagged Questions

8
votes
2answers
253 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: ...
8
votes
2answers
615 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
126 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
120 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
231 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
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
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
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
106 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
1answer
199 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
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> ...
0
votes
2answers
94 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
54 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
2answers
229 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
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
1answer
73 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
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
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 ...