messages.assertions-errors.assertion-errors-messages.properties Maven / Gradle / Ivy
#######################################################################################
############################ Messages for assertion errors ############################
#######################################################################################
assertion-error.MISSING_MANDATORY_VALUE.detail=Content of {{ field }} must be set
assertion-error.MISSING_MANDATORY_VALUE.title=Missing mandatory value
assertion-error.NOT_AFTER_TIME.detail=Date in {{ field }} can't be that early
assertion-error.NOT_AFTER_TIME.title=Too early date
assertion-error.NOT_BEFORE_TIME.detail=Date in {{ field }} can't be that late
assertion-error.NOT_BEFORE_TIME.title=Too late date
assertion-error.NULL_ELEMENT_IN_COLLECTION.detail=There is a null element in {{ field }}
assertion-error.NULL_ELEMENT_IN_COLLECTION.title=Null element in collection
assertion-error.NUMBER_VALUE_TOO_HIGH.detail=Value of {{ field }} must be under {{ max }} (was {{ value }})
assertion-error.NUMBER_VALUE_TOO_HIGH.title=Number value too high
assertion-error.NUMBER_VALUE_TOO_LOW.detail=Value of {{ field }} must be over {{ min }} (was {{ value }})
assertion-error.NUMBER_VALUE_TOO_LOW.title=Number value too low
assertion-error.STRING_TOO_LONG.detail=Content of {{ field }} is too long, must be less than {{ maxLength }} character(s) (was {{ currentLength }})
assertion-error.STRING_TOO_LONG.title=String too long
assertion-error.STRING_TOO_SHORT.detail=Content of {{ field }} is too short, must be over {{ minLength }} character(s) (was {{ currentLength }})
assertion-error.STRING_TOO_SHORT.title=String too short
assertion-error.STRING_WITH_WHITESPACES.detail=The string {{ field }} must not have any whitespaces
assertion-error.STRING_WITH_WHITESPACES.title=String with whitespaces
assertion-error.TOO_MANY_ELEMENTS.detail=There is too many elements in {{ field }}, max is {{ maxSize }} (current {{ currentSize }} element(s))
assertion-error.TOO_MANY_ELEMENTS.title=Too many elements
assertion-error.STRING_NOT_MATCHING_PATTERN.detail=The string {{ field }} must match the pattern {{ pattern }}
assertion-error.STRING_NOT_MATCHING_PATTERN.title=String not matching the expected pattern