I generated some CRUD interface to manage my tables. I put validations in the models. But the returns error messages in English. I would like to return this message in Portuguese because my client is in Brazil. Is there any way I can do that?
Share
Within your config/application.rb probably in line #34 you have commented out
You should have this:
You would probably need to put some translations in config/locales/pt.yml. More about translating your Rails app you will find in Rails Guides i18n section