Hello,
I have a big trouble with gettext
I have file with this row:
<input type="submit" name="bla" value="<?=_("Send")?>">
gettext is seeking through all of strings in the file, it thinks that one string is:
"<?=_("
and second:
")?>"
but I need to get string "Send", because it is in the _() function.
And it doesn't work even with this:
value="<?=('Odeslat dotaz')?>"
or this:
value='<?=("Odeslat dotaz")?>'
I could write something this:
<?$str =_("Send")?>
<input type="submit" name="bla" value="<?=$str?>">
but it is too uncomfortable...
Does anybody know how I can do it to be good?