Skip to content

Commit f3eb4b4

Browse files
committed
Fix bug in polish translations
1 parent 614a4d0 commit f3eb4b4

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

lib/l10n/messages_pl.dart

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -27,31 +27,33 @@ class MessageLookup extends MessageLookupByLibrary {
2727

2828
static m3(min) => "Wartość musi być większa lub równa ${min}.";
2929

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.";
3132

3233
static m5(value) => "Wartość tego pola nie może być ${value}.";
3334

3435
final messages = _notInlinedMessages(_notInlinedMessages);
36+
3537
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+
};
5759
}

0 commit comments

Comments
 (0)