i18n for files in core package.

This commit is contained in:
Florian THIERRY
2024-09-21 21:09:36 +02:00
parent 98a890e915
commit f12dfc7029
5 changed files with 11 additions and 7 deletions
@@ -12,7 +12,7 @@ export const authenticationGuard: CanActivateFn = () => {
return true;
} else {
router.navigate(['/login']);
snackBar.open('You are unauthenticated. Please, log-in first.', 'Close', { duration: 5000 });
snackBar.open($localize`You are unauthenticated. Please, log-in first.`, $localize`Close`, { duration: 5000 });
return false;
}
}