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