I have added a RequiredFields validator for my form filed, but it's errors is on English language. How to translate this into other language? For example into Russian.
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Hi Bogoed,
That’s HTML5 validation, it’s built into the browser. You can disable it using:
$form = Form::create($this... // etc
$form->setAttribute('novalidate', true);
After you’ve disabled that, the following documents might help:
http://doc.silverstripe.org/framework/en/topics/forms#adding-your-own-validation-messages
http://doc.silverstripe.org/framework/en/topics/i18n
Hope this helps,
Loz