6 |--------------------------------------------------------------------------
7 | Validation Language Lines
8 |--------------------------------------------------------------------------
10 | The following language lines contain the default error messages used by
11 | the validator class. Some of these rules have multiple versions such
12 | as the size rules. Feel free to tweak each of these messages here.
16 'accepted' => ':attribute musi zostać zaakceptowany.',
17 'active_url' => ':attribute nie jest prawidłowym adresem URL.',
18 'after' => ':attribute musi być datą następującą po :date.',
19 'alpha' => ':attribute może zawierać wyłącznie litery.',
20 'alpha_dash' => ':attribute może zawierać wyłącznie litery, cyfry i myślniki.',
21 'alpha_num' => ':attribute może zawierać wyłącznie litery i cyfry.',
22 'array' => ':attribute musi być tablicą.',
23 'before' => ':attribute musi być datą poprzedzającą :date.',
25 'numeric' => ':attribute musi zawierać się w przedziale od :min do :max.',
26 'file' => 'Waga :attribute musi zawierać się pomiędzy :min i :max kilobajtów.',
27 'string' => 'Długość :attribute musi zawierać się pomiędzy :min i :max.',
28 'array' => ':attribute musi mieć od :min do :max elementów.',
30 'boolean' => ':attribute musi być wartością prawda/fałsz.',
31 'confirmed' => ':attribute i potwierdzenie muszą być zgodne.',
32 'date' => ':attribute nie jest prawidłową datą.',
33 'date_format' => ':attribute musi mieć format :format.',
34 'different' => ':attribute i :other muszą się różnić.',
35 'digits' => ':attribute musi mieć :digits cyfr.',
36 'digits_between' => ':attribute musi mieć od :min do :max cyfr.',
37 'email' => ':attribute musi być prawidłowym adresem e-mail.',
38 'filled' => ':attribute jest wymagany.',
39 'exists' => 'Wybrana wartość :attribute jest nieprawidłowa.',
40 'image' => ':attribute musi być obrazkiem.',
41 'in' => 'Wybrana wartość :attribute jest nieprawidłowa.',
42 'integer' => ':attribute musi być liczbą całkowitą.',
43 'ip' => ':attribute musi być prawidłowym adresem IP.',
45 'numeric' => 'Wartość :attribute nie może być większa niż :max.',
46 'file' => 'Wielkość :attribute nie może być większa niż :max kilobajtów.',
47 'string' => 'Długość :attribute nie może być większa niż :max znaków.',
48 'array' => 'Rozmiar :attribute nie może być większy niż :max elementów.',
50 'mimes' => ':attribute musi być plikiem typu: :values.',
52 'numeric' => 'Wartość :attribute nie może być mniejsza od :min.',
53 'file' => 'Wielkość :attribute nie może być mniejsza niż :min kilobajtów.',
54 'string' => 'Długość :attribute nie może być mniejsza niż :min znaków.',
55 'array' => 'Rozmiar :attribute musi posiadać co najmniej :min elementy.',
57 'not_in' => 'Wartość :attribute jest nieprawidłowa.',
58 'numeric' => ':attribute musi być liczbą.',
59 'regex' => 'Format :attribute jest nieprawidłowy.',
60 'required' => 'Pole :attribute jest wymagane.',
61 'required_if' => 'Pole :attribute jest wymagane jeśli :other ma wartość :value.',
62 'required_with' => 'Pole :attribute jest wymagane jeśli :values zostało wprowadzone.',
63 'required_with_all' => 'Pole :attribute jest wymagane jeśli :values są obecne.',
64 'required_without' => 'Pole :attribute jest wymagane jeśli :values nie zostało wprowadzone.',
65 'required_without_all' => 'Pole :attribute jest wymagane jeśli żadna z wartości :values nie została podana.',
66 'same' => 'Pole :attribute i :other muszą być takie same.',
68 'numeric' => ':attribute musi mieć długość :size.',
69 'file' => ':attribute musi mieć :size kilobajtów.',
70 'string' => ':attribute mmusi mieć długość :size znaków.',
71 'array' => ':attribute musi posiadać :size elementów.',
73 'string' => ':attribute musi być ciągiem znaków.',
74 'timezone' => ':attribute musi być prawidłową strefą czasową.',
75 'unique' => ':attribute zostało już zajęte.',
76 'url' => 'Format :attribute jest nieprawidłowy.',
79 |--------------------------------------------------------------------------
80 | Custom Validation Language Lines
81 |--------------------------------------------------------------------------
83 | Here you may specify custom validation messages for attributes using the
84 | convention "attribute.rule" to name the lines. This makes it quick to
85 | specify a specific custom language line for a given attribute rule.
90 'password-confirm' => [
91 'required_with' => 'Potwierdzenie hasła jest wymagane.',
96 |--------------------------------------------------------------------------
97 | Custom Validation Attributes
98 |--------------------------------------------------------------------------
100 | The following language lines are used to swap attribute place-holders
101 | with something more reader friendly such as E-Mail Address instead
102 | of "email". This simply helps us make messages a little cleaner.