GetEnglishName Method



 
The GetEnglishName method determines the english name of a language.


Syntax

    [str=] SiteCafe.LocaleManager.GetEnglishName(langID)
    
Parameters
    langID Long value that specifies the language ID.
Return Value
    Returns a String that contains the english name of the language.
Remarks
    None.
Examples
    The following example displays the english name of the current language.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    curLan = SiteCafe.LocaleManager.CurrentLanguage;
    alert(SiteCafe.LocaleManager.GetEnglishName(curLan));
    </SCRIPT>
    

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

Back to top