ge.stripes.stripes.1.4.3.source-code.StripesResources.properties Maven / Gradle / Ivy
###############################################################################
## Default Resource Bundle file for the Stripes Framework. Values should be
## placed in here for the following:
## - Form Field Labels, unless you want users to see a non-localized, non-
## pretty name from the form field declaration (prettied up a little).
## - Error messages for:
## - Standard validation error messages
## - Converter error messages
## - Error messages used in your custom ActionBean classes
###############################################################################
# Resource strings used by the tag when there are no nested tags
stripes.errors.header=Please fix the following errors:
stripes.errors.beforeError=-
stripes.errors.afterError=
stripes.errors.footer=
# Resource strings used by the tag when displaying errors for a
# specific field (e.g. ). If not supplied the
# values above will be used instead.
stripes.fieldErrors.header=
stripes.fieldErrors.beforeError=
stripes.fieldErrors.afterError=
stripes.fieldErrors.footer=
# Resource strings used by the stripes:messages tag
stripes.messages.header=
# Validation error messages produced by Stripes' built-in converter classes. These
# are default error messages and can be overridden on per-field and per-form levels.
# Using the 'invalidNumber' error for a field 'age' of a form posting to
# '/user/Profile.action', the keys looked for (in order) would be:
# 1: /user/Profile.action.age.invalidNumber
# 2: /user/Profile.action.age.errorMessage
# 3: age.errorMessage
# 4: /user/Profile.action.invalidNumber
# 5: converter.number.invalidNumber
converter.number.invalidNumber=The value ({1}) entered in field {0} must be a valid number
converter.byte.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
converter.short.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
converter.integer.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
converter.float.outOfRange=The value ({1}) entered in field {0} was out of the range {2} to {3}
converter.enum.notAnEnumeratedValue=The value "{1}" is not a valid value for field {0}
converter.date.invalidDate=The value ({1}) entered in field {0} must be a valid date
converter.email.invalidEmail=The value ({1}) entered is not a valid email address
# Validation error messages produced by Stripes' annotation based validations. These
# are default error messages and can be overridden on per-field and per-form levels.
# Using the 'valueNotPresent' required field error for a field 'username' of a form
# posting to '/user/Register.action', the keys looked for (in order) would be:
# 1: /user/Register.action.username.valueNotPresent
# 2: /user/Register.action.username.errorMessage
# 3: username.errorMessage
# 4: /user/Register.action.valueNotPresent
# 5: validation.required.valueNotPresent
validation.required.valueNotPresent={0} is a required field
validation.minlength.valueTooShort={0} must be at least {2} characters long
validation.maxlength.valueTooLong={0} must be no more than {2} characters long
validation.minvalue.valueBelowMinimum=The minimum allowed value for {0} is {2}
validation.maxvalue.valueAboveMaximum=The maximum allowed value for {0} is {2}
validation.mask.valueDoesNotMatch={1} is not a valid {0}
validation.expression.valueFailedExpression=The value supplied ({1}) for field {0} is invalid