💡 Apps Script에서 LanguageApp 의 translate를 이용해 텍스트를 번역해본다. Apps Script에서 LanguageApp 의 translate 함수를 이용해 텍스트를 번역 할 수 있다. 사용 방법 // The code below will write "Esta es una prueba" to the log. var spanish = LanguageApp.translate("Hi! I am hero", "en", "es"); Logger.log(spanish); 이름 유형 설명 text String 번역할 텍스트 sourceLanguage String 텍스트가 작성된 언어 코드입니다. 빈 문자열로 설정하면 출발어가 자동으로 감지됩니다. targetLanguage String 텍스트..