Angular - Internationalization and Accessibility
What is wrong with this code snippet for locale switching?
import { LOCALE_ID } from '@angular/core';
providers: [
{ provide: LOCALE_ID, useValue: 'en-US' },
{ provide: LOCALE_ID, useValue: 'fr-FR' }
]