Magento 2 – Adding i18n Folder to Custom Theme

coreextendfilelocalisationmagento2

I want to edit .csv file in module-wishlist to my custom theme.

I have copied the the file from module-wishlist and copied to

app/design/frontend/vendor/theme/Magento_Wishlist/i18n/en_US.csv.

But not working. Please help.

Best Answer

When you have to override transalation file from core module into your theme, You have to keep its inside theme i18n Folder,

app/design/frontend/vendor/theme/i18n/en_US.csv

Just run command php bin/magento setup:static-content:deploy

clear cache.

Related Topic