show component

This commit is contained in:
2020-03-08 09:45:05 +01:00
committed by smuddy
parent d68cd590ad
commit bb0676a428
53 changed files with 344 additions and 185 deletions

View File

@@ -7,16 +7,26 @@ export class ShowTypePipe implements PipeTransform {
transform(type: string): string {
switch (type) {
case 'worship':
case 'service-worship':
return 'Gottesdienst Anbetung';
case 'praise':
case 'service-praise':
return 'Gottesdienst Lobpreis';
case 'homegroup':
case 'home-group-big':
return 'großer Hauskreis';
case 'home-group':
return 'Hauskreis';
case 'prayergroup':
case 'prayer-group':
return 'Gebetskreis';
case 'teens-group':
return 'Teeniekreis';
case 'kids-group':
return 'Kinderkreis';
case 'misc-public':
return 'sonstige öffentliche Veranstaltung';
case 'misc-private':
return 'sonstige private Veranstaltung';
}
;
}
}