1+ # Licensed to the Apache Software Foundation (ASF) under one or more
2+ # contributor license agreements. See the NOTICE file distributed with
3+ # this work for additional information regarding copyright ownership.
4+ # The ASF licenses this file to You under the Apache License, Version 2.0
5+ # (the "License"); you may not use this file except in compliance with
6+ # the License. You may obtain a copy of the License at
7+ #
8+ # http://www.apache.org/licenses/LICENSE-2.0
9+ #
10+ # Unless required by applicable law or agreed to in writing, software
11+ # distributed under the License is distributed on an "AS IS" BASIS,
12+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ # See the License for the specific language governing permissions and
14+ # limitations under the License.
15+
16+ # -- Standard Errors --
17+ errors.header =<ul>
18+ errors.prefix =<li class="error">
19+ errors.suffix =</li>
20+ errors.footer =</ul>
21+
22+ # -- Struts Validator Error Messages --
23+ errors.required ={0} is required.
24+ errors.minlength ={0} can not be less than {1} characters.
25+ errors.maxlength ={0} can not be greater than {1} characters.
26+ errors.invalid ={0} is invalid.
27+ errors.byte ={0} must be a byte.
28+ errors.short ={0} must be a short.
29+ errors.integer ={0} must be an integer.
30+ errors.long ={0} must be a long.
31+ errors.float ={0} must be a float.
32+ errors.double ={0} must be a double.
33+ errors.date ={0} is not a date.
34+ errors.range ={0} is not in the range {1} through {2}.
35+ errors.creditcard ={0} is an invalid credit card number.
36+ errors.email ={0} is an invalid e-mail address.
37+
38+ # -- other --
39+ errors.cancel =Operation cancelled.
40+ errors.detail ={0}
41+ errors.general =The process did not complete. Details should follow.
42+ errors.token =Request could not be completed. Operation is not in sequence.
43+ errors.twofields =The '{0}' field must have the same value as the '{1}' field.
44+ errors.name.required =Name is required.
45+ errors.secret.required =Please tell me a secret (it doesn't have to be true).
46+
47+ # -- formatting --
48+ format.date =M/d/yyyy h:mm a z
49+ format.currency =$#,##0.00;$(#,##0.00)
50+
51+ # -- buttons --
52+ button.submit =Submit
53+ button.cancel =Cancel
54+ button.confirm =Confirm
55+ button.reset =Reset
56+ button.save =Save
57+
58+ # -- messages --
59+ message.detail ={0}
60+ message.example.simple =This is a simple message.
61+ message.example.replaceable =This is <strong>{0}</strong> message with <strong>{1}</strong> parameters.
62+ message.welcome =Welcome to the examples page.
63+
64+ # -- prompts --
65+ prompt.name =Name
66+ prompt.secret =Secret phrase
67+
68+ prompt.byte =Byte
69+ prompt.creditCard =Credit Card
70+ prompt.date =Date
71+ prompt.double =Double
72+ prompt.email =Email
73+ prompt.float =Float
74+ prompt.integer =Integer
75+ prompt.long =Long
76+ prompt.mask =Mask
77+ prompt.min =Min. Length
78+ prompt.max =Max. Length
79+ prompt.range =Range
80+ prompt.required =Required
81+ prompt.short =Short
82+ prompt.password =Password
83+ prompt.password2 =Password confirmation
0 commit comments