ebs.changeCulture

(FintechOS 24.3.2 and later)

Changes the localization of the user interface.

Syntax

Copy
function ebs.changeCulture(culture: string, reloadPage?: boolean) : Promise<void>;
 
Parameter Type Description
culture string The .NET culture code of the desired localization. Make sure that the corresponding culture has been added to the available languages.

reloadPage (optional)

boolean Set to true to reload the page after the culture is changed. Default: false.

Response

Returns a void promise object, allowing you to associate handlers in case of success or failure.

Examples