diff --git a/src/frontend/app/app.component.ts b/src/frontend/app/app.component.ts index eaae4002b6582a7740fc6b25f0ff417cbb6f3c97..bddb3e7163fe9cbdb46cc5de829f404ee5985373 100755 --- a/src/frontend/app/app.component.ts +++ b/src/frontend/app/app.component.ts @@ -16,7 +16,14 @@ import { TranslateService } from '@ngx-translate/core'; export class AppComponent { constructor(private translate: TranslateService, public http: HttpClient, public signaturesService: SignaturesContentService, public sanitizer: DomSanitizer, private cookieService: CookieService, public notificationService: NotificationService) { - translate.setDefaultLang('fr'); + + if (this.cookieService.check('maarchParapheurLang')) { + const cookieInfoLang = this.cookieService.get('maarchParapheurLang'); + translate.setDefaultLang(cookieInfoLang); + } else { + this.cookieService.set( 'maarchParapheurLang', 'fr' ); + translate.setDefaultLang('fr'); + } if (this.cookieService.check('maarchParapheurAuth')) { const cookieInfo = JSON.parse(atob(this.cookieService.get('maarchParapheurAuth'))); diff --git a/src/frontend/app/login/login.component.ts b/src/frontend/app/login/login.component.ts index e1ae9163aa72ccc3e13e2e618edd1543ab5f44d9..4e372827ebbc2fd3f07187e0b6c76375e3c2653b 100644 --- a/src/frontend/app/login/login.component.ts +++ b/src/frontend/app/login/login.component.ts @@ -10,7 +10,6 @@ import { NotificationService } from '../service/notification.service'; import { environment } from '../../core/environments/environment'; import { TranslateService } from '@ngx-translate/core'; import { Validators, FormControl } from '@angular/forms'; -import { last } from '@angular/router/src/utils/collection'; @Component({ templateUrl: 'login.component.html', @@ -81,6 +80,7 @@ export class LoginComponent implements OnInit, AfterViewInit { this.signaturesService.userLogged = data.user; this.translate.use(this.signaturesService.userLogged.preferences.lang); + this.cookieService.set( 'maarchParapheurLang', this.signaturesService.userLogged.preferences.lang ); this.loadingForm = true; $('.maarchLogo').css({ 'transform': 'translateY(0px)' }); diff --git a/src/frontend/app/profile/profile.component.ts b/src/frontend/app/profile/profile.component.ts index 5e0d5591fad3cc0201893d94cbd2e6a874787022..eed31f9704b4d695ca3c9c6dc538771760c79397 100644 --- a/src/frontend/app/profile/profile.component.ts +++ b/src/frontend/app/profile/profile.component.ts @@ -209,6 +209,7 @@ export class ProfileComponent implements OnInit { this.signaturesService.userLogged.preferences = data.user.preferences; this.profileInfo.picture = data.user.picture; this.setLang(this.signaturesService.userLogged.preferences.lang); + this.cookieService.set( 'maarchParapheurLang', this.signaturesService.userLogged.preferences.lang ); $('.avatarProfile').css({ 'transform': 'rotate(0deg)' });