in angular/src/app/app-services/form-helper.service.ts [39:43]
showMessage(messageKey: string, messageVariables: any) {
this.translateService.get(messageKey, messageVariables).subscribe((translation: string) => {
this.matSnackBar.open(translation, '', { duration: 3000, panelClass: ['uk-text-center'] });
});
}