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

View File

@@ -12,7 +12,7 @@ export const authenticationGuard: CanActivateFn = () => {
return true; return true;
} else { } else {
router.navigate(['/login']); 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; return false;
} }
} }

View File

@@ -83,7 +83,7 @@ export class JwtInterceptor implements HttpInterceptor {
this.router.navigate(['/login']); this.router.navigate(['/login']);
this.refreshTokenSubject.next(undefined); this.refreshTokenSubject.next(undefined);
this.authenticationService.unauthenticate(); this.authenticationService.unauthenticate();
this.snackBar.open('You are unauthenticated. Please, re-authenticate before retrying your action.', 'Close', { duration: 5000 }); this.snackBar.open($localize`You are unauthenticated. Please, re-authenticate before retrying your action.`, $localize`Close`, { duration: 5000 });
return throwError(() => initialError); return throwError(() => initialError);
} }
} }

View File

@@ -18,7 +18,7 @@ export class CategoryService {
if (!this.categories?.length) { if (!this.categories?.length) {
this.categoryRestService.getCategories() this.categoryRestService.getCategories()
.then(categories => this.categoriesSubject.next(categories)) .then(categories => this.categoriesSubject.next(categories))
.catch(error => console.error('An error occured while loading categories.', error)); .catch(error => console.error($localize`An error occured while loading categories.`, error));
} }
return this.categoriesSubject.asObservable(); return this.categoriesSubject.asObservable();
} }

View File

@@ -2,12 +2,15 @@
"locale": "fr-FR", "locale": "fr-FR",
"translations": { "translations": {
"2578598149846191609": "Publication postée par {$INTERPOLATION}", "2578598149846191609": "Publication postée par {$INTERPOLATION}",
"3450287383703155559": "Vous n'êtes pas connecté. Veuillez vous connecter avant de réessayer.",
"7819314041543176992": "Fermer",
"5455465794443528807": "You n'êtes pas connecté. Veuillez vous connecter avant de réessayer votre opération.",
"6940115735259407353": "Une erreur est survenue lors du chargement des catégories.",
"4011987306265136481": "Déconnexion...", "4011987306265136481": "Déconnexion...",
"4869473828758837325": "Dernières publications", "4869473828758837325": "Dernières publications",
"5148998676057880041": "Chargement des publications...", "5148998676057880041": "Chargement des publications...",
"3688381096110057852": "Il n'y a aucune publication.", "3688381096110057852": "Il n'y a aucune publication.",
"8393632007890629197": "Une erreur est survenue lors du chargement des dernières publications...", "8393632007890629197": "Une erreur est survenue lors du chargement des dernières publications...",
"7819314041543176992": "Fermer",
"2454050363478003966": "Connexion", "2454050363478003966": "Connexion",
"8138320902772264034": "Adresse email {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}", "8138320902772264034": "Adresse email {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}",
"9175472990822669391": "Mot de passe {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}", "9175472990822669391": "Mot de passe {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}",
@@ -20,7 +23,6 @@
"1519054954638405159": "Chargement de la liste de vos publications...", "1519054954638405159": "Chargement de la liste de vos publications...",
"5982957837973242128": "Vous n'avez rien publié...", "5982957837973242128": "Vous n'avez rien publié...",
"6147923540123489141": "Une erreur est survenue lors de la récupération de vos publications...", "6147923540123489141": "Une erreur est survenue lors de la récupération de vos publications...",
"3450287383703155559": "Vous n'êtes pas connecté. Veuillez vous connecter avant de réessayer.",
"2804059545779555969": "Rédaction d'une nouvelle publication", "2804059545779555969": "Rédaction d'une nouvelle publication",
"4229813881636784544": "Publication créée avec succès !", "4229813881636784544": "Publication créée avec succès !",
"1772332295232318552": "Une erreur est survenue lors de l'enregistrement de la nouvelle publication.", "1772332295232318552": "Une erreur est survenue lors de l'enregistrement de la nouvelle publication.",

View File

@@ -2,12 +2,15 @@
"locale": "en-UK", "locale": "en-UK",
"translations": { "translations": {
"2578598149846191609": "Publication posted by {$INTERPOLATION}", "2578598149846191609": "Publication posted by {$INTERPOLATION}",
"3450287383703155559": "You are unauthenticated. Please, log-in first.",
"7819314041543176992": "Close",
"5455465794443528807": "You are unauthenticated. Please, re-authenticate before retrying your action.",
"6940115735259407353": "An error occured while loading categories.",
"4011987306265136481": "Disconnection...", "4011987306265136481": "Disconnection...",
"4869473828758837325": "Last publications", "4869473828758837325": "Last publications",
"5148998676057880041": "Publications loading...", "5148998676057880041": "Publications loading...",
"3688381096110057852": "No any publication.", "3688381096110057852": "No any publication.",
"8393632007890629197": "An error occurred while retrieving latest publications...", "8393632007890629197": "An error occurred while retrieving latest publications...",
"7819314041543176992": "Close",
"2454050363478003966": "Login", "2454050363478003966": "Login",
"8138320902772264034": " Email address {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}", "8138320902772264034": " Email address {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}",
"9175472990822669391": " Password {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}", "9175472990822669391": " Password {$START_TAG_SPAN}*{$CLOSE_TAG_SPAN}",
@@ -20,7 +23,6 @@
"1519054954638405159": "Publication loading...", "1519054954638405159": "Publication loading...",
"5982957837973242128": "There is no any publication...", "5982957837973242128": "There is no any publication...",
"6147923540123489141": "An error occurred while retrieving your publications...", "6147923540123489141": "An error occurred while retrieving your publications...",
"3450287383703155559": "You are unauthenticated. Please, log-in first.",
"2804059545779555969": "Creation of a new publication", "2804059545779555969": "Creation of a new publication",
"4229813881636784544": "Publication created succesfully!", "4229813881636784544": "Publication created succesfully!",
"1772332295232318552": "An error occured while saving new publication.", "1772332295232318552": "An error occured while saving new publication.",