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 behaviour? I've tried by adding //_ as a keyword, but this fails as well. It seems comments have priority over keywords:

xgettext -o output.po --language=PHP -k_ -k//_ file.php

Thanks for help!

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

It seems, that xgettext filters out comments and i do not know of a way to avoid this. However, as an alternative solution you could just use sed to replace comments before feeding the file to xgettext:

sed 's/\/\/_/_/g' file.php | xgettext -o output.po --language=PHP -
link|improve this answer
Aah, that is a nice creative solution! Thanks for the idea and help! – ANisus Oct 4 '11 at 9:21
feedback

Your Answer

 
or
required, but never shown

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