34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Globalization;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Localization;
|
|
using Microsoft.AspNetCore.Mvc.Localization;
|
|
using Microsoft.AspNetCore.Localization.Routing;
|
|
|
|
namespace BasicWebSite
|
|
{
|
|
public class LocalizationPipeline
|
|
{
|
|
public void Configure(IApplicationBuilder applicationBuilder)
|
|
{
|
|
var supportedCultures = new[]
|
|
{
|
|
new CultureInfo("en-US"),
|
|
new CultureInfo("fr")
|
|
};
|
|
|
|
var options = new RequestLocalizationOptions()
|
|
{
|
|
DefaultRequestCulture = new RequestCulture(culture: "en-US", uiCulture: "en-US"),
|
|
SupportedCultures = supportedCultures,
|
|
SupportedUICultures = supportedCultures
|
|
};
|
|
options.RequestCultureProviders = new[] { new RouteDataRequestCultureProvider() { Options = options } };
|
|
|
|
applicationBuilder.UseRequestLocalization(options);
|
|
}
|
|
}
|
|
}
|