📌 번역 기능 추가하기 (Google Translate API 사용) 번역을 추가하려면, Google Translate API를 사용해서 변환된 텍스트를 원하는 언어로 번역하면 돼. 🛠 Google Translate API 키 받기 (필요) 1. Google Cloud Console에서 Google Cloud Translation API를 활성화 2. API 키를 발급받아 프로젝트에서 사용 🚀 React Native에서 번역 추가한 코드 (STT + 번역 + TTS)import React, { useState } from "react";import { Button, Text, View } from "react-native";import Voice from "@react-native-voice/voi..