Localization in .NET MAUI Scheduler (SfScheduler)
14 Sep 20231 minute to read
Localization is the process of translating the application resources into different language for the specific cultures. The SfScheduler
can be localized by adding resource
file.
Setting CurrentUICulture to the application
Application culture can be changed by setting CurrentUICulture.
in App.xaml.cs
file.
using Syncfusion.Maui.Scheduler;
using System.Resources;
public partial class App : Application
{
public App()
{
InitializeComponent();
CultureInfo.CurrentUICulture = new CultureInfo("fr-FR");
//// ResXPath => Full path of the resx file; For example : //SfScheduleResources.ResourceManager = new ResourceManager
// ("MauiSchedulerDemo.Resources.SfScheduler", Application.Current.GetType().Assembly);
SfScheduleResources.ResourceManager = new ResourceManager(ResXPath, Application.Current.GetType().Assembly);
MainPage = new MainPage();
}
}
NOTE
The required
resx
files withBuild Action
asEmbeddedResource
(File name should contain culture code) into theResources
folder.
Localize application level
To localize the Scheduler
based on CurrentUICulture
using resource
files, follow the below steps.
- Add the default resource file of
Scheduler
intoResources
folder of the application.
-
Right-click on the
Resources
folder, selectAdd
and thenNewItem.
-
In Add New Item wizard, select the Resource File option and name the filename as
SfScheduler.<culture name>.resx.
For example, give the name asSfScheduler.fr-FR.resx
for French culture. -
The culture name indicates the name of the language and country.
- Now, select
Add
option to add the resource file in Resources folder.
- Add the Name/Value pair in Resource Designer of
SfScheduler.fr-FR.resx
file and change its corresponding value to corresponding culture.