@@ -1,9 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"failed" => "These credentials do not match our records.",
|
||||
"password" => "The provided password is incorrect.",
|
||||
"throttle" => "Too many login attempts. Please try again in :seconds seconds.",
|
||||
];
|
@@ -1,8 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"previous" => "Previous",
|
||||
"next" => "Next",
|
||||
];
|
@@ -1,11 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"reset" => "Your password has been reset!",
|
||||
"sent" => "We have emailed your password reset link!",
|
||||
"throttled" => "Please wait before retrying.",
|
||||
"token" => "This password reset token is invalid.",
|
||||
"user" => "We can't find a user with that email address.",
|
||||
];
|
@@ -1,122 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"accepted" => "The :attribute must be accepted.",
|
||||
"accepted_if" => "The :attribute must be accepted when :other is :value.",
|
||||
"active_url" => "The :attribute is not a valid URL.",
|
||||
"after" => "The :attribute must be a date after :date.",
|
||||
"after_or_equal" => "The :attribute must be a date after or equal to :date.",
|
||||
"alpha" => "The :attribute must only contain letters.",
|
||||
"alpha_dash" => "The :attribute must only contain letters, numbers, dashes and underscores.",
|
||||
"alpha_num" => "The :attribute must only contain letters and numbers.",
|
||||
"array" => "The :attribute must be an array.",
|
||||
"before" => "The :attribute must be a date before :date.",
|
||||
"before_or_equal" => "The :attribute must be a date before or equal to :date.",
|
||||
"between" => [
|
||||
"numeric" => "The :attribute must be between :min and :max.",
|
||||
"file" => "The :attribute must be between :min and :max kilobytes.",
|
||||
"string" => "The :attribute must be between :min and :max characters.",
|
||||
"array" => "The :attribute must have between :min and :max items.",
|
||||
],
|
||||
"boolean" => "The :attribute field must be true or false.",
|
||||
"confirmed" => "The :attribute confirmation does not match.",
|
||||
"current_password" => "The password is incorrect.",
|
||||
"date" => "The :attribute is not a valid date.",
|
||||
"date_equals" => "The :attribute must be a date equal to :date.",
|
||||
"date_format" => "The :attribute does not match the format :format.",
|
||||
"declined" => "The :attribute must be declined.",
|
||||
"declined_if" => "The :attribute must be declined when :other is :value.",
|
||||
"different" => "The :attribute and :other must be different.",
|
||||
"digits" => "The :attribute must be :digits digits.",
|
||||
"digits_between" => "The :attribute must be between :min and :max digits.",
|
||||
"dimensions" => "The :attribute has invalid image dimensions.",
|
||||
"distinct" => "The :attribute field has a duplicate value.",
|
||||
"email" => "The :attribute must be a valid email address.",
|
||||
"ends_with" => "The :attribute must end with one of the following: :values.",
|
||||
"enum" => "The selected :attribute is invalid.",
|
||||
"exists" => "The selected :attribute is invalid.",
|
||||
"file" => "The :attribute must be a file.",
|
||||
"filled" => "The :attribute field must have a value.",
|
||||
"gt" => [
|
||||
"numeric" => "The :attribute must be greater than :value.",
|
||||
"file" => "The :attribute must be greater than :value kilobytes.",
|
||||
"string" => "The :attribute must be greater than :value characters.",
|
||||
"array" => "The :attribute must have more than :value items.",
|
||||
],
|
||||
"gte" => [
|
||||
"numeric" => "The :attribute must be greater than or equal to :value.",
|
||||
"file" => "The :attribute must be greater than or equal to :value kilobytes.",
|
||||
"string" => "The :attribute must be greater than or equal to :value characters.",
|
||||
"array" => "The :attribute must have :value items or more.",
|
||||
],
|
||||
"image" => "The :attribute must be an image.",
|
||||
"in" => "The selected :attribute is invalid.",
|
||||
"in_array" => "The :attribute field does not exist in :other.",
|
||||
"integer" => "The :attribute must be an integer.",
|
||||
"ip" => "The :attribute must be a valid IP address.",
|
||||
"ipv4" => "The :attribute must be a valid IPv4 address.",
|
||||
"ipv6" => "The :attribute must be a valid IPv6 address.",
|
||||
"mac_address" => "The :attribute must be a valid MAC address.",
|
||||
"json" => "The :attribute must be a valid JSON string.",
|
||||
"lt" => [
|
||||
"numeric" => "The :attribute must be less than :value.",
|
||||
"file" => "The :attribute must be less than :value kilobytes.",
|
||||
"string" => "The :attribute must be less than :value characters.",
|
||||
"array" => "The :attribute must have less than :value items.",
|
||||
],
|
||||
"lte" => [
|
||||
"numeric" => "The :attribute must be less than or equal to :value.",
|
||||
"file" => "The :attribute must be less than or equal to :value kilobytes.",
|
||||
"string" => "The :attribute must be less than or equal to :value characters.",
|
||||
"array" => "The :attribute must not have more than :value items.",
|
||||
],
|
||||
"max" => [
|
||||
"numeric" => "The :attribute must not be greater than :max.",
|
||||
"file" => "The :attribute must not be greater than :max kilobytes.",
|
||||
"string" => "The :attribute must not be greater than :max characters.",
|
||||
"array" => "The :attribute must not have more than :max items.",
|
||||
],
|
||||
"mimes" => "The :attribute must be a file of type: :values.",
|
||||
"mimetypes" => "The :attribute must be a file of type: :values.",
|
||||
"min" => [
|
||||
"numeric" => "The :attribute must be at least :min.",
|
||||
"file" => "The :attribute must be at least :min kilobytes.",
|
||||
"string" => "The :attribute must be at least :min characters.",
|
||||
"array" => "The :attribute must have at least :min items.",
|
||||
],
|
||||
"multiple_of" => "The :attribute must be a multiple of :value.",
|
||||
"not_in" => "The selected :attribute is invalid.",
|
||||
"not_regex" => "The :attribute format is invalid.",
|
||||
"numeric" => "The :attribute must be a number.",
|
||||
"password" => "The password is incorrect.",
|
||||
"present" => "The :attribute field must be present.",
|
||||
"prohibited" => "The :attribute field is prohibited.",
|
||||
"prohibited_if" => "The :attribute field is prohibited when :other is :value.",
|
||||
"prohibited_unless" => "The :attribute field is prohibited unless :other is in :values.",
|
||||
"prohibits" => "The :attribute field prohibits :other from being present.",
|
||||
"regex" => "The :attribute format is invalid.",
|
||||
"required" => "The :attribute field is required.",
|
||||
"required_if" => "The :attribute field is required when :other is :value.",
|
||||
"required_unless" => "The :attribute field is required unless :other is in :values.",
|
||||
"required_with" => "The :attribute field is required when :values is present.",
|
||||
"required_with_all" => "The :attribute field is required when :values are present.",
|
||||
"required_without" => "The :attribute field is required when :values is not present.",
|
||||
"required_without_all" => "The :attribute field is required when none of :values are present.",
|
||||
"same" => "The :attribute and :other must match.",
|
||||
"size" => [
|
||||
"numeric" => "The :attribute must be :size.",
|
||||
"file" => "The :attribute must be :size kilobytes.",
|
||||
"string" => "The :attribute must be :size characters.",
|
||||
"array" => "The :attribute must contain :size items.",
|
||||
],
|
||||
"starts_with" => "The :attribute must start with one of the following: :values.",
|
||||
"string" => "The :attribute must be a string.",
|
||||
"timezone" => "The :attribute must be a valid timezone.",
|
||||
"unique" => "The :attribute has already been taken.",
|
||||
"uploaded" => "The :attribute failed to upload.",
|
||||
"url" => "The :attribute must be a valid URL.",
|
||||
"uuid" => "The :attribute must be a valid UUID.",
|
||||
"attributes" => [],
|
||||
];
|
@@ -1,118 +0,0 @@
|
||||
{
|
||||
"User does not exist.": "Użytkownik nie istnieje.",
|
||||
"employment_contract": "Umowa o pracę",
|
||||
"commission_contract": "Umowa zlecenie",
|
||||
"b2b_contract": "Kontrakt B2B",
|
||||
"board_member_contract": "Członek zarządu",
|
||||
"vacation": "Urlop wypoczynkowy",
|
||||
"vacation_on_request": "Urlop na żądanie",
|
||||
"special_vacation": "Urlop okolicznościowy",
|
||||
"childcare_vacation": "Opieka nad dzieckiem art 188 kp",
|
||||
"training_vacation": "Urlop szkoleniowy",
|
||||
"unpaid_vacation": "Urlop bezpłatny",
|
||||
"volunteering_vacation": "Wolontariat",
|
||||
"look_for_work_vacation": "Urlop na poszukiwanie pracy",
|
||||
"time_in_lieu": "Odbiór za święto",
|
||||
"sick_vacation": "Zwolnienie lekarskie",
|
||||
"absence": "Nieobecność",
|
||||
"home_office": "Praca zdalna",
|
||||
"employee": "Pracownik",
|
||||
"administrator": "Administrator",
|
||||
"technical_approver": "Techniczny akceptujący",
|
||||
"administrative_approver": "Administracyjny akceptujący",
|
||||
"cancelled": "anulowany",
|
||||
"rejected": "odrzucony",
|
||||
"approved": "zatwierdzony",
|
||||
"You have pending vacation request in this range.": "Masz oczekujący wniosek w tym zakresie dat.",
|
||||
"You have approved vacation request in this range.": "Masz zaakceptowany wniosek w tym zakresie dat.",
|
||||
"Vacation limit has been exceeded.": "Limit urlopu został przekroczony.",
|
||||
"Vacation needs minimum one day.": "Urlop musi być co najmniej na jeden dzień.",
|
||||
"The vacation request cannot be created at the turn of the year.": "Wniosek nie może zostać złożony na przełomie roku.",
|
||||
"User has been created.": "Użytkownik został utworzony.",
|
||||
"User has been updated.": "Użytkownik został zaktualizowany.",
|
||||
"User has been deleted.": "Użytkownik został usunięty.",
|
||||
"User has been restored.": "Użytkownik został przywrócony.",
|
||||
"Holiday has been created.": "Dzień wolny został utworzony.",
|
||||
"Holiday has been updated.": "Dzień wolny został zaktualizowany.",
|
||||
"Holiday has been deleted.": "Dzień wolny został usunięty.",
|
||||
"Selected year period has been changed.": "Wybrany rok został zmieniony.",
|
||||
"Vacation limits have been updated.": "Limity urlopów zostały zaktualizowane.",
|
||||
"Vacation request has been created.": "Wniosek został utworzony.",
|
||||
"Vacation request has been accepted.": "Wniosek został zaakceptowany.",
|
||||
"Vacation request has been approved.": "Wniosek został zatwierdzony.",
|
||||
"Vacation request has been rejected.": "Wniosek został odrzucony.",
|
||||
"Vacation request has been cancelled.": "Wniosek został anulowany.",
|
||||
"Sum:": "Suma:",
|
||||
"Date": "Data",
|
||||
"Day of week": "Dzień tygodnia",
|
||||
"Start date": "Data rozpoczęcia",
|
||||
"End date": "Data zakończenia",
|
||||
"Worked hours": "Liczba godzin",
|
||||
"Hi :user!": "Cześć :user!",
|
||||
"The vacation request :title has changed state to :state.": "Wniosek urlopowy :title zmienił status na :state.",
|
||||
"Vacation request :title": "Wniosek urlopowy :title",
|
||||
"Regards": "Z poważaniem",
|
||||
"If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "Jeżeli masz problemy z kliknięciem przycisku \":actionText\", skopiuj i wklej poniższy adres w pasek przeglądarki:",
|
||||
"All rights reserved.": "Wszelkie prawa zastrzeżone",
|
||||
"Show vacation request": "Pokaż wniosek",
|
||||
"Vacation request :title has been created" : "Wniosek :title został utworzony",
|
||||
"The vacation request :title from user :requester has been created successfully.": "Wniosek :title użytkownika :requester został utworzony pomyślnie.",
|
||||
"Vacation type: :type": "Rodzaj wniosku: :type",
|
||||
"From :from to :to (number of days: :days)": "Od :from do :to (liczba dni: :days)",
|
||||
"Click here for details": "Kliknij, aby zobaczyć szczegóły",
|
||||
"Vacation request :title is waiting for your technical approval": "Wniosek urlopowy :title czeka na akceptację techniczną",
|
||||
"Vacation request :title is waiting for your administrative approval": "Wniosek urlopowy :title czeka na akceptację administracyjną",
|
||||
"The vacation request :title from user :requester is waiting for your technical approval.": "Wniosek urlopowy :title użytkownika :requester czeka na Twoją akceptację techniczną.",
|
||||
"The vacation request :title from user :requester is waiting for your administrative approval.": "Wniosek urlopowy :title użytkownika :requester czeka na Twoją akceptację administracyjną.",
|
||||
"Vacation request :title has been :status": "Wniosek :title został :status",
|
||||
"The vacation request :title from user :requester has been :status.": "Wniosek urlopowy :title użytkownika :requester został :status.",
|
||||
"Vacation request :title has been created on your behalf": "Wniosek urlopowy :title został utworzony w Twoim imieniu",
|
||||
"The vacation request :title has been created successfully by user :creator on your behalf.": "Wniosek urlopowy :title został pomyślnie utworzony w Twoim imieniu przez użytkownika :creator.",
|
||||
"Key no :number has been created.": "Klucz nr :number został utworzony.",
|
||||
"Key no :number has been deleted.": "Klucz nr :number został usunięty.",
|
||||
"Key no :number has been taken from :user.": "Klucz nr :number został zabrany użytkownikowi :user.",
|
||||
"Key no :number has been given to :user.": "Klucz nr :number został przekazany użytkownikowi :user.",
|
||||
":sender gives key no :key to :recipient": ":sender przekazuje klucz nr :key :recipient",
|
||||
":recipient takes key no :key from :sender": ":recipient zabiera klucz nr :key :sender",
|
||||
"Resume has been updated.": "CV zostało zaktualizowane.",
|
||||
"Resume has been deleted.": "CV zostało usunięte.",
|
||||
"Resume has been created.": "CV zostało utworzone.",
|
||||
"Technology :name has been created.": "Technologia :name została utworzona.",
|
||||
"Technology :name has been deleted.": "Technologia :name została usunięta.",
|
||||
"The vacation request :title has been created successfully.": "Wniosek urlopowy :title został utworzony pomyślnie.",
|
||||
":x: I don't recognize the command. List of all commands:": ":x: Nie rozpoznaję polecenia. Lista wszystkich poleceń:",
|
||||
"Summary for the day :day": "Podsumowanie dla dnia :day",
|
||||
"Daily summary": "Podsumowanie dnia",
|
||||
"Give the keys to the specified user": "Przekaż klucze wskazanemu użytkownikowi",
|
||||
"You don't have any key to give": "Nie masz żadnego klucza do przekazania",
|
||||
"You can't give the keys to yourself :dzban:": "Nie możesz przekazać sobie kluczy :dzban:",
|
||||
":white_check_mark: Key no. :key has been given to <@:user>": ":white_check_mark: Klucz nr :key został przekazany użytkownikowi <@:user>",
|
||||
"You must specified the user to whom you want to give the keys": "Musisz podać użytkownika, któremu chcesz przekazać klucze",
|
||||
"Show all available commands": "Wyświetl wszystkie dostępne polecenia",
|
||||
"Available commands:": "Dostępne polecenia:",
|
||||
"Work remotely today": "Pracuj dzisiaj zdalnie",
|
||||
":white_check_mark: You work remotely today": ":white_check_mark: Pracujesz dzisiaj zdalnie",
|
||||
"List of all keys": "Lista wszystkich kluczy",
|
||||
"Keys list :key:": "Lista kluczy :key:",
|
||||
"Take keys from specified user": "Zabierz klucze wskazanemu użytkownikowi",
|
||||
"User <@:user> does not have any keys": "Użytkownik <@:user> nie ma żadnych kluczy",
|
||||
"You can't take the keys from yourself :dzban:": "Nie możesz zabrać sobie kluczy :dzban:",
|
||||
"You must specified the user you want to take the keys from": "Musisz podać użytkownika, któremu chcesz zabrać klucze",
|
||||
"User :input does not exist in toby": "Użytkownik :input nie istnieje w tobym",
|
||||
":white_check_mark: Key no. :key has been taken from user <@:user>": ":white_check_mark: Klucz nr :key został zabrany użytkownikowi <@:user>",
|
||||
"Absences :palm_tree:": "Nieobecności :palm_tree:",
|
||||
"Everybody works today :muscle:": "Wszyscy dzisiaj pracują :muscle:",
|
||||
"Birthdays :birthday:": "Urodziny :birthday:",
|
||||
"Nobody has a birthday today :cry:": "Dzisiaj nikt nie ma urodzin :cry:",
|
||||
"Remote work :house_with_garden:": "Praca zdalna :house_with_garden:",
|
||||
"Everybody is in the office :boom:": "Wszyscy dzisiaj są w biurze :boom:",
|
||||
"There are no keys in toby": "Nie ma żadnych kluczy w tobym",
|
||||
"<:url|Request no. :request> for user :user (:date)": "<:url Wniosek urlopowy nr :request użytkownika :user (:date)",
|
||||
"The year period for given year does not exist.": "Okres roczny dla danego roku nie istnieje",
|
||||
"Daily summary for day :day": "Podsumowanie dla dnia :day",
|
||||
"Requests wait for your approval - status for day :date:": "Wnioski oczekujące na Twoją akcję - stan na dzień :date:",
|
||||
"Requests list waits for your approval - status for day :date:": "Lista wniosków oczekujących na Twoją akcję - stan na dzień :date:",
|
||||
"- [request no. :request](:url) of user :user (:startDate - :endDate)": "- [wniosek nr :request](:url) użytkownika :user (:startDate - :endDate)",
|
||||
"Go to requests": "Przejdź do wniosków",
|
||||
"See details": "Zobacz szczegóły"
|
||||
}
|
@@ -1,9 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"failed" => "Błędny login lub hasło.",
|
||||
"password" => "Podane hasło jest nieprawidłowe.",
|
||||
"throttle" => "Za dużo nieudanych prób logowania. Proszę spróbować za :seconds sekund.",
|
||||
];
|
@@ -1,8 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"next" => "Następna",
|
||||
"previous" => "Poprzednia",
|
||||
];
|
@@ -1,11 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"reset" => "Hasło zostało zresetowane!",
|
||||
"sent" => "Przypomnienie hasła zostało wysłane!",
|
||||
"throttled" => "Proszę zaczekać zanim spróbujesz ponownie.",
|
||||
"token" => "Token resetowania hasła jest nieprawidłowy.",
|
||||
"user" => "Nie znaleziono użytkownika z takim adresem e-mail.",
|
||||
];
|
@@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"language_levels" => [
|
||||
1 => "A1",
|
||||
2 => "A2",
|
||||
3 => "B1",
|
||||
4 => "B2",
|
||||
5 => "C1",
|
||||
6 => "C2",
|
||||
],
|
||||
"technology_levels" => [
|
||||
1 => "Beginner",
|
||||
2 => "Junior",
|
||||
3 => "Regular",
|
||||
4 => "Advanced",
|
||||
5 => "Expert",
|
||||
],
|
||||
];
|
@@ -1,173 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
"accepted" => "Pole :attribute musi zostać zaakceptowane.",
|
||||
"active_url" => "Pole :attribute jest nieprawidłowym adresem URL.",
|
||||
"after" => "Pole :attribute musi być datą późniejszą od :date.",
|
||||
"after_or_equal" => "Pole :attribute musi być datą nie wcześniejszą niż :date.",
|
||||
"alpha" => "Pole :attribute może zawierać jedynie litery.",
|
||||
"alpha_dash" => "Pole :attribute może zawierać jedynie litery, cyfry i myślniki.",
|
||||
"alpha_num" => "Pole :attribute może zawierać jedynie litery i cyfry.",
|
||||
"array" => "Pole :attribute musi być tablicą.",
|
||||
"attached" => "Ten :attribute jest już dołączony.",
|
||||
"before" => "Pole :attribute musi być datą wcześniejszą od :date.",
|
||||
"before_or_equal" => "Pole :attribute musi być datą nie późniejszą niż :date.",
|
||||
"between" => [
|
||||
"array" => "Pole :attribute musi składać się z :min - :max elementów.",
|
||||
"file" => "Pole :attribute musi zawierać się w granicach :min - :max kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi zawierać się w granicach :min - :max.",
|
||||
"string" => "Pole :attribute musi zawierać się w granicach :min - :max znaków.",
|
||||
],
|
||||
"boolean" => "Pole :attribute musi mieć wartość logiczną prawda albo fałsz.",
|
||||
"confirmed" => "Potwierdzenie pola :attribute nie zgadza się.",
|
||||
"current_password" => "Hasło jest nieprawidłowe.",
|
||||
"date" => "Pole :attribute nie jest prawidłową datą.",
|
||||
"date_equals" => "Pole :attribute musi być datą równą :date.",
|
||||
"date_format" => "Pole :attribute nie jest w formacie :format.",
|
||||
"different" => "Pole :attribute oraz :other muszą się różnić.",
|
||||
"digits" => "Pole :attribute musi składać się z :digits cyfr.",
|
||||
"digits_between" => "Pole :attribute musi mieć od :min do :max cyfr.",
|
||||
"dimensions" => "Pole :attribute ma niepoprawne wymiary.",
|
||||
"distinct" => "Pole :attribute ma zduplikowane wartości.",
|
||||
"email" => "Pole :attribute nie jest poprawnym adresem e-mail.",
|
||||
"ends_with" => "Pole :attribute musi kończyć się jedną z następujących wartości: :values.",
|
||||
"exists" => "Zaznaczone pole :attribute jest nieprawidłowe.",
|
||||
"file" => "Pole :attribute musi być plikiem.",
|
||||
"filled" => "Pole :attribute nie może być puste.",
|
||||
"gt" => [
|
||||
"array" => "Pole :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ć dłuższe niż :value znaków.",
|
||||
],
|
||||
"gte" => [
|
||||
"array" => "Pole :attribute musi mieć :value lub więcej elementów.",
|
||||
"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ć dłuższe lub równe :value znaków.",
|
||||
],
|
||||
"image" => "Pole :attribute musi być obrazkiem.",
|
||||
"in" => "Zaznaczony element :attribute jest nieprawidłowy.",
|
||||
"in_array" => "Pole :attribute nie znajduje się 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ć poprawnym ciągiem znaków JSON.",
|
||||
"lt" => [
|
||||
"array" => "Pole :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ć krótsze niż :value znaków.",
|
||||
],
|
||||
"lte" => [
|
||||
"array" => "Pole :attribute musi mieć :value lub mniej 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ć krótsze lub równe :value znaków.",
|
||||
],
|
||||
"max" => [
|
||||
"array" => "Pole :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ć dłuższe niż :max znaków.",
|
||||
],
|
||||
"mimes" => "Pole :attribute musi być plikiem typu :values.",
|
||||
"mimetypes" => "Pole :attribute musi być plikiem typu :values.",
|
||||
"min" => [
|
||||
"array" => "Pole :attribute musi mieć przynajmniej :min elementów.",
|
||||
"file" => "Pole :attribute musi mieć przynajmniej :min kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi być nie mniejsze od :min.",
|
||||
"string" => "Pole :attribute musi mieć przynajmniej :min znaków.",
|
||||
],
|
||||
"multiple_of" => "Pole :attribute musi być wielokrotnością wartości :value",
|
||||
"not_in" => "Zaznaczony :attribute jest nieprawidłowy.",
|
||||
"not_regex" => "Format pola :attribute jest nieprawidłowy.",
|
||||
"numeric" => "Pole :attribute musi być liczbą.",
|
||||
"password" => "Hasło jest nieprawidłowe.",
|
||||
"present" => "Pole :attribute musi być 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 jest w :values.",
|
||||
"regex" => "Format pola :attribute jest nieprawidłowy.",
|
||||
"relatable" => "Ten :attribute może nie być powiązany z tym zasobem.",
|
||||
"required" => "Pole :attribute jest wymagane.",
|
||||
"required_if" => "Pole :attribute jest wymagane gdy :other ma wartość :value.",
|
||||
"required_unless" => "Pole :attribute jest wymagane jeżeli :other nie znajduje się w :values.",
|
||||
"required_with" => "Pole :attribute jest wymagane gdy :values jest obecny.",
|
||||
"required_with_all" => "Pole :attribute jest wymagane gdy wszystkie :values są obecne.",
|
||||
"required_without" => "Pole :attribute jest wymagane gdy :values nie jest obecny.",
|
||||
"required_without_all" => "Pole :attribute jest wymagane gdy żadne z :values nie są obecne.",
|
||||
"same" => "Pole :attribute i :other muszą być takie same.",
|
||||
"size" => [
|
||||
"array" => "Pole :attribute musi zawierać :size elementów.",
|
||||
"file" => "Pole :attribute musi mieć :size kilobajtów.",
|
||||
"numeric" => "Pole :attribute musi mieć :size.",
|
||||
"string" => "Pole :attribute musi mieć :size znaków.",
|
||||
],
|
||||
"starts_with" => "Pole :attribute musi zaczynać się jedną z następujących wartości: :values.",
|
||||
"string" => "Pole :attribute musi być ciągiem znaków.",
|
||||
"timezone" => "Pole :attribute musi być prawidłową strefą czasową.",
|
||||
"unique" => "Taki :attribute już występuje.",
|
||||
"uploaded" => "Nie udało się wgrać pliku :attribute.",
|
||||
"url" => "Format pola :attribute jest nieprawidłowy.",
|
||||
"uuid" => "Pole :attribute musi być poprawnym identyfikatorem UUID.",
|
||||
"custom" => [
|
||||
"education.*.school" => [
|
||||
"required" => "Nazwa szkoły jest wymagana.",
|
||||
],
|
||||
"education.*.degree" => [
|
||||
"required" => "Stopień jest wymagany.",
|
||||
],
|
||||
"education.*.fieldOfStudy" => [
|
||||
"required" => "Kierunek jest wymagany.",
|
||||
],
|
||||
"education.*.startDate" => [
|
||||
"required" => "Data rozpoczęcia jest wymagana.",
|
||||
],
|
||||
"education.*.endDate" => [
|
||||
"required" => "Data zakończenia jest wymagana.",
|
||||
"after" => "Data zakończenia musi być datą późniejszą od daty rozpoczęcia.",
|
||||
"required_if" => "Data zakończenia jest wymagana.",
|
||||
],
|
||||
"languages.*.name" => [
|
||||
"distinct" => "Języki nie mogą się powtarzać.",
|
||||
"required" => "Język jest wymagany.",
|
||||
],
|
||||
"technologies.*.name" => [
|
||||
"distinct" => "Technologie nie mogą się powtarzać.",
|
||||
"required" => "Technologia jest wymagana.",
|
||||
],
|
||||
"projects.*.description" => [
|
||||
"required" => "Opis projektu jest wymagany.",
|
||||
],
|
||||
"projects.*.technologies" => [
|
||||
"required" => "Opis projektu jest wymagany.",
|
||||
"min" => "Musi być wybrana co najmniej jedna technologia."
|
||||
],
|
||||
"projects.*.startDate" => [
|
||||
"required" => "Data rozpoczęcia jest wymagana.",
|
||||
],
|
||||
"projects.*.endDate" => [
|
||||
"required" => "Data zakończenia jest wymagana.",
|
||||
"after" => "Data zakończenia musi być datą późniejszą od daty rozpoczęcia.",
|
||||
"required_if" => "Data zakończenia jest wymagana.",
|
||||
],
|
||||
"projects.*.tasks" => [
|
||||
"required" => "Zadania w projekcie są wymagane.",
|
||||
],
|
||||
],
|
||||
"attributes" => [
|
||||
"to" => "do",
|
||||
"from" => "od",
|
||||
"firstName" => "imię",
|
||||
"lastName" => "nazwisko",
|
||||
"email" => "e-mail",
|
||||
"position" => "stanowisko",
|
||||
"employmentDate" => "data zatrudnienia",
|
||||
"date" => "data",
|
||||
"name" => "nazwa",
|
||||
],
|
||||
];
|
Reference in New Issue
Block a user