×

iFour Logo

Performing Globalization and Localization using resource file in .NET Core

Kapil Panchal - October 30, 2020

Listening is fun too.

Straighten your back and cherish with coffee - PLAY !

  • play
  • pause
  • pause
Performing Globalization and Localization using resource file in .NET Core

In this blog, we will be goingto talk about the globalization and localization in .net core. If you want to make your web application in such a way that can be used for every different culture then you need globalization. Using globalization and localization we can build such a website or application so the user anywhere from global can use it. Globalization supports the different cultures. Localization provide the localized resource and cultures.

What is Resource File?


A resource file may include a troupe of icons, menus, dialog boxes, strings tables, user-defined binary data and other sorts of items.

If we are working with the globalization and localization then we need to use the resource file.Resource file contains key/value pair string which is specific to the culture. In the output, the code string will be replaced with the value of the specific culture.

What is Globalization?


Asp.net Core Globalization is the process of developing any web application or mobile application globalized. In globalization, there will be different languages for various geographies.

What is Localization?


Localization is the process of making any web applications that behaves depending upon the local culture.

There are three types of localization.

 
  • View localization
  • Data Annotation localization
  • Localization in controller string

Here we will see View localization and data annotation. For perfect understanding let’s see the example.

Example: -

Using Data Annotation localization


Step 1: - Create the new project

First of all make a new asp.net core project.

New -> project -> asp.net core web application -> MVC.

 

Global_Local

 

Figure 1.0 Project Structure

After that your project structure looks like this. In above snap we have to just add another folder resources. In which we will place our resource file.

Step 2: -Update the startup file

We need to add this name spaces:

 
  using System.Globalization;
  using Microsoft.AspNetCore.Localization;
  using Microsoft.Extensions.Options;
  

Add localization services in the startup file.

 
services.AddLocalization(options => options.ResourcesPath = "Resources");
  services.AddMvc()
  .AddViewLocalization(LanguageViewLocationExpanderFormat.Suffix)
  .AddDataAnnotationsLocalization(options =>
  {
      options.DataAnnotationLocalizerProvider = (type, factory) =>
  {
    var assemblyName = newAssemblyName(typeof(ApplicationResource).GetTypeInfo().Assembly.FullName);
    return factory.Create("ApplicationResource", assemblyName.Name);
      };
  });
  ervices.Configure(options =>
  {
  var givenCultures = new[]
      {
    new CultureInfo("en"),
    new CultureInfo("fr"),                    
    new CultureInfo("hi"),                    
      };
      options.DefaultRequestCulture = new RequestCulture("en");
      options.SupportedCultures = givenCultures;
      options.SupportedUICultures = givenCultures;
});

In add localization, add our resource folder name in resource path. We have named the Resources.

Now configure request localization options. In which we have made the array of cultures or languages.

Make your own default language using default request culture.

Note: -Here “en” means English, “hi” means Hindi, and “fr” means French.

 

Step 3: - Create a View model

Create the view model and name it “userviewmodel” as shown.

 
publicclassUserViewModel
  {
      [Display(Name = "FullName")]
publicstring FullName { get; set; }

      [Display(Name = "City")]
publicstring City { get; set; }

      [Display(Name = "MobileNo")]
publicstring MobileNo { get; set; }
  }

Add data annotation “Display Name” for all properties.

And make a resource file in which we have to put this display name in it. We will see it in next step.

Step 4: - Create Resource file

Add a new folder Resources in the project.

Right click on the Resources folder and Add -> Add new Item -> Resource file.

Display name of view model and key name should be same in resource file.

ResourceFile

Figure 2.0 Resource file

Step 5: - Add controller

Add Culture controller to store the value of culture and display in view.

 
publicclassCultureController : Controller
  {
public IActionResult Index ()
      {
    returnView ();
      }
      [HttpPost]
  Public IActionResult SetLanguage(string culture, string returnUrl)
      {
          Response.Cookies.Append(
          CookieRequestCultureProvider.DefaultCookieName,
          CookieRequestCultureProvider.MakeCookieValue(new RequestCulture(culture)),
    new CookieOptions {Expires = DateTimeOffset.UtcNow.AddYears(1) }
       );
  return LocalRedirect(returnUrl);
      }
 }
 

Now add set language method to take the value of culture and store it in cookie. We will designate this method from the view. Now make a view of it.

Add user controller that will use the user view model and make view of it.

 
publicclassUserController : Controller
  {
public IActionResult Index()
  {
  return View();
  }
}

Step 6: - Create views

Initially add the partial view which will display the culture dropdown from which we can select the languages. Place this view in the shared folder and place below code.

 
@using Microsoft.AspNetCore.Builder
@using Microsoft.AspNetCore.Localization
@using Microsoft.AspNetCore.Mvc.Localization
@using Microsoft.Extensions.Options

@inject IViewLocalizer Localizer
@inject IOptions LocOptions
@{
  var Culture = Context.Features.Get();
  var Items = LocOptions.Value.SupportedUICultures
      .Select(c => new SelectListItem { Value = c.Name, Text = c.DisplayName })
      .ToList();
}
Language :-

Add some namespaces. And add this partial view in the layout view.

 


View of User controller


@model GlobalandLocal.Models.UserViewModel
@using Microsoft.AspNetCore.Mvc.Localization
@inject IViewLocalizer ViewLocalizer
@{
  ViewData["Title"] = "Index";
}
Back to List

Outputs: -

UserviewmodelM

 

Userviewmodel1

Userviewmodel2

Figure 3.0 Output

We have seen the localization using Data annotation. Now have a look at the view localization.

Looking to Hire ASP.Net Core Developer ?
Contact Now.


 

Using View Localization: -

Now for view localization we have to just make a resource file and inject the IView localizer in the view.

Now make a view of user’s index method as we created earlier. Now create the resource file of that index method as shown below.

Note: - Name should be same either it will not be executed.

Viewlocalizator

Figure 4.0 View localizer

In index view just add this code below the injector.

 
@model GlobalandLocal.Models.UserViewModel

@using Microsoft.AspNetCore.Mvc.Localization
@inject IViewLocalizer ViewLocalizer
@{
  ViewData["Title"] = "Index";
}

@VIEWLOCALIZER["WELCOME"]

@ViewLocalizer["Index"]

@ViewLocalizer["UserViewModel"]

Viewlocalizator1

Viewlocalizator2

Figure 5.0 View Localizer Output

And other code will be same. Now run it.

In the view localizer we have to just inject IView localizer and display the culture string whatever we want put in the “@ViewLocalizer [“string”]”. Just take care of the name, which we used in the bracket,and the name in the resource file must be same.

Now we have seen the simple methods to make our web site or application globalized.

Conclusion


We have seen a code of globalization and localization using resource files. In the latest version, you can now use the globalization and localization using the JSON file also will be beneficial for the developer. Globalization supports input, display, and output. Where localization is the further process of globalization which is used for local culture.

Performing Globalization and Localization using resource file in .NET Core In this blog, we will be goingto talk about the globalization and localization in .net core. If you want to make your web application in such a way that can be used for every different culture then you need globalization. Using globalization and localization we can build such a website or application so the user anywhere from global can use it. Globalization supports the different cultures. Localization provide the localized resource and cultures. What is Resource File? A resource file may include a troupe of icons, menus, dialog boxes, strings tables, user-defined binary data and other sorts of items. If we are working with the globalization and localization then we need to use the resource file.Resource file contains key/value pair string which is specific to the culture. In the output, the code string will be replaced with the value of the specific culture. What is Globalization? Asp.net Core Globalization is the process of developing any web application or mobile application globalized. In globalization, there will be different languages for various geographies. What is Localization? Localization is the process of making any web applications that behaves depending upon the local culture. There are three types of localization.   View localization Data Annotation localization Localization in controller string Here we will see View localization and data annotation. For perfect understanding let’s see the example. Example: - Using Data Annotation localization Step 1: - Create the new project First of all make a new asp.net core project. New -> project -> asp.net core web application -> MVC.     Figure 1.0 Project Structure After that your project structure looks like this. In above snap we have to just add another folder resources. In which we will place our resource file. Step 2: -Update the startup file We need to add this name spaces:   using System.Globalization; using Microsoft.AspNetCore.Localization; using Microsoft.Extensions.Options; Add localization services in the startup file.   services.AddLocalization(options => options.ResourcesPath = "Resources"); services.AddMvc() .AddViewLocalization(LanguageViewLocationExpanderFormat.Suffix) .AddDataAnnotationsLocalization(options => { options.DataAnnotationLocalizerProvider = (type, factory) => { var assemblyName = newAssemblyName(typeof(ApplicationResource).GetTypeInfo().Assembly.FullName); return factory.Create("ApplicationResource", assemblyName.Name); }; }); ervices.Configure(options => { var givenCultures = new[] { new CultureInfo("en"), new CultureInfo("fr"), new CultureInfo("hi"), }; options.DefaultRequestCulture = new RequestCulture("en"); options.SupportedCultures = givenCultures; options.SupportedUICultures = givenCultures; }); In add localization, add our resource folder name in resource path. We have named the Resources. Now configure request localization options. In which we have made the array of cultures or languages. Make your own default language using default request culture. Note: -Here “en” means English, “hi” means Hindi, and “fr” means French. Read More: Unit Testing A Custom Middleware In Asp.net Core With Interface   Step 3: - Create a View model Create the view model and name it “userviewmodel” as shown.   publicclassUserViewModel { [Display(Name = "FullName")] publicstring FullName { get; set; } [Display(Name = "City")] publicstring City { get; set; } [Display(Name = "MobileNo")] publicstring MobileNo { get; set; } } Add data annotation “Display Name” for all properties. And make a resource file in which we have to put this display name in it. We will see it in next step. Step 4: - Create Resource file Add a new folder Resources in the project. Right click on the Resources folder and Add -> Add new Item -> Resource file. Display name of view model and key name should be same in resource file. Figure 2.0 Resource file Step 5: - Add controller Add Culture controller to store the value of culture and display in view.   publicclassCultureController : Controller { public IActionResult Index () { returnView (); } [HttpPost] Public IActionResult SetLanguage(string culture, string returnUrl) { Response.Cookies.Append( CookieRequestCultureProvider.DefaultCookieName, CookieRequestCultureProvider.MakeCookieValue(new RequestCulture(culture)), new CookieOptions {Expires = DateTimeOffset.UtcNow.AddYears(1) } ); return LocalRedirect(returnUrl); } } Now add set language method to take the value of culture and store it in cookie. We will designate this method from the view. Now make a view of it. Add user controller that will use the user view model and make view of it.   publicclassUserController : Controller { public IActionResult Index() { return View(); } } Step 6: - Create views Initially add the partial view which will display the culture dropdown from which we can select the languages. Place this view in the shared folder and place below code.   @using Microsoft.AspNetCore.Builder @using Microsoft.AspNetCore.Localization @using Microsoft.AspNetCore.Mvc.Localization @using Microsoft.Extensions.Options @inject IViewLocalizer Localizer @inject IOptions LocOptions @{ var Culture = Context.Features.Get(); var Items = LocOptions.Value.SupportedUICultures .Select(c => new SelectListItem { Value = c.Name, Text = c.DisplayName }) .ToList(); } Language :- Add some namespaces. And add this partial view in the layout view.    @await Html.PartialAsync("Languagepartial")  View of User controller @model GlobalandLocal.Models.UserViewModel @using Microsoft.AspNetCore.Mvc.Localization @inject IViewLocalizer ViewLocalizer @{ ViewData["Title"] = "Index"; } Back to List Outputs: - M   Figure 3.0 Output We have seen the localization using Data annotation. Now have a look at the view localization. Looking to Hire ASP.Net Core Developer ? Contact Now. See here   Using View Localization: - Now for view localization we have to just make a resource file and inject the IView localizer in the view. Now make a view of user’s index method as we created earlier. Now create the resource file of that index method as shown below. Note: - Name should be same either it will not be executed. Figure 4.0 View localizer In index view just add this code below the injector.   @model GlobalandLocal.Models.UserViewModel @using Microsoft.AspNetCore.Mvc.Localization @inject IViewLocalizer ViewLocalizer @{ ViewData["Title"] = "Index"; } @VIEWLOCALIZER["WELCOME"] @ViewLocalizer["Index"] @ViewLocalizer["UserViewModel"] Figure 5.0 View Localizer Output And other code will be same. Now run it. In the view localizer we have to just inject IView localizer and display the culture string whatever we want put in the “@ViewLocalizer [“string”]”. Just take care of the name, which we used in the bracket,and the name in the resource file must be same. Now we have seen the simple methods to make our web site or application globalized. Conclusion We have seen a code of globalization and localization using resource files. In the latest version, you can now use the globalization and localization using the JSON file also will be beneficial for the developer. Globalization supports input, display, and output. Where localization is the further process of globalization which is used for local culture.
Kapil Panchal

Kapil Panchal

A passionate Technical writer and an SEO freak working as a Technical Content Manager at iFour Technolab, USA. With extensive experience in IT, Services, and Product sectors, I relish writing about technology and love sharing exceptional insights on various platforms. I believe in constant learning and am passionate about being better every day.

Build Your Agile Team

Enter your e-mail address Please enter valid e-mail
Categories

Ensure your sustainable growth with our team

Talk to our experts
Sustainable
Sustainable
 

Blog Our insights

Quarkus vs Spring Boot - What’s Ideal for Modern App Development?
Quarkus vs Spring Boot - What’s Ideal for Modern App Development?

Spring Boot has long been a popular choice for developing custom Java applications. This is owing to its comprehensive features, impeccable security, and established ecosystem. Since...

Power BI Forecasting Challenges and Solutions
Power BI Forecasting Challenges and Solutions

Microsoft Power BI stands out for detailed data forecasting. By inspecting data patterns and using statistical models, Power BI provides a visual forecast of things to anticipate in...

Kotlin vs Java - Top 9 Differences CTOs Should Know
Kotlin vs Java - Top 9 Differences CTOs Should Know

Choosing the right programming language becomes crucial as it greatly influences the success of a software development project. When it comes to selecting the best programming language...