I am on angular 5 project i wanted to show the date using date pipes, i used this code
<p class="creationDate" i18n>Date de création :{{today | date: 'medium'}}</p>
It worked good but i want that the date is written in french but the problem that is in english. In the ts file i aded those lines:
import localeFr from '@angular/common/locales/fr';
import localeFrExtra from '@angular/common/locales/extra/fr';
registerLocaleData(localeFr, 'fr-FR', localeFrExtra);
Can someone help me please.