You can set the locale-id. Import the module as follows:
import {LOCALE_ID} from '@angular/core';
And in your module define a provider like this:
providers: [
{
provide: LOCALE_ID,
useValue: "en-US"
}
]
Just exchange for your locale ID (for IDs, refer to the Angular documentation).