source: trunk/grails-app/i18n/messages.properties @ 1167

Last change on this file since 1167 was 1167, checked in by robert@…, 13 years ago

Added a check for string template fields, because they can not exceed 255 characters. See ticket #193

File size: 4.1 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
20default.boolean.true=True
21default.boolean.false=False
22default.date.format=yyyy-MM-dd HH:mm:ss z
23default.number.format=0
24
25default.created.message={0} {1} created
26default.updated.message={0} {1} updated
27default.deleted.message={0} {1} deleted
28default.not.deleted.message={0} {1} could not be deleted
29default.not.found.message={0} not found with id {1}
30default.optimistic.locking.failure=Another user has updated this {0} while you were editing
31
32default.home.label=Home
33default.list.label={0} List
34default.add.label=Add {0}
35default.new.label=New {0}
36default.create.label=Create {0}
37default.show.label=Show {0}
38default.edit.label=Edit {0}
39
40default.button.create.label=Create
41default.button.edit.label=Edit
42default.button.update.label=Update
43default.button.delete.label=Delete
44default.button.delete.confirm.message=Are you sure?
45
46# Data binding errors. Use "typeMismatch.$className.$propertyName to customize (eg typeMismatch.Book.author)
47typeMismatch.java.net.URL=Property {0} must be a valid URL
48typeMismatch.java.net.URI=Property {0} must be a valid URI
49typeMismatch.java.util.Date=Property {0} must be a valid Date
50typeMismatch.java.lang.Double=Property {0} must be a valid number
51typeMismatch.java.lang.Integer=Property {0} must be a valid number
52typeMismatch.java.lang.Long=Property {0} must be a valid number
53typeMismatch.java.lang.Short=Property {0} must be a valid number
54typeMismatch.java.math.BigDecimal=Property {0} must be a valid number
55typeMismatch.java.math.BigInteger=Property {0} must be a valid number
56
57// TemplateEntity errors
58templateEntity.typeMismatch.integer=Property {0} must be of type Integer and is currently of type {1}
59templateEntity.typeMismatch.string=Property {0} must be of type String and is currently of type {1}
60templateEntity.tooLong.string=Property {0} may contain at most 255 characters.
61templateEntity.typeMismatch.templateFieldListItem=Property {0} must be of type TemplateFieldListItem and is currently of type {1}
62templateEntity.typeMismatch.float=Property {0} must be of type Float and is currently of type {1}
63templateEntity.typeMismatch.double=Property {0} must be of type Double and is currently of type {1}
64templateEntity.typeMismatch.date=Property {0} must be of type Date and is currently of type {1}
65templateEntity.typeMismatch.term=Property {0} must be of type Term and is currently of type {1}
66
67event.endTime.greaterThanStartTime=End time should be greater than or equal to the Start Time
Note: See TracBrowser for help on using the repository browser.