LocaleManager Object



 
The LocaleManager object provides locale information.


Members Table

    The following table lists the members provided by the LocaleManager object.

    Members
    Collections Description
    Languages Available languages.
    Properties Description
    CurrentLanguage Contains the current language ID.
    Methods Description
    GetEnglishName Returns an english language name by ID.
    GetName Returns a language name by ID.
    LoadString Loads a string.
    Events Description
    OnLanguageChanged Fires when the language changed.

Remarks
    This object is available through the object SiteCafe. Use the LocaleManager object to receive language information and strings.

Examples
    The following example displays the number of available languages.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteCafe.LocaleManager.Languages.Count);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top