1. Add the following code inside your custom module config.xml
<frontend> <translate> <modules> <Webkul_Modulename> <files> <default>Translation.csv</default> </files> </Webkul_Modulename> </modules> </translate> </frontend>
2. Put Your Translation.csv inside app/locale/[your package]/
3. Use following code to translate it in frontend .
<?php echo Mage::helper('modulename')->__('text to translate'); ?>
4. This is how your csv file should be .
“text to translate”,”texto a traducir”
and so on.
Enjoy.
Be the first to comment.