GNU gettext - Bugs: bug #35944, xgettext: PHP Translate Function...
You are not allowed to post comments on this tracker with your current authentication level.
bug #35944: xgettext: PHP Translate Function is not recognized in String interpolation
Submitter: | None | ||
Submitted: | Thu 22 Mar 2012 11:49:52 AM UTC | ||
Category: | PHP | Severity: | 3 - Normal |
Item Group: | None | Status: | None |
Privacy: | Public | Assigned to: | None |
Open/Closed: | Open |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
Carbon-Copy List
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
Follows 1 latest change.
Date | Changed by | Updated Field | Previous Value | => | Replaced by |
---|---|---|---|---|---|
2016-11-27 | haible | Category | None | ![]() |
PHP |
Following code is valid PHP, yet the xgettext cant find the translations inside the string interpolation/heredoc:
<?PHP
$t__ = "__"; // Trick allwoing to call gettext inside strings
$updateMail = <<<MAIL
{$t__('Your application is now recieved.')}
{$t__('Update your information')}
--------------------------
...
MAIL;
?>
If you ask me, the PHP source code parsing in xgettext is too clever as it doesn't recognize those, I first thought it couldn't be that clever and tried with several keywords.