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: poEdit anti-verbose error

I've also tried Virtaal, but the app crash when I click "Open", event before the browsing windows appear.

I've tried OmegaT, but I think it doesn't support .po files. I can't figure out how it works :(

I've also tried xgettext.pl, and it work really well, except it doesn't detect the PHP dgettext() function, and doesn't seem to offer any additional option to configure extra keyword like poEdit does. Man page is here: http://www.unix.com/man-page/OSX/1/xgettext.pl/

Any solution so far ?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Use brew or ports to install the missing xgettext.

link|improve this answer
brew install xgettext Error: No available formula for xgettext – FMaz008 Dec 6 '11 at 17:20
allow me few hours to arrive at home and test it on a mac. – Sorin Sbarnea Dec 6 '11 at 17:25
hehe, that's more than I could expect ;) – FMaz008 Dec 6 '11 at 17:28
feedback

Ok, here's the answer ( deduced from Internationalisation Django (on OSX) )

The real xgettext for PHP is available as a tool that come with the gettext extension.

As I've installed gettext with brew ( brew install gettext ), it's located here: /usr/local/Cellar/gettext/0.18.1.1/bin/xgettext

This version of xgettext support the PHP function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.