Closed
Description
Add support for automatic registering of RequestLocalizationOptions
.
RequestLocalizationOptions
should be added to theIServiceCollection
automatically.SupportedCultures
andSupportedUICultures
should be automatically populated by default values (all translations).DefaultRequestCulture
should be defaulted tonew RequestCulture(culture: "en", uiCulture: "en")
.SupportedCultures
,SupportedUICultures
andDefaultRequestCulture
should be parametrable.- Users should be able to opt-out of this with a simple
bool
likeEnableConfigureRequestLocalizationOptions = false
.