Magento 2 – Translate Shipping Method Title

cartlocalisationmagento-2.1shippingshipping-methods

I am trying to convertshipping method title but it's not working.

I am using porto theme for magento 2. In theme there is Folder i18n. for free shipping method i have placed title FRee Shippings now i want to translate this text to custom text Free Shippings for you from en_US.csv file but it's not working. Also, for german store i have added german Title. but when i switch to german store it doesn't translate the shipping Title to german. it shows in english.

enter image description here

How can i translate shipping title?

Best Answer

After some research i found solution of this myself.

In my magento 2 installation i have 3 languages English, German and NL despite all correct efforts it wasn't working so i did deploy using below commands and it started working.

 php -dmemory_limit=6G bin/magento setup:static-content:deploy
 php -dmemory_limit=6G bin/magento setup:static-content:deploy nl_NL
 php -dmemory_limit=6G bin/magento setup:static-content:deploy de_DE

Here in above code done deploy for each store.

After running above code changes i did for translation reflecting on frontend.

Related Topic