I have a question. If any body help me on this. that would be good for me. I have multiple store view (Like: English, French, Spanish etc). I created those store view with currencies in backend and also install language package for each stores. Website default words is translated properly using CSV. But I want to translate the all data Like CMS Page, Products, Categories information without input data in admin in each store view. I have 1M Products and 70 CMS page. It's hard to add other language data for every stores.
Thanks Vishal
1 Answer 1
First of all you have to follow admin translation process for this as all data is different for each product , but 1 thing you can do , If you add variable as below for example for product name add below code in your file
<?php echo __($product->getName()) ?>
and add this product name translation in csv file same thing u can do for all other data
But it is not the right approach as how much data u will add in csv file
See if you are adding translation in csv file better to create product upload csv file with translation and import.