#672

stephen
Keymaster

Hi,

Please follow steps:
– Go to file: app/design/frontend/sns_nazic/default/template/catalog/product/view.phtml find and replace the bellow code:

if ($title = $this->getChildData($alias, 'title')):
	echo $this->escapeHtml($title);
else : 
	echo ucfirst("{$alias}");
endif;

by:

if ($title = $this->getChildData($alias, 'title')):
	echo $this->escapeHtml($title);
else : 
	echo $this->__(ucfirst("{$alias}"));
endif;

– You can create file: app/design/frontend/sns_nazic/default/locale/en_US(or your locale)/translate.csv and put content:
‘description’,’YOUR_TEXT1′
‘additional’,’YOUR_TEXT2′
‘tags’,’YOUR_TEXT3′
‘review’,’YOUR_TEXT4′