How to be multilanguage this text in reviews page

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

Profile photo of Ziven Staff 100280.00 $tone November 10, 2015
Public

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.
 
 

#1
Profile photo of george_ardeleanu 950.00 $tone November 10, 2015
Public
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
#2
Profile photo of Ziven Staff 100280.00 $tone November 11, 2015
Public

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.
 
 
 
 
 

#4

Please login or Register to Submit Answer

Written By

Comments