]> BookStack Code Mirror - bookstack/blob - resources/lang/pl/validation.php
Started work on details/summary blocks
[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     'backup_codes'         => 'Podany kod jest nieprawidłowy lub został już użyty.',
19     'before'               => ':attribute musi być datą poprzedzającą :date.',
20     'between'              => [
21         'numeric' => ':attribute musi zawierać się w przedziale od :min do :max.',
22         'file'    => 'Waga :attribute musi zawierać się pomiędzy :min i :max kilobajtów.',
23         'string'  => 'Długość :attribute musi zawierać się pomiędzy :min i :max.',
24         'array'   => ':attribute musi mieć od :min do :max elementów.',
25     ],
26     'boolean'              => ':attribute musi być wartością prawda/fałsz.',
27     'confirmed'            => ':attribute i potwierdzenie muszą być zgodne.',
28     'date'                 => ':attribute nie jest prawidłową datą.',
29     'date_format'          => ':attribute musi mieć format :format.',
30     'different'            => ':attribute i :other muszą się różnić.',
31     'digits'               => ':attribute musi mieć :digits cyfr.',
32     'digits_between'       => ':attribute musi mieć od :min do :max cyfr.',
33     'email'                => ':attribute musi być prawidłowym adresem e-mail.',
34     'ends_with' => ':attribute musi kończyć się jedną z poniższych wartości: :values',
35     'filled'               => ':attribute jest wymagany.',
36     'gt'                   => [
37         'numeric' => ':attribute musi być większy niż :value.',
38         'file'    => ':attribute musi mieć rozmiar większy niż :value kilobajtów.',
39         'string'  => ':attribute musi mieć więcej niż :value znaków.',
40         'array'   => ':attribute musi mieć więcej niż :value elementów.',
41     ],
42     'gte'                  => [
43         'numeric' => ':attribute musi być większy lub równy :value.',
44         'file'    => ':attribute musi mieć rozmiar większy niż lub równy :value kilobajtów.',
45         'string'  => ':attribute musi mieć :value lub więcej znaków.',
46         'array'   => ':attribute musi mieć :value lub więcej elementów.',
47     ],
48     'exists'               => 'Wybrana wartość :attribute jest nieprawidłowa.',
49     'image'                => ':attribute musi być obrazkiem.',
50     'image_extension'      => ':attribute musi mieć prawidłowe i wspierane rozszerzenie',
51     'in'                   => 'Wybrana wartość :attribute jest nieprawidłowa.',
52     'integer'              => ':attribute musi być liczbą całkowitą.',
53     'ip'                   => ':attribute musi być prawidłowym adresem IP.',
54     'ipv4'                 => ':attribute musi być prawidłowym adresem IPv4.',
55     'ipv6'                 => ':attribute musi być prawidłowym adresem IPv6.',
56     'json'                 => ':attribute musi być prawidłowym ciągiem JSON.',
57     'lt'                   => [
58         'numeric' => ':attribute musi być mniejszy niż :value.',
59         'file'    => ':attribute musi mieć rozmiar mniejszy niż :value kilobajtów.',
60         'string'  => ':attribute musi mieć mniej niż :value znaków.',
61         'array'   => ':attribute musi mieć mniej niż :value elementów.',
62     ],
63     'lte'                  => [
64         'numeric' => ':attribute musi być mniejszy lub równy :value.',
65         'file'    => ':attribute musi mieć rozmiar mniejszy lub równy:value kilobajtów.',
66         'string'  => ':attribute nie może mieć więcej niż :value znaków.',
67         'array'   => ':attribute nie może mieć więcej niż  :value elementów.',
68     ],
69     'max'                  => [
70         'numeric' => 'Wartość :attribute nie może być większa niż :max.',
71         'file'    => 'Wielkość :attribute nie może być większa niż :max kilobajtów.',
72         'string'  => 'Długość :attribute nie może być większa niż :max znaków.',
73         'array'   => 'Rozmiar :attribute nie może być większy niż :max elementów.',
74     ],
75     'mimes'                => ':attribute musi być plikiem typu: :values.',
76     'min'                  => [
77         'numeric' => 'Wartość :attribute nie może być mniejsza od :min.',
78         'file'    => 'Wielkość :attribute nie może być mniejsza niż :min kilobajtów.',
79         'string'  => 'Długość :attribute nie może być mniejsza niż :min znaków.',
80         'array'   => 'Rozmiar :attribute musi posiadać co najmniej :min elementy.',
81     ],
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     'safe_url'             => 'Podany link może nie być bezpieczny.',
94     'size'                 => [
95         'numeric' => ':attribute musi mieć długość :size.',
96         'file'    => ':attribute musi mieć :size kilobajtów.',
97         'string'  => ':attribute mmusi mieć długość :size znaków.',
98         'array'   => ':attribute musi posiadać :size elementów.',
99     ],
100     'string'               => ':attribute musi być ciągiem znaków.',
101     'timezone'             => ':attribute musi być prawidłową strefą czasową.',
102     'totp'                 => 'Podany kod jest nieprawidłowy lub wygasł.',
103     'unique'               => ':attribute zostało już zajęte.',
104     'url'                  => 'Format :attribute jest nieprawidłowy.',
105     'uploaded'             => 'Plik nie może zostać wysłany. Serwer nie akceptuje plików o takim rozmiarze.',
106
107     // Custom validation lines
108     'custom' => [
109         'password-confirm' => [
110             'required_with' => 'Potwierdzenie hasła jest wymagane.',
111         ],
112     ],
113
114     // Custom validation attributes
115     'attributes' => [],
116 ];