ActiveRecord en.yml is the answer I would suggest if you want to change Message Validation for development
This is what en.yml looks like
en: activerecord: errors: models: user: attributes: email: blank: "Please Specify an Email id" taken: "Please use a different Email id" invalid: "Please Specify a valid Email id" password: blank: "Please Specify a Password" confirmation: "Password does not match" password_confirmation: blank: "Please Specify a Password Confirmation" first_name: blank: "Please Specify First Name" last_name: blank: "Please Specify Last Name" pdf: attributes: name: blank: "Please Specify name to PDF" taken: "Please use different name for PDF" attachment: blank: "Please Upload a PDF Attachment" data_element: attributes: name: blank: "Please give Element a desired name" taken: "Already Created Element with given name" color: blank: "Please assign a color to Element" template: attributes: name: blank: "Please Specify a Name" taken: "Please use a different name"
I advise you to define this method, and not configure the version checking module
Because if you followed the above approach, perhaps you would have skipped checking a place or two
for example, I remove the above validation module, and then replace your own User Model
then the whole check would work, but you would skip the check in Change Password
As a result, you can log in even if the password has never been provided and has never been provided.
Follow this cycle as well.
Greetings
Hi
Viren source share