]> BookStack Code Mirror - bookstack/blob - resources/lang/pl/validation.php
Updated styles to use logical properties/values
[bookstack] / resources / lang / pl / validation.php
1 <?php
2 /**
3  * Validation Lines
4  * The following language lines contain the default error messages used by
5  * the validator class. Some of these rules have multiple versions such
6  * as the size rules. Feel free to tweak each of these messages here.
7  */
8 return [
9
10     // Standard laravel validation lines
11     'accepted'             => ':attribute musi zostać zaakceptowany.',
12     'active_url'           => ':attribute nie jest prawidłowym adresem URL.',
13     'after'                => ':attribute musi być datą następującą po :date.',
14     'alpha'                => ':attribute może zawierać wyłącznie litery.',
15     'alpha_dash'           => ':attribute może zawierać wyłącznie litery, cyfry i myślniki.',
16     'alpha_num'            => ':attribute może zawierać wyłącznie litery i cyfry.',
17     'array'                => ':attribute musi być tablicą.',
18     'before'               => ':attribute musi być datą poprzedzającą :date.',
19     'between'              => [
20         'numeric' => ':attribute musi zawierać się w przedziale od :min do :max.',
21         'file'    => 'Waga :attribute musi zawierać się pomiędzy :min i :max kilobajtów.',
22         'string'  => 'Długość :attribute musi zawierać się pomiędzy :min i :max.',
23         'array'   => ':attribute musi mieć od :min do :max elementów.',
24     ],
25     'boolean'              => ':attribute musi być wartością prawda/fałsz.',
26     'confirmed'            => ':attribute i potwierdzenie muszą być zgodne.',
27     'date'                 => ':attribute nie jest prawidłową datą.',
28     'date_format'          => ':attribute musi mieć format :format.',
29     'different'            => ':attribute i :other muszą się różnić.',
30     'digits'               => ':attribute musi mieć :digits cyfr.',
31     'digits_between'       => ':attribute musi mieć od :min do :max cyfr.',
32     'email'                => ':attribute musi być prawidłowym adresem e-mail.',
33     'ends_with' => ':attribute musi kończyć się jedną z poniższych wartości: :values',
34     'filled'               => ':attribute jest wymagany.',
35     'gt'                   => [
36         'numeric' => ':attribute musi być większy niż :value.',
37         'file'    => ':attribute musi mieć rozmiar większy niż :value kilobajtów.',
38         'string'  => ':attribute musi mieć więcej niż :value znaków.',
39         'array'   => ':attribute musi mieć więcej niż :value elementów.',
40     ],
41     'gte'                  => [
42         'numeric' => ':attribute musi być większy lub równy :value.',
43         'file'    => ':attribute musi mieć rozmiar większy niż lub równy :value kilobajtów.',
44         'string'  => ':attribute musi mieć :value lub więcej znaków.',
45         'array'   => ':attribute musi mieć :value lub więcej elementów.',
46     ],
47     'exists'               => 'Wybrana wartość :attribute jest nieprawidłowa.',
48     'image'                => ':attribute musi być obrazkiem.',
49     'image_extension'      => ':attribute musi mieć prawidłowe i wspierane rozszerzenie',
50     'in'                   => 'Wybrana wartość :attribute jest nieprawidłowa.',
51     'integer'              => ':attribute musi być liczbą całkowitą.',
52     'ip'                   => ':attribute musi być prawidłowym adresem IP.',
53     'ipv4'                 => ':attribute musi być prawidłowym adresem IPv4.',
54     'ipv6'                 => ':attribute musi być prawidłowym adresem  IPv6.',
55     'json'                 => ':attribute musi być prawidłowym ciągiem JSON.',
56     'lt'                   => [
57         'numeric' => ':attribute musi być mniejszy niż :value.',
58         'file'    => ':attribute musi mieć rozmiar mniejszy niż :value kilobajtów.',
59         'string'  => ':attribute musi mieć mniej niż :value znaków.',
60         'array'   => ':attribute musi mieć mniej niż :value elementów.',
61     ],
62     'lte'                  => [
63         'numeric' => ':attribute musi być mniejszy lub równy :value.',
64         'file'    => ':attribute musi mieć rozmiar mniejszy lub równy:value kilobajtów.',
65         'string'  => ':attribute nie może mieć więcej niż :value znaków.',
66         'array'   => ':attribute nie może mieć więcej niż  :value elementów.',
67     ],
68     'max'                  => [
69         'numeric' => 'Wartość :attribute nie może być większa niż :max.',
70         'file'    => 'Wielkość :attribute nie może być większa niż :max kilobajtów.',
71         'string'  => 'Długość :attribute nie może być większa niż :max znaków.',
72         'array'   => 'Rozmiar :attribute nie może być większy niż :max elementów.',
73     ],
74     'mimes'                => ':attribute musi być plikiem typu: :values.',
75     'min'                  => [
76         'numeric' => 'Wartość :attribute nie może być mniejsza od :min.',
77         'file'    => 'Wielkość :attribute nie może być mniejsza niż :min kilobajtów.',
78         'string'  => 'Długość :attribute nie może być mniejsza niż :min znaków.',
79         'array'   => 'Rozmiar :attribute musi posiadać co najmniej :min elementy.',
80     ],
81     'no_double_extension'  => ':attribute może mieć tylko jedno rozszerzenie.',
82     'not_in'               => 'Wartość :attribute jest nieprawidłowa.',
83     'not_regex'            => 'Format :attribute jest nieprawidłowy.',
84     'numeric'              => ':attribute musi być liczbą.',
85     'regex'                => 'Format :attribute jest nieprawidłowy.',
86     'required'             => 'Pole :attribute jest wymagane.',
87     'required_if'          => 'Pole :attribute jest wymagane jeśli :other ma wartość :value.',
88     'required_with'        => 'Pole :attribute jest wymagane jeśli :values zostało wprowadzone.',
89     'required_with_all'    => 'Pole :attribute jest wymagane jeśli :values są obecne.',
90     'required_without'     => 'Pole :attribute jest wymagane jeśli :values nie zostało wprowadzone.',
91     'required_without_all' => 'Pole :attribute jest wymagane jeśli żadna z wartości :values nie została podana.',
92     'same'                 => 'Pole :attribute i :other muszą być takie same.',
93     'size'                 => [
94         'numeric' => ':attribute musi mieć długość :size.',
95         'file'    => ':attribute musi mieć :size kilobajtów.',
96         'string'  => ':attribute mmusi mieć długość :size znaków.',
97         'array'   => ':attribute musi posiadać :size elementów.',
98     ],
99     'string'               => ':attribute musi być ciągiem znaków.',
100     'timezone'             => ':attribute musi być prawidłową strefą czasową.',
101     'unique'               => ':attribute zostało już zajęte.',
102     'url'                  => 'Format :attribute jest nieprawidłowy.',
103     'uploaded'             => 'Plik nie może zostać wysłany. Serwer nie akceptuje plików o takim rozmiarze.',
104
105     // Custom validation lines
106     'custom' => [
107         'password-confirm' => [
108             'required_with' => 'Potwierdzenie hasła jest wymagane.',
109         ],
110     ],
111
112     // Custom validation attributes
113     'attributes' => [],
114 ];