Google AJAX 언어 변환 API 추가

Google의 AJAX로 Javascript만 이용하여 언어 변환을 해주는 API를 공개했습니다.

http://code.google.com/apis/ajaxlanguage/

잠깐 테스트 해봤는데 오늘 아침 신문 기사 내용이 다음과 같이 영어로 변환되었습니다.

워싱턴포스트는 19일 ‘인도를 방문 중인 낸시 펠로시 미국 하원의장이 이번 주 중 달라이 라마를 만나 지지를 표명할 것’이라고 보도했다. 펠로시 의장은 이번 사태와 관련해 중국 정부의 유혈 진압을 강하게 비난하는 성명을 낸 바 있어 달라이 라마와의 회동이 티베트 사태에 미국이 개입하는 신호탄이 될지 모른다는 해석이 나오고 있다.
The Washington Post 19 days' visit to India this week, the chairman of the United States House of Representatives, Nancy Pelosi of support for the Dalai Lama to meet pyomyeonghal 'he said. Pelosi Chairman Chinese government's bloody crackdown in connection with this incident and strongly condemn the statement made in the talks with Tibet's Dalai Lama to the United States intervention, the situation was interpreted as a signal that this might come out.

사용한 코드는 다음과 같습니다.

<html> 
<head>   
<script type="text/javascript" src="http://www.google.com/jsapi">
</script>   
<script type="text/javascript">   
  google.load("language", "1");   
 
  function initialize() {     
    var text = document.getElementById("text").innerHTML;     
    google.language.detect(text, function(result) {       
      if (!result.error && result.language) {         
        google.language.translate(text, result.language, "en",                                   
          function(result) {           
            var translated = document.getElementById("translation");           
            if (result.translation) {             
              translated.innerHTML = result.translation;           
            }         
          });       
        }     
    });   
  }   
  google.setOnLoadCallback(initialize);   
</script> 
</head> 
<body>   
<div id="text">
워싱턴포스트는 19일 ‘인도를 방문 중인 낸시 펠로시 미국 하원의장이 이번 주 중 달라이 라마를 만나 지지를 표명할 것’이라고 보도했다. 펠로시 의장은 이번 사태와 관련해 중국 정부의 유혈 진압을 강하게 비난하는 성명을 낸 바 있어 달라이 라마와의 회동이 티베트 사태에 미국이 개입하는 신호탄이 될지 모른다는 해석이 나오고 있다.
</div>   
<div id="translation"></div> 
</body></html>
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by 김형준


Trackback URL : http://www.jaso.co.kr/trackback/238

Leave a comment
« Previous : 1 : ... 190 : 191 : 192 : 193 : 194 : 195 : 196 : 197 : 198 : ... 388 : Next »