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 occurence(s).'), $a) // OK

xgettext is launched on Windows:

C:\Program Files\gettext\0.17\bin>xgettext.exe --from-code=utf-8 --language=PHP filename

Maybe I have overlooked some option in manual? Thanks for help.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.