Question

I installed a template and put all the necessary translations in the i18n file but still can't see the translation. My question is: Do I have to create 3 home pages and then choose the store-view for each page or it is a problem in my translation?

enter image description here

Was it helpful?

Solution

For the translate it is not completed once you add translate text in i18 CSV file. because i18 CSV just give the translate value of original words.

Please check below step to keep in mind while translate.

  1. Add translation text to i18 CSV file (It is translate original word to translate word )
  2. Make sure In phtml file you need to display words like <?php echo __("Hello world"); ?>
  3. All the content are not comming from phtml some of the content are coming from admin CMS Page. so you need to add translated text to there after select store from store > config.

For exmple in your case Featured product title is not translated. so for that you need to first check from wher it is comming form admin or phtml? if it comes from phtml then add words to like this <?php echo __("Hello world"); ?> and if comes from admin CMS then you need to add translated text to there after change store.

OTHER TIPS

inside i18n folder you put translations for static string (from code)

for example for strings like:

<?= __("Hello world"); ?>

Home page is most probably CMS Page and it can be translated in admin panel, like you wrote, by creating them per store view.

Which kind of content is not translated?

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top