
Pushupek009 via Wykop
Dziwne, u mnie działa #pdk
var supportedCultures = new[]
{
new CultureInfo("en-US"),
new CultureInfo("pl-PL"),
};
app.UseRequestLocalization(new RequestLocalizationOptions
{
DefaultRequestCulture = new RequestCulture("pl-PL"),
// Formatting numbers, dates, etc.
SupportedCultures = supportedCultures,
// UI strings that we have localized.
SupportedUICultures = supportedCultures
});
amso.pl