I'm using bootstrap/wtf.html template to display my forms. All my form input fields have wtform validators allowing me to define a custom error message. Unfortunately the RecaptchaField imported from flask_wtf does not seem to support validators (not with the goal of validating it, as it's done automatically, but for defining a custom error message). The user should not be facing technical messages but only a nice generic one. What would be the easiest and cleanest option to define my custom message, still by using bootstrap/wtf template? Other option would be to stop rendering the recaptcha field with the template but I would rather not do that if possible.
Thank you !