Last active
January 29, 2022 17:03
-
-
Save ABooooo/43f7909a5f8c7be39c070c6a95a2d4f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app.module.ts | |
import { LOCALE_ID } from '@angular/core'; | |
import { registerLocaleData } from '@angular/common'; | |
import localeDe from '@angular/common/locales/de'; | |
registerLocaleData(localeDe); | |
providers: [ | |
[{ provide: LOCALE_ID, useValue: 'de-DE'}] | |
], | |
// although registerLocaleData is deprecated this stil works but try to solve it with i18n!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment