22 lines
809 B
JSON
22 lines
809 B
JSON
{
|
|
"errors": {
|
|
"default": "This field is invalid",
|
|
"required": "This field is required",
|
|
"string": {
|
|
"startsWith": "This field must start with {{startsWith}}",
|
|
"endsWith": "This field must end with {{endsWith}}",
|
|
"includes": "This field must include {{includes}}"
|
|
},
|
|
"tooSmall": {
|
|
"string": "This field must be at least {{minimum}} characters long",
|
|
"number": "This field must be greater than or equal to {{minimum}}"
|
|
},
|
|
"tooBig": {
|
|
"string": "This field must be at most {{maximum}} characters long",
|
|
"number": "This field must be less than or equal to {{maximum}}"
|
|
},
|
|
"custom": {
|
|
"passwordMatch": "Passwords must match"
|
|
}
|
|
}
|
|
} |