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.