]> BookStack Code Mirror - bookstack/blob - lang/pl/validation.php
Updated translations with latest Crowdin changes (#5345)
[bookstack] / 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     'file'                 => ':attribute musi być prawidłowym plikiem.',
36     'filled'               => ':attribute jest wymagany.',
37     'gt'                   => [
38         'numeric' => ':attribute musi być większy niż :value.',
39         'file'    => ':attribute musi mieć rozmiar większy niż :value kilobajtów.',
40         'string'  => ':attribute musi mieć więcej niż :value znaków.',
41         'array'   => ':attribute musi mieć więcej niż :value elementów.',
42     ],
43     'gte'                  => [
44         'numeric' => ':attribute musi być większy lub równy :value.',
45         'file'    => ':attribute musi mieć rozmiar większy niż lub równy :value kilobajtów.',
46         'string'  => ':attribute musi mieć :value lub więcej znaków.',
47         'array'   => ':attribute musi mieć :value lub więcej elementów.',
48     ],
49     'exists'               => 'Wybrana wartość :attribute jest nieprawidłowa.',
50     'image'                => ':attribute musi być obrazkiem.',
51     'image_extension'      => ':attribute musi mieć prawidłowe i wspierane rozszerzenie',
52     'in'                   => 'Wybrana wartość :attribute jest nieprawidłowa.',
53     'integer'              => ':attribute musi być liczbą całkowitą.',
54     'ip'                   => ':attribute musi być prawidłowym adresem IP.',
55     'ipv4'                 => ':attribute musi być prawidłowym adresem IPv4.',
56     'ipv6'                 => ':attribute musi być prawidłowym adresem IPv6.',
57     'json'                 => ':attribute musi być prawidłowym ciągiem JSON.',
58     'lt'                   => [
59         'numeric' => ':attribute musi być mniejszy niż :value.',
60         'file'    => ':attribute musi mieć rozmiar mniejszy niż :value kilobajtów.',
61         'string'  => ':attribute musi mieć mniej niż :value znaków.',
62         'array'   => ':attribute musi mieć mniej niż :value elementów.',
63     ],
64     'lte'                  => [
65         'numeric' => ':attribute musi być mniejszy lub równy :value.',
66         'file'    => ':attribute musi mieć rozmiar mniejszy lub równy:value kilobajtów.',
67         'string'  => ':attribute nie może mieć więcej niż :value znaków.',
68         'array'   => ':attribute nie może mieć więcej niż  :value elementów.',
69     ],
70     'max'                  => [
71         'numeric' => 'Wartość :attribute nie może być większa niż :max.',
72         'file'    => 'Wielkość :attribute nie może być większa niż :max kilobajtów.',
73         'string'  => 'Długość :attribute nie może być większa niż :max znaków.',
74         'array'   => 'Rozmiar :attribute nie może być większy niż :max elementów.',
75     ],
76     'mimes'                => ':attribute musi być plikiem typu: :values.',
77     'min'                  => [
78         'numeric' => 'Wartość :attribute nie może być mniejsza od :min.',
79         'file'    => 'Wielkość :attribute nie może być mniejsza niż :min kilobajtów.',
80         'string'  => 'Długość :attribute nie może być mniejsza niż :min znaków.',
81         'array'   => 'Rozmiar :attribute musi posiadać co najmniej :min elementy.',
82     ],
83     'not_in'               => 'Wartość :attribute jest nieprawidłowa.',
84     'not_regex'            => 'Format :attribute jest nieprawidłowy.',
85     'numeric'              => ':attribute musi być liczbą.',
86     'regex'                => 'Format :attribute jest nieprawidłowy.',
87     'required'             => 'Pole :attribute jest wymagane.',
88     'required_if'          => 'Pole :attribute jest wymagane jeśli :other ma wartość :value.',
89     'required_with'        => 'Pole :attribute jest wymagane jeśli :values zostało wprowadzone.',
90     'required_with_all'    => 'Pole :attribute jest wymagane jeśli :values są obecne.',
91     'required_without'     => 'Pole :attribute jest wymagane jeśli :values nie zostało wprowadzone.',
92     'required_without_all' => 'Pole :attribute jest wymagane jeśli żadna z wartości :values nie została podana.',
93     'same'                 => 'Pole :attribute i :other muszą być takie same.',
94     'safe_url'             => 'Podany link może nie być bezpieczny.',
95     'size'                 => [
96         'numeric' => ':attribute musi mieć długość :size.',
97         'file'    => ':attribute musi mieć :size kilobajtów.',
98         'string'  => ':attribute mmusi mieć długość :size znaków.',
99         'array'   => ':attribute musi posiadać :size elementów.',
100     ],
101     'string'               => ':attribute musi być ciągiem znaków.',
102     'timezone'             => ':attribute musi być prawidłową strefą czasową.',
103     'totp'                 => 'Podany kod jest nieprawidłowy lub wygasł.',
104     'unique'               => ':attribute zostało już zajęte.',
105     'url'                  => 'Format :attribute jest nieprawidłowy.',
106     'uploaded'             => 'Plik nie może zostać wysłany. Serwer nie akceptuje plików o takim rozmiarze.',
107
108     'zip_file' => 'The :attribute needs to reference a file within the ZIP.',
109     'zip_file_mime' => 'The :attribute needs to reference a file of type :validTypes, found :foundType.',
110     'zip_model_expected' => 'Data object expected but ":type" found.',
111     'zip_unique' => 'The :attribute must be unique for the object type within the ZIP.',
112
113     // Custom validation lines
114     'custom' => [
115         'password-confirm' => [
116             'required_with' => 'Potwierdzenie hasła jest wymagane.',
117         ],
118     ],
119
120     // Custom validation attributes
121     'attributes' => [],
122 ];