Open sjt7911 opened 4 years ago
Use TranslateService.get or TranslateService.instant.
TranslateService.get('auth.userRegisterSuccess').subscribe(msg => this.toastService.success(msg));
or
let msg = TranslateService.instant('auth.userRegisterSuccess');
this.toastService.success(msg);
"userRegisterSuccess": "Registration Successful
Please enter your email and password to start using Software",
this.toastService.success('auth.userRegisterSuccess'))