-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
`services.Configure<RequestLocalizationOptions>(
opts =>
{
var supportedCultures = new List<CultureInfo>
{
new CultureInfo("en-GB"),
new CultureInfo("pt-BR"),
new CultureInfo("ru-RU")
};
opts.DefaultRequestCulture = new RequestCulture("en-GB");
// Formatting numbers, dates, etc.
opts.SupportedCultures = supportedCultures;
// UI strings that we have localized.
opts.SupportedUICultures = supportedCultures;
});`
Metadata
Metadata
Assignees
Labels
No labels