cancel
Showing results for 
Search instead for 
Did you mean: 

Magento 2 Translatation Help

SOLVED

Magento 2 Translatation Help

Hello!
I want to translate my multi-language magento system. But I don't want to edit the theme and other files. Because I think the multi-language feature will be corrupted. I think I need to translate through the front. How can I do it? Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Magento 2 Translatation Help

You need to create i18n folder in your theme or module level and create CSV file specific to language.

en_US.csv for English,

es_ES for Spain language

nl_NL for Dutch language

 

and add the first column as original text and second column as the translated word.

 

After Create CSV file you need to run upgrade and Static content deploy command to see changes

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

View solution in original post

2 REPLIES 2

Re: Magento 2 Translatation Help

You need to create i18n folder in your theme or module level and create CSV file specific to language.

en_US.csv for English,

es_ES for Spain language

nl_NL for Dutch language

 

and add the first column as original text and second column as the translated word.

 

After Create CSV file you need to run upgrade and Static content deploy command to see changes

If Issue Solved, Click Kudos/Accept As solutions. Get Magento insight from
Magento 2 Blogs/Tutorial

Re: Magento 2 Translatation Help

i needed it, so thanks!