Localization

The application is localized in German, Italian, French and Spanish. All labels have been translated automatically using Azure Cognitive Services trough the excellent ResXManager Visual Studio extension.

Localized resources can be edited and inspected at design time simply by selecting the language in the Language property.

Wisej automatically detects the browser's language and loads the appropriate resources when the view is created. An application can force a specific language before creating a view simply by calling:

Application.CurrentCulture = CultureInfo.GetCultureInfo("de-DE");

In alternative, you can load a particular language by adding "?lang=de-DE" to the URL.

Last updated