Home  >  Article  >  Backend Development  >  Detailed introduction to multi-language support in ASP.NET Core

Detailed introduction to multi-language support in ASP.NET Core

巴扎黑
巴扎黑Original
2017-09-01 14:23:121298browse

This article mainly introduces the multi-language support (Localization) in ASP.NET Core, which has certain reference value. Those who are interested can learn about it

First add AddLocalization and AddViewLocalization in ConfigureServices of Startup And configure RequestLocalizationOptions (assuming English and Chinese are used here):


public void ConfigureServices(IServiceCollection services)
{
  services.AddLocalization(options => options.ResourcesPath = "Resources");

  services.AddMvc()
    .AddViewLocalization(LanguageViewLocationExpanderFormat.Suffix);

  services.Configure(
    opts =>
    {
      var supportedCultures = new List
      {
        new CultureInfo("en-US"),
        new CultureInfo("zh-CN")
      };
      opts.SupportedCultures = supportedCultures;
      opts.SupportedUICultures = supportedCultures;
    });
}

Apply RequestLocalizationOptions in the Configure() method of Startup:


var requestLocalizationOptions = app.ApplicationServices.GetService>().Value;
app.UseRequestLocalization(requestLocalizationOptions);

Then display the suffix of the page title in a multi-lingual manner through the IViewLocalizer interface in the _Layout.cshtml view:


@using Microsoft.AspNetCore.Mvc.Localization
@inject IViewLocalizer Localizer



  @ViewData["Title"] - @Localizer["SiteTitle"]



Then in ASP.NET Core Web Create the Resources folder in the project, add the Views.Shared._Layout.en-Us.resx and Views.Shared._Layout.zh-CN.resx files, the Views.Shared._Layout.resx file respectively, and add "SiteTitle" The corresponding statement text:

1) Views.Shared._Layout.en-Us.resx

##2) Views.Shared._Layout.zh- CN.resx

#When running the ASP.NET Core site, it will be based on the browser's language setting (Accept-Language header), or culture query parameters, or .AspNetCore .Culture Cookie value displays the text of the corresponding language:

# Things to note: Never add Views without a language name. Shared._Layout.en-Us.resx, otherwise you will encounter "Custom tool ResXFileCodeGenerator failed to produce an output for input file ... but did not log a specific error." when adding a .resx file with a code language name. Question

The above is the detailed content of Detailed introduction to multi-language support in ASP.NET Core. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn