@@ -27,31 +27,33 @@ class MessageLookup extends MessageLookupByLibrary {
27
27
28
28
static m3 (min) => "Wartość musi być większa lub równa ${min }." ;
29
29
30
- static m4 (minLength) => "Wartość musi wynosić co najmniej ${minLength } znaków." ;
30
+ static m4 (minLength) =>
31
+ "Wartość musi wynosić co najmniej ${minLength } znaków." ;
31
32
32
33
static m5 (value) => "Wartość tego pola nie może być ${value }." ;
33
34
34
35
final messages = _notInlinedMessages (_notInlinedMessages);
36
+
35
37
static _notInlinedMessages (_) => < String , Function > {
36
- "creditCardErrorText" : MessageLookupByLibrary .simpleMessage (
37
- "To pole wymaga podania ważnego numeru karty kredytowej." ),
38
- "DateStringErrorText" : MessageLookupByLibrary .simpleMessage (
39
- "To pole wymaga poprawnego ciągu znaków daty." ),
40
- "emailErrorText" : MessageLookupByLibrary .simpleMessage (
41
- "To pole wymaga podania poprawnego adresu e-mail." )
42
- "ipErrorText" : MessageLookupByLibrary . simpleMessage (
43
- "To pole wymaga ważnego IP." ),
44
- "matchErrorText" : MessageLookupByLibrary .simpleMessage (
45
- "Wartość nie pasuje do wzorca." ),
46
- "maxErrorText" : m0,
47
- "MaxLengthErrorText" : m1,
48
- "minErrorText" : m2,
49
- "MinLengthErrorText" : m3,
50
- "numericErrorText" :
51
- MessageLookupByLibrary . simpleMessage ( "Wartość musi być numeryczna." ),
52
- "requiredErrorText" :
53
- MessageLookupByLibrary .simpleMessage ("To pole nie może być puste." ),
54
- "urlErrorText" : MessageLookupByLibrary .simpleMessage (
55
- "To pole wymaga podania poprawnego adresu URL." )
56
- };
38
+ "creditCardErrorText" : MessageLookupByLibrary .simpleMessage (
39
+ "To pole wymaga podania ważnego numeru karty kredytowej." ),
40
+ "DateStringErrorText" : MessageLookupByLibrary .simpleMessage (
41
+ "To pole wymaga poprawnego ciągu znaków daty." ),
42
+ "emailErrorText" : MessageLookupByLibrary .simpleMessage (
43
+ "To pole wymaga podania poprawnego adresu e-mail." ),
44
+ "ipErrorText" :
45
+ MessageLookupByLibrary . simpleMessage ( "To pole wymaga ważnego IP." ),
46
+ "matchErrorText" : MessageLookupByLibrary .simpleMessage (
47
+ "Wartość nie pasuje do wzorca." ),
48
+ "maxErrorText" : m0,
49
+ "MaxLengthErrorText" : m1,
50
+ "minErrorText" : m2,
51
+ "MinLengthErrorText" : m3,
52
+ "numericErrorText" : MessageLookupByLibrary . simpleMessage (
53
+ "Wartość musi być numeryczna." ),
54
+ "requiredErrorText" :
55
+ MessageLookupByLibrary .simpleMessage ("To pole nie może być puste." ),
56
+ "urlErrorText" : MessageLookupByLibrary .simpleMessage (
57
+ "To pole wymaga podania poprawnego adresu URL." )
58
+ };
57
59
}
0 commit comments