/**
 * Internationalization.
 *
 * @author gege
 */
function __(text, args)
{
  if ( typeof i18n_messages != 'undefined' )
  {
    text = typeof i18n_messages[text] != 'undefined' ? i18n_messages[text] : text;
  }
  if ( typeof args != 'undefined' )
  {
    for( var i = 0; i < args.length; i++ )
    {
      text = text.replace(/args[i][0]/, args[i][1]);
    }
  }
  
  return text;
}