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

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

Create Grails app (manual recursion to get everything in)

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