Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Last active January 29, 2022 17:03
Show Gist options
  • Save ABooooo/43f7909a5f8c7be39c070c6a95a2d4f9 to your computer and use it in GitHub Desktop.
Save ABooooo/43f7909a5f8c7be39c070c6a95a2d4f9 to your computer and use it in GitHub Desktop.
// 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