Files
nexusphp/resources/lang/pl/validation.php
2025-09-23 11:53:30 +07:00

157 lines
11 KiB
PHP

<?php
declare(strict_types=1);
return [
'accepted' => 'Pole :attribute musi być zaakceptowane.',
'accepted_if' => 'Pole :attribute musi być zaakceptowane, gdy :other jest :value.',
'active_url' => 'Pole :attribute musi być prawidłowym adresem URL.',
'after' => 'Pole :attribute musi być datą po :date.',
'after_or_equal' => 'Pole :attribute musi być datą po lub równą :date.',
'alpha' => 'Pole :attribute musi zawierać tylko litery.',
'alpha_dash' => 'Pole :attribute musi zawierać tylko litery, cyfry, myślniki i podkreślenia.',
'alpha_num' => 'Pole :attribute musi zawierać tylko litery i cyfry.',
'any_of' => 'Pole :attribute jest nieprawidłowe.',
'array' => 'Pole :attribute musi być tablicą.',
'ascii' => 'Pole :attribute musi zawierać tylko jednobajtowe znaki alfanumeryczne i symbole.',
'before' => 'Pole :attribute musi być datą przed :date.',
'before_or_equal' => 'Pole :attribute musi być datą przed lub równą :date.',
'between' => [
'array' => ':attribute musi mieć pomiędzy :min a :max elementów.',
'file' => 'Pole :attribute musi być pomiędzy :min a :max kilobajtów.',
'numeric' => 'Pole :attribute musi być pomiędzy :min a :max.',
'string' => 'Pole :attribute musi zawierać się między :min a :max znaków.',
],
'boolean' => 'Pole :attribute musi być prawdziwe lub fałszywe.',
'can' => 'Pole :attribute zawiera nieautoryzowaną wartość.',
'confirmed' => 'Potwierdzenie pola :attribute nie pasuje.',
'contains' => 'Pole :attribute nie posiada wymaganej wartości.',
'current_password' => 'Hasło jest nieprawidłowe.',
'date' => 'Pole :attribute musi być prawidłową datą.',
'date_equals' => 'Pole :attribute musi być datą równą :date.',
'date_format' => 'Pole :attribute musi pasować do formatu :format.',
'decimal' => 'Pole :attribute musi mieć :dziesiętne miejsca po przecinku.',
'declined' => 'Pole :attribute musi zostać odrzucone.',
'declined_if' => 'Pole :attribute musi zostać odrzucone, gdy :other jest :value.',
'different' => 'Pole :attribute i :other muszą być różne.',
'digits' => 'Pole :attribute musi zawierać :digits cyfry.',
'digits_between' => 'Pole :attribute musi zawierać się między :min a :max cyfr.',
'dimensions' => 'Pole :attribute ma nieprawidłowe wymiary obrazu.',
'distinct' => ':attribute ma zduplikowaną wartość.',
'doesnt_end_with' => 'Pole :attribute nie może kończyć się jednym z następujących: :values.',
'doesnt_start_with' => 'Pole :attribute nie może zaczynać się od jednego z następujących: :values.',
'email' => 'Pole :attribute musi być poprawnym adresem e-mail.',
'ends_with' => 'Pole :attribute musi kończyć się jednym z następujących: :values.',
'enum' => 'Wybrany :attribute jest nieprawidłowy.',
'exists' => 'Wybrany :attribute jest nieprawidłowy.',
'extensions' => 'Pole :attribute musi mieć jedno z następujących rozszerzeń: :values.',
'file' => 'Pole :attribute musi być plikiem.',
'filled' => 'Pole :attribute musi mieć wartość.',
'gt' => [
'array' => ':attribute musi mieć więcej niż :value elementów.',
'file' => 'Pole :attribute musi być większe niż :value kilobajtów.',
'numeric' => 'Pole :attribute musi być większe niż :value.',
'string' => 'Pole :attribute musi być większe niż :value znaków.',
],
'gte' => [
'array' => ':attribute musi mieć :value elementów lub więcej.',
'file' => 'Pole :attribute musi być większe lub równe :value kilobajtów.',
'numeric' => 'Pole :attribute musi być większe lub równe :value.',
'string' => 'Pole :attribute musi być większe lub równe :value znaków.',
],
'hex_color' => 'Pole :attribute musi być prawidłowym kolorem szesnastkowym.',
'image' => 'Pole :attribute musi być obrazem.',
'in' => 'Wybrany :attribute jest nieprawidłowy.',
'in_array' => 'Pole :attribute musi istnieć w :other.',
'integer' => 'Pole :attribute musi być liczbą całkowitą.',
'ip' => 'Pole :attribute musi być prawidłowym adresem IP.',
'ipv4' => 'Pole :attribute musi być prawidłowym adresem IPv4.',
'ipv6' => 'Pole :attribute musi być prawidłowym adresem IPv6.',
'json' => 'Pole :attribute musi być prawidłowym ciągiem JSON.',
'list' => 'Pole :attribute musi być listą.',
'lowercase' => 'Pole :attribute musi być małe.',
'lt' => [
'array' => ':attribute musi mieć mniej niż :value elementów.',
'file' => 'Pole :attribute musi być mniejsze niż :value kilobajtów.',
'numeric' => 'Pole :attribute musi być mniejsze niż :value.',
'string' => 'Pole :attribute musi być mniejsze niż :value znaków.',
],
'lte' => [
'array' => ':attribute nie może mieć więcej niż :value elementów.',
'file' => 'Pole :attribute musi być mniejsze lub równe :value kilobajtów.',
'numeric' => 'Pole :attribute musi być mniejsze lub równe :value.',
'string' => 'Pole :attribute musi być mniejsze lub równe :value znaków.',
],
'mac_address' => 'Pole :attribute musi być prawidłowym adresem MAC.',
'max' => [
'array' => ':attribute nie może mieć więcej niż :max elementów.',
'file' => 'Pole :attribute nie może być większe niż :max kilobajtów.',
'numeric' => 'Pole :attribute nie może być większe niż :max.',
'string' => 'Pole :attribute nie może być większe niż :max znaków.',
],
'max_digits' => 'Pole :attribute nie może zawierać więcej niż :max cyfr.',
'mimes' => 'Pole :attribute musi być plikiem typu: :values.',
'mimetypes' => 'Pole :attribute musi być plikiem typu: :values.',
'min' => [
'array' => 'Pole :attribute musi mieć co najmniej :min elementów.',
'file' => 'Pole :attribute musi mieć co najmniej :min kilobajtów.',
'numeric' => 'Pole :attribute musi być co najmniej :min.',
'string' => 'Pole :attribute musi mieć co najmniej :min znaków.',
],
'min_digits' => 'Pole :attribute musi zawierać co najmniej :min cyfr.',
'missing' => 'Pole :attribute musi być puste.',
'missing_if' => 'Pole :attribute musi być puste, gdy :other jest :value.',
'missing_unless' => 'Pole :attribute musi być puste, chyba że :other jest :value.',
'missing_with' => 'Pole :attribute musi być puste, gdy :values jest obecne.',
'missing_with_all' => 'Pole :attribute musi być puste, gdy :values są obecne.',
'multiple_of' => 'Pole :attribute musi być wielokrotnością :value.',
'not_in' => 'Wybrany :attribute jest nieprawidłowy.',
'not_regex' => 'Format pola :attribute jest nieprawidłowy.',
'numeric' => 'Pole :attribute musi być liczbą.',
'password' => [
'letters' => 'Pole :attribute musi zawierać co najmniej jedną literę.',
'mixed' => 'Pole :attribute musi zawierać co najmniej jedną wielką literę i jedną małą literę.',
'numbers' => 'Pole :attribute musi zawierać co najmniej jedną liczbę.',
'symbols' => 'Pole :attribute musi zawierać co najmniej jeden symbol.',
'uncompromised' => 'Podany :attribute pojawił się w wycieku danych. Proszę wybrać inny :attribute.',
],
'present' => 'Pole :attribute musi być obecne.',
'present_if' => 'Pole :attribute musi być obecne, gdy :other jest :value.',
'present_unless' => 'Pole :attribute musi być obecne, chyba że :other jest :value.',
'present_with' => ':attribute musi być obecny, gdy :values jest obecny.',
'present_with_all' => ':attribute musi być obecny, gdy :values są obecne.',
'prohibited' => 'Pole :attribute jest zabronione.',
'prohibited_if' => 'Pole :attribute jest zabronione, gdy :other to :value.',
'prohibited_if_accepted' => 'Pole :attribute jest zabronione, gdy :other jest zaakceptowane.',
'prohibited_if_declined' => 'Pole :attribute jest zabronione, gdy :other jest odrzucone.',
'prohibited_unless' => 'Pole :attribute jest zabronione, chyba że :other znajduje się w :values.',
'prohibits' => 'Pole :attribute zabrania :other obecności .',
'regex' => 'Format pola :attribute jest nieprawidłowy.',
'required' => 'Pole :attribute jest wymagane.',
'required_array_keys' => 'Pole :attribute musi zawierać wpisy dla: :values.',
'required_if' => 'Pole :attribute jest wymagane, gdy :other jest :value.',
'required_if_accepted' => 'Pole :attribute jest wymagane, gdy :other jest zaakceptowane.',
'required_if_declined' => 'Pole :attribute jest wymagane, gdy :other jest odrzucone.',
'required_unless' => 'Pole :attribute jest wymagane, chyba że :other jest w :values.',
'required_with' => 'Pole :attribute jest wymagane, gdy :values jest obecne.',
'required_with_all' => 'Pole :attribute jest wymagane, gdy :values są obecne.',
'required_without' => 'Pole :attribute jest wymagane, gdy :values nie jest obecny.',
'required_without_all' => 'Pole :attribute jest wymagane, gdy żaden z :values nie jest obecny.',
'same' => 'Pole :attribute musi pasować do :other.',
'size' => [
'array' => ':attribute musi zawierać :size elementów.',
'file' => 'Pole :attribute musi mieć :size kilobajtów.',
'numeric' => 'Pole :attribute musi być :size.',
'string' => 'Pole :attribute musi mieć :size znaków.',
],
'starts_with' => 'Pole :attribute musi zaczynać się od jednego z następujących: :values.',
'string' => 'Pole :attribute musi być ciągiem.',
'timezone' => 'Pole :attribute musi być poprawną strefą czasową.',
'ulid' => 'Pole :attribute musi być poprawnym ULID.',
'unique' => ':attribute jest już zajęty.',
'uploaded' => ':attribute nie udało się przesłać.',
'uppercase' => 'Pole :attribute musi być wielkimi literami.',
'url' => 'Pole :attribute musi być prawidłowym adresem URL.',
'uuid' => 'Pole :attribute musi być prawidłowym UUID.',
];