* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * lint fixes * missing empty lines * translations * fix vue version * #134 - fixes * fix * fix * #134 - fix * fix * fix * #134 - added tests * #134 - fix to translations * #134 - tests * #134 - fix * Update database/factories/ResumeFactory.php Co-authored-by: Krzysztof Rewak <krzysztof.rewak@gmail.com> * #134 - fix * #134 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Krzysztof Rewak <krzysztof.rewak@gmail.com>
This commit is contained in:
21
resources/lang/pl/resume.php
Normal file
21
resources/lang/pl/resume.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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",
|
||||
],
|
||||
];
|
@@ -114,6 +114,51 @@ 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.",
|
||||
"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",
|
||||
|
Reference in New Issue
Block a user