source: branches/TaskRewrite/src/grails-app/i18n/messages.properties @ 73

Last change on this file since 73 was 73, checked in by gav, 15 years ago

Add changePassword under options view so that users can change their own password.
Adjust for password validation, userCache etc. Only a small bug during "edit" is left on second "update" command.

File size: 2.5 KB
Line 
1person.pass.minSize.notmet=Password is less than the minimum size of [{3}]
2person.pass.blank=Password cannot be blank
3
4default.doesnt.match.message=Property [{0}] of class [{1}] with value [{2}] does not match the required pattern [{3}]
5default.invalid.url.message=Property [{0}] of class [{1}] with value [{2}] is not a valid URL
6default.invalid.creditCard.message=Property [{0}] of class [{1}] with value [{2}] is not a valid credit card number
7default.invalid.email.message=Property [{0}] of class [{1}] with value [{2}] is not a valid e-mail address
8default.invalid.range.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid range from [{3}] to [{4}]
9default.invalid.size.message=Property [{0}] of class [{1}] with value [{2}] does not fall within the valid size range from [{3}] to [{4}]
10default.invalid.max.message=Property [{0}] of class [{1}] with value [{2}] exceeds maximum value [{3}]
11default.invalid.min.message=Property [{0}] of class [{1}] with value [{2}] is less than minimum value [{3}]
12default.invalid.max.size.message=Property [{0}] of class [{1}] with value [{2}] exceeds the maximum size of [{3}]
13default.invalid.min.size.message=Property [{0}] of class [{1}] with value [{2}] is less than the minimum size of [{3}]
14default.invalid.validator.message=Property [{0}] of class [{1}] with value [{2}] does not pass custom validation
15default.not.inlist.message=Property [{0}] of class [{1}] with value [{2}] is not contained within the list [{3}]
16default.blank.message=Property [{0}] of class [{1}] cannot be blank
17default.not.equal.message=Property [{0}] of class [{1}] with value [{2}] cannot equal [{3}]
18default.null.message=Property [{0}] of class [{1}] cannot be null
19default.not.unique.message=Property [{0}] of class [{1}] with value [{2}] must be unique
20
21default.paginate.prev=Previous
22default.paginate.next=Next
23
24# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author)
25typeMismatch.java.net.URL=Property {0} must be a valid URL
26typeMismatch.java.net.URI=Property {0} must be a valid URI
27typeMismatch.java.util.Date=Property {0} must be a valid Date
28typeMismatch.java.lang.Double=Property {0} must be a valid number
29typeMismatch.java.lang.Integer=Property {0} must be a valid number
30typeMismatch.java.lang.Long=Property {0} must be a valid number
31typeMismatch.java.lang.Short=Property {0} must be a valid number
32typeMismatch.java.math.BigDecimal=Property {0} must be a valid number
33typeMismatch.java.math.BigInteger=Property {0} must be a valid number
34
35
Note: See TracBrowser for help on using the repository browser.