From fcf38966ea676d417871af12fafdeddd137df32d Mon Sep 17 00:00:00 2001
From: Sebastian-Ion TINCU <Sebastian-Ion.TINCU@ext.ec.europa.eu>
Date: Fri, 18 Oct 2024 16:27:06 +0200
Subject: [PATCH] EDELIVERY-13873 Internationalization User Role Translation is
 not Working Properly

Update the user role when the language changes in other components (e.g. when the user locale is updated).
---
 smp-angular/src/app/window/toolbar/toolbar.component.ts | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/smp-angular/src/app/window/toolbar/toolbar.component.ts b/smp-angular/src/app/window/toolbar/toolbar.component.ts
index 05a424630..f68fcdd31 100644
--- a/smp-angular/src/app/window/toolbar/toolbar.component.ts
+++ b/smp-angular/src/app/window/toolbar/toolbar.component.ts
@@ -29,7 +29,8 @@ export class ToolbarComponent implements OnDestroy{
   fullMenu: boolean = true;
   userController: UserController;
   currentUserRoleDescription = "";
-  private sub: Subscription;
+  private loginSubscription: Subscription;
+  private languageChangeSubscription: Subscription;
 
   constructor(private alertService: AlertMessageService,
               private securityService: SecurityService,
@@ -41,11 +42,13 @@ export class ToolbarComponent implements OnDestroy{
               private translateService: TranslateService) {
     this.userController = new UserController(this.http, this.lookups, this.dialog);
 
-    this.sub = this.securityEventService.onLoginSuccessEvent().subscribe(async user => await this.updateCurrentUserRoleDescription());
+    this.loginSubscription = this.securityEventService.onLoginSuccessEvent().subscribe(async user => await this.updateCurrentUserRoleDescription());
+    this.languageChangeSubscription = this.translateService.onLangChange.subscribe(async langChangeEvent => await this.updateCurrentUserRoleDescription());
   }
 
   ngOnDestroy() {
-    this.sub.unsubscribe();
+    this.loginSubscription.unsubscribe();
+    this.languageChangeSubscription.unsubscribe();
   }
 
   clearWarning() {
-- 
GitLab