사용자의 언어 값을 리턴한다.
| Type | Description |
|---|---|
| STRING | USER_LANGUAGE 값 |
function btnsetlocale_on_mouseup()
{
var strLang, strCountry;
strLang = factory.getlocalelanguage();
strCountry = factory.getlocalecountry();
factory.consoleprint(strLang + ", " + strCountry);
}