Quantcast
Channel: Webkul Blog
Viewing all articles
Browse latest Browse all 5553

Translate Text Magento

$
0
0

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.

Facebook Twitter Email Reddit Stumbleupon

Viewing all articles
Browse latest Browse all 5553

Trending Articles