[TemplateTranslationTieIn]
---------------------------
Key: ZETACOMP-2
URL: https://issues.apache.org/jira/browse/ZETACOMP-2
Project: Zeta Components
Issue Type: Bug
Environment: All
Reporter: Maxime THOMAS - Wascou.org
Priority: Critical
If I run the extractor against tpl files containing the following code, the
comment are not extracted.
{tr_context "bla"}
{tr "blabla" comment "blibli"}
In the file "visitors/string_extracter.php" and in the function
"visitTranslationTstNode", fix the following line :
$comment = $node->comment ? $node->comment->accept($this)->value :
null;
By :
$comment = $node->comment ? $node->comment->value : null;
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.