I would like to add a custom error message to my Parsley Config file but don't know how to.
I wonder if it's possible to do something like as per below? :
<input name="name" value="" type="text" required data-parsley-custom>
window.ParsleyConfig.i18n.se = $.extend(window.ParsleyConfig.i18n.se || {}, {
custom: "Custom error message"
});
Is there an issue with using the example from the doc?