Magento – change “We can’t find products matching the selection” massage in magento 2.1

localisationmagento-2.1

I'd like to change this message to 'We can't find products matching the selection' and 'You don't subscribe to our newsletter' default massages.

Can anyone suggest how this can be done in Magento 2.1?

Best Answer

You have to just create i18n folder in your theme root. Create en_US.csv file underneath i18n folder.

app/design/frontend/{Packagename}/{themename}/i18n/en_US.csv
"You don\'t subscribe to our newsletter.","Pass here your custom message"
"We can\'t find products matching the selection.","Pass your custom message string"

Set your default string and translated string in csv file.

run command, php bin/magento setup:static-content:deploy clear cache.

Related Topic