I am currently defining "LOCALE_ID" on "en-US" as follows:
@NgModule({
providers: [{ provide: LOCALE_ID, useValue: "en-US" }, ...],
imports: [...],
bootstrap: [...]
})
and it works very well. However, to check how the dates look in French, I replaced "en-US" with "fr-FR" and then got an error:
The locale data for the fr-FR locale is missing.
I did some research, and I did not find anything related to this. Are language standards for French included in the package by default? Is this a different package? Do I need to create them myself?
source
share