@@ -19,31 +19,44 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
19
19
class MessageLookup extends MessageLookupByLibrary {
20
20
String get localeName => 'it' ;
21
21
22
- static m4 (value) => "Il valore di questo campo deve essere uguale a ${value }." ;
22
+ static m4 (value) =>
23
+ "Il valore di questo campo deve essere uguale a ${value }." ;
23
24
24
25
static m0 (max) => "Il valore inserito deve essere minore o uguale a ${max }" ;
25
26
26
- static m1 (maxLength) => "Il valore inserito deve avere una lunghezza minore o uguale a ${maxLength }" ;
27
+ static m1 (maxLength) =>
28
+ "Il valore inserito deve avere una lunghezza minore o uguale a ${maxLength }" ;
27
29
28
- static m2 (min) => "Il valore inserito deve essere maggiore o uguale a ${min }." ;
30
+ static m2 (min) =>
31
+ "Il valore inserito deve essere maggiore o uguale a ${min }." ;
29
32
30
- static m3 (minLength) => "Il valore inserito deve avere una lunghezza maggiore o uguale a ${minLength }" ;
33
+ static m3 (minLength) =>
34
+ "Il valore inserito deve avere una lunghezza maggiore o uguale a ${minLength }" ;
31
35
32
36
final messages = _notInlinedMessages (_notInlinedMessages);
33
- static _notInlinedMessages (_) => < String , Function > {
34
- "creditCardErrorText" : MessageLookupByLibrary .simpleMessage ("Questo campo richiede un numero di carta di credito valido." ),
35
- "dateStringErrorText" : MessageLookupByLibrary .simpleMessage ("Questo campo richiede una data valida." ),
36
- "emailErrorText" : MessageLookupByLibrary .simpleMessage ("Questo campo richiede un indirizzo email valido." ),
37
- "equalErrorText" : m4,
38
- "integerErrorText" : MessageLookupByLibrary .simpleMessage ("Il valore deve essere un integer." ),
39
- "ipErrorText" : MessageLookupByLibrary .simpleMessage ("Questo campo richiede un indirizzo IP valido." ),
40
- "matchErrorText" : MessageLookupByLibrary .simpleMessage ("Il valore non corrisponde al formato richiesto." ),
41
- "maxErrorText" : m0,
42
- "maxLengthErrorText" : m1,
43
- "minErrorText" : m2,
44
- "minLengthErrorText" : m3,
45
- "numericErrorText" : MessageLookupByLibrary .simpleMessage ("Il valore deve essere numerico." ),
46
- "requiredErrorText" : MessageLookupByLibrary .simpleMessage ("Questo campo non può essere vuoto." ),
47
- "urlErrorText" : MessageLookupByLibrary .simpleMessage ("Questo campo richiede una URL valida." )
48
- };
37
+ static _notInlinedMessages (_) => < String , Function > {
38
+ "creditCardErrorText" : MessageLookupByLibrary .simpleMessage (
39
+ "Questo campo richiede un numero di carta di credito valido." ),
40
+ "dateStringErrorText" : MessageLookupByLibrary .simpleMessage (
41
+ "Questo campo richiede una data valida." ),
42
+ "emailErrorText" : MessageLookupByLibrary .simpleMessage (
43
+ "Questo campo richiede un indirizzo email valido." ),
44
+ "equalErrorText" : m4,
45
+ "integerErrorText" : MessageLookupByLibrary .simpleMessage (
46
+ "Il valore deve essere un integer." ),
47
+ "ipErrorText" : MessageLookupByLibrary .simpleMessage (
48
+ "Questo campo richiede un indirizzo IP valido." ),
49
+ "matchErrorText" : MessageLookupByLibrary .simpleMessage (
50
+ "Il valore non corrisponde al formato richiesto." ),
51
+ "maxErrorText" : m0,
52
+ "maxLengthErrorText" : m1,
53
+ "minErrorText" : m2,
54
+ "minLengthErrorText" : m3,
55
+ "numericErrorText" : MessageLookupByLibrary .simpleMessage (
56
+ "Il valore deve essere numerico." ),
57
+ "requiredErrorText" : MessageLookupByLibrary .simpleMessage (
58
+ "Questo campo non può essere vuoto." ),
59
+ "urlErrorText" : MessageLookupByLibrary .simpleMessage (
60
+ "Questo campo richiede una URL valida." )
61
+ };
49
62
}
0 commit comments