14

I have an multilanguale app which is compiled with --aot in each language, for instance for German:

ng build --aot --env=prod --prod --build-optimizer --i18nFile=src/locale/DARI_messages_de_DE.xlf --i18nFormat=xlf --locale=de --missingTranslation warning --output-path dist/de --base-href /de/

We need want to get the value on locale on runtime to handle it over to our backend too.

If have looked tryed to get from

    import { LOCALE_ID } from '@angular/core';

constructor(private modalService: BsModalService) {
  console.log("LOCALE_ID", LOCALE_ID);
}

But the LOCAL_ID is empty I think it only for use with JIT

Is there any method to get this parameter on runtime?

Thomas
  • 1,058
  • 8
  • 15

2 Answers2

24

As a newbie I found Simons answer a bit incomplete. Turns out that you need to import both LOCALE_ID and Inject:

import { Component, OnInit, LOCALE_ID, Inject } from '@angular/core';

@Component({
  selector: '...',
  templateUrl: '...',
  styleUrls: ['...']
})

export class ShinyComponent implements OnInit {

  constructor(@Inject(LOCALE_ID) protected localeId: string) { }

  public someFunction {} {
    console.log("Current locale is "+this.localeId); 
  }
}

ngOnInit() {}
Jette
  • 2,459
  • 28
  • 37
5

You should have Angular inject the LOCALE_ID

constructor(private modalService: BsModalService,
    @Inject( LOCALE_ID ) protected localeId: string) {
    console.log("LOCALE_ID", localeId);
}
Simon
  • 2,994
  • 3
  • 28
  • 37