This commit is contained in:
EwelinaLasowy
2022-05-16 14:26:32 +02:00
parent c74fc16acd
commit 7158e07920
11 changed files with 73 additions and 16 deletions

View File

@@ -73,5 +73,8 @@
"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"
":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."
}

View File

@@ -18,4 +18,4 @@ return [
4 => "Advanced",
5 => "Expert",
],
];
];

View File

@@ -114,6 +114,43 @@ return [
"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.",
],
"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.*.startDate" => [
"required" => "Data rozpoczęcia jest wymagana.",
],
"projects.*.endDate" => [
"required" => "Data zakończenia jest wymagana.",
],
"projects.*.tasks" => [
"required" => "Zadania w projekcie są wymagane.",
],
],
"attributes" => [
"to" => "do",
"from" => "od",