Update filled internship types to match moodle ones #76

Merged
kadet merged 3 commits from kadet-patch-1 into master 2020-11-07 15:29:11 +01:00
Showing only changes of commit 1194173c4c - Show all commits

View File

@ -114,18 +114,27 @@ namespace InternshipSystem.Repository
{
new InternshipType
{
Label = "Praktyka bezpłatna",
LabelEng = "Free internship",
Label = "Umowa o organizację praktyki",
LabelEng = "Internship agreement",
Description = "Praktyka bezpłatna",
DescriptionEng = "Free internship",
},
new InternshipType
{
Label = "Praktyka absolwencka",
LabelEng = "Graduate internship",
Label = "Umowa o praktykę absolwencką",
LabelEng = "Graduate internship agreement",
},
new InternshipType
{
Label = "Praktyka bezpłatna",
LabelEng = "Free apprenticeship",
Label = "Umowa o staż bezpłatny",
LabelEng = "Free apprenticeship agreement",
},
new InternshipType
{
Label = "Umowa o staż zpłatny",
LabelEng = "Paid apprenticeship agreement",
Description = "np. staż przemysłowy",
DescriptionEng = "e.g. industrial apprenticeship",
},
new InternshipType
{
@ -137,17 +146,17 @@ namespace InternshipSystem.Repository
new InternshipType
{
Label = "Umowa o pracę",
LabelEng = "contract of employment",
LabelEng = "Contract of employment",
},
new InternshipType
{
Label = "Umowa o dzieło",
LabelEng = "contract work",
Label = "Umowa o dzieło (w tym B2B)",
LabelEng = "Contract work (including B2B)",
},
new InternshipType
{
Label = "Umowa zlecenie",
LabelEng = "contract of mandate"
Label = "Umowa zlecenia (w tym B2B)",
LabelEng = "Contract of mandate (including B2B)",
},
};
await Context.InternshipTypes.AddRangeAsync(internshipTypes);