@@ -22,16 +22,30 @@ class MessageLookup extends MessageLookupByLibrary {
22
22
23
23
static String m0 (value) => "This field value must be equal to ${value }." ;
24
24
25
+ static String m0 (value) => "This field value must be equal to ${value }." ;
26
+
27
+ static String m1 (max) => "Value must be less than or equal to ${max }" ;
28
+
25
29
static String m1 (max) => "Value must be less than or equal to ${max }" ;
26
30
31
+ static String m2 (maxLength) =>
32
+ "Value must have a length less than or equal to ${maxLength }" ;
33
+
27
34
static String m2 (maxLength) =>
28
35
"Value must have a length less than or equal to ${maxLength }" ;
29
36
30
37
static String m3 (min) => "Value must be greater than or equal to ${min }." ;
31
38
39
+ static String m3 (min) => "Value must be greater than or equal to ${min }." ;
40
+
32
41
static String m4 (minLength) =>
33
42
"Value must have a length greater than or equal to ${minLength }" ;
34
43
44
+ static String m4 (minLength) =>
45
+ "Value must have a length greater than or equal to ${minLength }" ;
46
+
47
+ static String m5 (value) => "This field value must not be equal to ${value }." ;
48
+
35
49
static String m5 (value) => "This field value must not be equal to ${value }." ;
36
50
37
51
final messages = _notInlinedMessages (_notInlinedMessages);
@@ -43,8 +57,8 @@ class MessageLookup extends MessageLookupByLibrary {
43
57
"emailErrorText" : MessageLookupByLibrary .simpleMessage (
44
58
"This field requires a valid email address." ),
45
59
"equalErrorText" : m0,
46
- "integerErrorText" : MessageLookupByLibrary . simpleMessage (
47
- "This field requires a valid integer." ),
60
+ "integerErrorText" :
61
+ MessageLookupByLibrary . simpleMessage ( "Value must be an integer." ),
48
62
"ipErrorText" : MessageLookupByLibrary .simpleMessage (
49
63
"This field requires a valid IP." ),
50
64
"matchErrorText" : MessageLookupByLibrary .simpleMessage (
0 commit comments