Change the Wording of an Error Message in Magento 1.9

magento-1.9messages

i need to change the wording of a error message which is displayed in the edit information page in accounts enter image description here but i dont really know what file to find this error message in. I tried changing the message in validation.js but it didn't apply it to this page.

If you know what file I have to change in order to change the error message please let me know.

Best Answer

In your theme folder create a locale/[locale_code]/translate.csv file.

Example: app/design/frontend/[package]/[theme]/locale/en_US/translate.csv

And add this line:

"Please make sure your passwords match.","Translated String."

And finally refresh Translations cache.

Related Topic