In Phalcon 3, there was an option to set the default validator messages with this:
$validation->setDefaultMessages($defaultMessages);
This is removed in Phalcon 4.
This was extremely useful. I could set the default messages based on the current language.
In Phalcon 4, the only way to do this is by by providing the message manually when adding a Validator. This is extemely cumbersome and redundant. I litterally have thousands of form fields that would need to be refactored for this.
Is there any way I could solve this?