Hi,
How to make to be multilanguage this text in reviews product page?
The file is in /app/design/frontend/gem/default/template/review/product/view/list.phtml
<?php else:
echo "<h2>Customer Reviews</h2>";
echo "<p>There are no customer reviews yet.</p>";
endif; ?>
4 answers
Hi George,
Please help me change the code to:
echo $this->__('<h2>Customer Reviews</h2>')
echo $this->__('<p>There are no customer reviews yet.</p>')
And please try to to see this solution. I think it will help you more understand. http://magento.stackexchange.com/questions/23677/how-to-add-translations-for-new-words-in-magento
Best Regards,
Ziven.
Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/r36628bohe/public_html/development2/app/design/frontend/gem/default/template/review/product/view/list.phtml on line 65
Hi,
I mean is:
Please change from:
<?php else:
echo "<h2>Customer Reviews</h2>";
echo "<p>There are no customer reviews yet.</p>";
endif; ?>
to
<?php else:
echo $this->__('<h2>Customer Reviews</h2>');
echo $this->__('<p>There are no customer reviews yet.</p>');
endif; ?>
Best Regards,
Ziven.