Skip to content
Muhammad Fahmi Rasyid edited this page Apr 3, 2020 · 2 revisions

Installation

To use this framework. add nuget package:

Install-Package Rasyidf.Localization

Then register the the services on App.cs

public partial class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);
        // set the language packs folder and default language
        LocalizationService.Current.Initialize("Assets", "en-US");
    }
    ...
}
Clone this wiki locally