Asp.net 核心本地化 有什么办法可以让所有的文化?
Asp.net core localization Is there any way to allow all cultures?
我想在我的申请中允许所有文化。
正如您在下面看到的,我允许很少的文化。我有一个自定义提供程序,可以获取用户的文化。如果他的文化不在 SupportedCultures 中,这意味着我无法处理他的文化(即使我可以)。在分配 SupportedCultures 之前我不知道将支持哪些文化。
例如GetTheUserCulture() returns "de"。当我稍后尝试拥有文化时,它将回退到默认语言(在本例中为 "en")。或者我希望它是 "de".
有没有办法允许所有文化?
const string defaultCulture = "en";
services.Configure<RequestLocalizationOptions>(options =>
{
var supportedCultures = new[]
{
new CultureInfo(defaultCulture),
new CultureInfo("fr-FR"),
new CultureInfo("fr"),
new CultureInfo("es"),
new CultureInfo("ru"),
new CultureInfo("ja"),
new CultureInfo("ar"),
new CultureInfo("zh"),
new CultureInfo("en-GB"),
new CultureInfo("en-UK")
};
options.DefaultRequestCulture = new RequestCulture(defaultCulture);
options.SupportedCultures = supportedCultures;
options.SupportedUICultures = supportedCultures;
options.RequestCultureProviders.Insert(0, new CustomRequestCultureProvider(async context =>
{
return new ProviderCultureResult(GetTheUserCulture());
}));
});
我们可以使用 CultureInfo 检索所有文化,然后将其添加到 SupportedCultures。它看起来像这样:
services.Configure<RequestLocalizationOptions>(options =>
{
CultureInfo[] supportedCultures = CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures)
.Where(cul => !String.IsNullOrEmpty(cul.Name))
.ToArray();
options.DefaultRequestCulture = new RequestCulture(defaultCulture);
options.SupportedCultures = supportedCultures;
options.SupportedUICultures = supportedCultures;
}
我想在我的申请中允许所有文化。 正如您在下面看到的,我允许很少的文化。我有一个自定义提供程序,可以获取用户的文化。如果他的文化不在 SupportedCultures 中,这意味着我无法处理他的文化(即使我可以)。在分配 SupportedCultures 之前我不知道将支持哪些文化。
例如GetTheUserCulture() returns "de"。当我稍后尝试拥有文化时,它将回退到默认语言(在本例中为 "en")。或者我希望它是 "de".
有没有办法允许所有文化?
const string defaultCulture = "en";
services.Configure<RequestLocalizationOptions>(options =>
{
var supportedCultures = new[]
{
new CultureInfo(defaultCulture),
new CultureInfo("fr-FR"),
new CultureInfo("fr"),
new CultureInfo("es"),
new CultureInfo("ru"),
new CultureInfo("ja"),
new CultureInfo("ar"),
new CultureInfo("zh"),
new CultureInfo("en-GB"),
new CultureInfo("en-UK")
};
options.DefaultRequestCulture = new RequestCulture(defaultCulture);
options.SupportedCultures = supportedCultures;
options.SupportedUICultures = supportedCultures;
options.RequestCultureProviders.Insert(0, new CustomRequestCultureProvider(async context =>
{
return new ProviderCultureResult(GetTheUserCulture());
}));
});
我们可以使用 CultureInfo 检索所有文化,然后将其添加到 SupportedCultures。它看起来像这样:
services.Configure<RequestLocalizationOptions>(options =>
{
CultureInfo[] supportedCultures = CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures)
.Where(cul => !String.IsNullOrEmpty(cul.Name))
.ToArray();
options.DefaultRequestCulture = new RequestCulture(defaultCulture);
options.SupportedCultures = supportedCultures;
options.SupportedUICultures = supportedCultures;
}