2016-03-25 01:18:05 -07:00
< ? php
2022-01-13 21:27:29 -08:00
return [
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class . Some of these rules have multiple versions such
| such as the size rules . Feel free to tweak each of these messages .
|
*/
2025-02-18 14:18:39 -08:00
'accepted' => ':attribute musi zostać zaakceptowany.' ,
'accepted_if' => ':attribute musi być zaakceptowany, gdy :other ma wartość :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' => ':attribute może zawierać tylko litery.' ,
'alpha_dash' => ':attribute może zawierać tylko litery, cyfry i myślniki.' ,
'alpha_num' => ':attribute może zawierać tylko litery i cyfry.' ,
'array' => 'Pole :attribute nie może 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.' ,
2024-07-19 09:47:22 -07:00
'between' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2017-09-06 18:05:32 -07:00
],
2024-07-19 09:47:22 -07:00
'boolean' => 'Pole atrybutu: musi być prawdziwe lub fałszywe.' ,
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
'distinct' => 'Pole :attribute ma zduplikowane wartości.' ,
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
'enum' => 'Wybrany :attribute jest nieprawidłowy.' ,
'exists' => 'Wybrane :attribute jest niewłaściwe.' ,
2025-02-18 14:18:39 -08:00
'extensions' => 'Pole :attribute musi mieć jedno z następujących rozszerzeń: :values.' ,
'file' => 'Pole :attribute musi być plikiem.' ,
2024-07-19 09:47:22 -07:00
'filled' => 'Pole :attribute musi posiadać wartość.' ,
'gt' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
],
'gte' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
],
2025-02-18 14:18:39 -08:00
'hex_color' => 'Pole :attribute musi być prawidłowym kolorem szesnastkowym.' ,
'image' => 'Pole :attribute musi być obrazem.' ,
2023-02-21 03:54:55 -08:00
'import_field_empty' => 'Wartość dla :fieldname nie może być pusta.' ,
2024-07-19 09:47:22 -07:00
'in' => 'Wybrane :attribute jest niewłaściwe.' ,
2025-02-18 14:18:39 -08:00
'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.' ,
2024-11-25 05:05:05 -08:00
'ipv4' => 'Atrybut: musi być prawidłowym adresem IPv4.' ,
2025-02-18 14:18:39 -08:00
'ipv6' => 'Pole :attribute musi być prawidłowym adresem IPv6.' ,
2024-11-25 05:05:05 -08:00
'json' => 'Atrybut: musi być prawidłowym ciągiem JSON.' ,
2025-02-18 14:18:39 -08:00
'list' => 'Pole :attribute musi być listą.' ,
'lowercase' => 'Pole :attribute musi być małą literą.' ,
2024-07-19 09:47:22 -07:00
'lt' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2017-09-06 18:05:32 -07:00
],
2024-07-19 09:47:22 -07:00
'lte' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2017-09-06 18:05:32 -07:00
],
2025-02-18 14:18:39 -08:00
'mac_address' => 'Pole :attribute musi być prawidłowym adresem MAC.' ,
2024-07-19 09:47:22 -07:00
'max' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
],
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
'min' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
],
2025-02-18 14:18:39 -08:00
'min_digits' => 'Pole :attribute musi zawierać co najmniej :min cyfr.' ,
'missing' => 'Brakuje pola :attribute' ,
'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.' ,
2024-07-19 09:47:22 -07:00
'not_in' => 'Wybrany :attribute jest nieprawidłowy.' ,
2025-02-18 14:18:39 -08:00
'not_regex' => 'Format pola :attribute jest nieprawidłowy.' ,
'numeric' => 'Pole :attribute musi być liczbą.' ,
2024-07-19 09:47:22 -07:00
'password' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2024-07-19 09:47:22 -07:00
],
2025-02-18 14:18:39 -08:00
'percent' => 'Minimalna amortyzacja musi wynosić od 0 do 100 w przypadku gdy wartość procentowa amortyzacji jest wyrażona w procentach.' ,
2024-08-15 04:21:06 -07:00
2024-07-19 09:47:22 -07:00
'present' => ':attribute nie może być puste.' ,
2025-02-18 14:18:39 -08:00
'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_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.' ,
2024-07-19 09:47:22 -07:00
'required' => ':attribute nie może być puste.' ,
2025-02-18 14:18:39 -08:00
'required_array_keys' => 'Pole :attribute musi zawierać wpisy dla: :values.' ,
2024-07-19 09:47:22 -07:00
'required_if' => 'Pole :attribute jest wymagane gdy :other jest :value.' ,
2025-02-18 14:18:39 -08:00
'required_if_accepted' => 'Pole :attribute jest wymagane, gdy :other jest zaakceptowane.' ,
'required_if_declined' => 'Pole :attribute jest wymagane, gdy :other jest odrzucone.' ,
2024-07-19 09:47:22 -07:00
'required_unless' => 'Pole atrybutów: wymagane jest, chyba że inne są w: wartościach.' ,
'required_with' => 'Pole :attribute jest wymagane gdy :values jest podana.' ,
2025-02-18 14:18:39 -08:00
'required_with_all' => 'Pole :attribute jest wymagane, gdy :values są obecne.' ,
2024-07-19 09:47:22 -07:00
'required_without' => 'Pole :attribute jest wymagane gdy :values nie jest podana.' ,
2017-10-17 18:52:20 -07:00
'required_without_all' => 'Pole atrybutu: attribute jest wymagane, gdy żadna z: wartości nie jest obecna.' ,
2025-02-18 14:18:39 -08:00
'same' => 'Pole :attribute musi pasować do :other.' ,
2024-07-19 09:47:22 -07:00
'size' => [
2025-02-18 14:18:39 -08:00
'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.' ,
2017-09-06 18:05:32 -07:00
],
2025-02-18 14:18:39 -08:00
'starts_with' => 'Pole :attribute musi zaczynać się od jednego z następujących: :values.' ,
2017-10-17 18:52:20 -07:00
'string' => 'Atrybut: atrybut musi być ciągiem.' ,
2023-12-19 09:23:16 -08:00
'two_column_unique_undeleted' => ':attribute musi być unikalny pomiędzy :table1 i :table2. ' ,
2022-01-13 21:27:29 -08:00
'unique_undeleted' => 'Wartość :attribute musi być unikalna.' ,
'non_circular' => ':attribute nie może tworzyć odwołań cyklicznych.' ,
2024-01-24 07:29:39 -08:00
'not_array' => ':attribute nie może być tablicą.' ,
2022-08-08 15:29:28 -07:00
'disallow_same_pwd_as_user_fields' => 'Hasło nie może być takie samo jak nazwa użytkownika.' ,
'letters' => 'Hasło musi zawierać co najmniej jedną literę.' ,
'numbers' => 'Hasło musi zawierać co najmniej jedną cyfrę.' ,
2022-10-04 17:48:43 -07:00
'case_diff' => 'Hasło musi zawierać małe i wielkie litery.' ,
2022-08-08 15:29:28 -07:00
'symbols' => 'Hasło musi zawierać znaki specjalne.' ,
2025-02-18 14:18:39 -08:00
'timezone' => 'Pole :attribute musi być poprawną strefą czasową.' ,
2024-07-19 09:47:22 -07:00
'unique' => ':attribute został już wzięty.' ,
'uploaded' => 'Nie udało się przesłać atrybutu:.' ,
2025-02-18 14:18:39 -08:00
'uppercase' => 'Pole :attribute musi być wielkimi literami.' ,
'url' => 'Pole :attribute musi być prawidłowym adresem URL.' ,
'ulid' => 'Pole :attribute musi być poprawnym ULID.' ,
'uuid' => 'Pole :attribute musi być prawidłowym UUID.' ,
2017-09-06 18:05:32 -07:00
2024-10-28 15:04:35 -07:00
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention " attribute.rule " to name the lines . This makes it quick to
| specify a specific custom language line for a given attribute rule .
|
*/
2017-09-06 18:05:32 -07:00
'custom' => [
2022-01-13 21:27:29 -08:00
'alpha_space' => 'Pole: attribute zawiera znak, który nie jest dozwolony.' ,
'email_array' => 'Jeden lub więcej adresów e-mail jest nieprawidłowy.' ,
'hashed_pass' => 'Twoje bieżące hasło jest niepoprawne' ,
2017-10-17 18:52:20 -07:00
'dumbpwd' => 'To hasło jest zbyt powszechne.' ,
2022-01-13 21:27:29 -08:00
'statuslabel_type' => 'Musisz wybrać odpowiedni typ etykiety statusu' ,
2025-02-18 14:18:39 -08:00
'custom_field_not_found' => 'To pole nie istnieje, sprawdź dokładnie nazwy pól niestandardowych.' ,
'custom_field_not_found_on_model' => 'To pole wydaje się istnieć, ale nie jest dostępne w tym zestawie pól Modelu Zasobów.' ,
2023-02-21 03:54:55 -08:00
// date_format validation with slightly less stupid messages. It duplicates a lot, but it gets the job done :(
2024-10-28 15:04:35 -07:00
// We use this because the default error message for date_format reflects php Y-m-d, which non-PHP
2024-07-19 09:47:22 -07:00
// people won't know how to format.
2023-04-06 19:45:10 -07:00
'purchase_date.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD' ,
'last_audit_date.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD hh:mm:ss' ,
'expiration_date.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD' ,
'termination_date.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD' ,
'expected_checkin.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD' ,
'start_date.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD' ,
'end_date.date_format' => ':attribute musi być prawidłową datą w formacie YYYY-MM-DD' ,
2024-07-19 09:47:22 -07:00
'checkboxes' => ':attribute zawiera nieprawidłowe opcje.' ,
'radio_buttons' => ':attribute jest nieprawidłowy.' ,
'invalid_value_in_field' => 'Nieprawidłowa wartość dołączona do tego pola' ,
2024-10-28 15:04:35 -07:00
'ldap_username_field' => [
2025-02-18 14:18:39 -08:00
'not_in' => '<code>sAMAccountName</code> (przypadek mieszany) prawdopodobnie nie zadziała. Zamiast tego powinieneś użyć <code>samaccountname</code> (małe przypadki).'
2024-10-28 15:04:35 -07:00
],
2025-02-18 14:18:39 -08:00
'ldap_auth_filter_query' => [ 'not_in' => '<code>uid=samaccountname</code> prawdopodobnie nie jest prawidłowym filtrem uwierzytelniającym. Prawdopodobnie chcesz <code>uid=</code> ' ],
'ldap_filter' => [ 'regex' => 'Ta wartość prawdopodobnie nie powinna być zawijana w nawiasy.' ],
2024-10-28 15:04:35 -07:00
2024-07-19 09:47:22 -07:00
],
2016-03-25 01:18:05 -07:00
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place - holders
| with something more reader friendly such as E - Mail Address instead
| of " email " . This simply helps us make messages a little cleaner .
|
*/
2017-09-06 18:05:32 -07:00
'attributes' => [],
2016-03-25 01:18:05 -07:00
2024-03-27 11:59:28 -07:00
/*
|--------------------------------------------------------------------------
2024-07-19 09:47:22 -07:00
| Generic Validation Messages - we use these in the jquery validation where we don ' t have
| access to the : attribute
2024-03-27 11:59:28 -07:00
|--------------------------------------------------------------------------
*/
2024-07-19 09:47:22 -07:00
'generic' => [
'invalid_value_in_field' => 'Nieprawidłowa wartość dołączona do tego pola' ,
2025-02-18 14:18:39 -08:00
'required' => 'To pole jest wymagane' ,
'email' => 'Podaj poprawny adres e-mail' ,
2024-07-19 09:47:22 -07:00
],
2022-01-13 21:27:29 -08:00
];