diff --git a/next-i18next.config.js b/next-i18next.config.js index d26d440..c74b6db 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -1,7 +1,7 @@ module.exports = { i18n: { defaultLocale: "en", - locales: ["de", "en", "fr", "ru", "zh", "es", "sv", "pt", "te"], + locales: ["de", "en", "es", "fr", "ko", "pt", "ru", "sv", "te", "zh"], }, localePath: typeof window === "undefined" diff --git a/public/locales/ko/chat.json b/public/locales/ko/chat.json new file mode 100644 index 0000000..27bc4cf --- /dev/null +++ b/public/locales/ko/chat.json @@ -0,0 +1,24 @@ +{ + "OpenAI API Key Required": "OpenAI API 키가 필요합니다", + "Please set your OpenAI API key in the bottom left of the sidebar.": "사이드바 왼쪽 하단에 OpenAI API 키를 설정하세요.", + "Stop Generating": "생성 중지", + "Prompt limit is {{maxLength}} characters": "프롬프트 제한은 {{maxLength}}자입니다", + "System Prompt": "시스템 프롬트", + "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.": "당신은 OpenAI에서 훈련된 대규모 언어 모델 ChatGPT입니다. 사용자의 지시를 주의해서 따르세요. 마크다운을 사용하여 응답하세요.", + "Enter a prompt": "프롬프트를 입력하세요", + "Regenerate response": "응답 재생성", + "Sorry, there was an error.": "죄송합니다, 오류가 발생했습니다.", + "Model": "모델", + "Conversation": "대화", + "OR": "또는", + "Loading...": "로드 중...", + "Type a message...": "메시지를 입력하세요...", + "Error fetching models.": "모델을 가져오는 중 오류가 발생했습니다.", + "AI": "인공지능", + "You": "당신", + "Make sure your OpenAI API key is set in the bottom left of the sidebar.": "OpenAI API 키가 사이드바 왼쪽 하단에 설정되어 있는지 확인하세요.", + "If you completed this step, OpenAI may be experiencing issues.": "이 단계를 완료한 경우 OpenAI에 문제가 있을 수도 있습니다.", + "Message limit is {{maxLength}} characters. You have entered {{valueLength}} characters.": "메시지 제한은 {{maxLength}}자입니다. {{valueLength}}자를 입력했습니다.", + "Please enter a message": "메시지를 입력하세요", + "Chatbot UI is an advanced chatbot kit for OpenAI's chat models aiming to mimic ChatGPT's interface and functionality.": "Chatbot UI는 ChatGPT의 인터페이스와 기능을 모방하는 것을 목표로 둔 OpenAI의 채팅 모델들을 위한 고급 챗봇 키트입니다." +} diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/public/locales/ko/common.json @@ -0,0 +1 @@ +{} diff --git a/public/locales/ko/markdown.json b/public/locales/ko/markdown.json new file mode 100644 index 0000000..1425479 --- /dev/null +++ b/public/locales/ko/markdown.json @@ -0,0 +1,5 @@ +{ + "Copy code": "코드 복사", + "Copied!": "복사 완료!", + "Enter file name": "파일 이름을 입력하세요" +} diff --git a/public/locales/ko/sidebar.json b/public/locales/ko/sidebar.json new file mode 100644 index 0000000..cd50269 --- /dev/null +++ b/public/locales/ko/sidebar.json @@ -0,0 +1,13 @@ +{ + "New folder": "새 폴더", + "New chat": "새 채팅", + "No conversations.": "대화가 없습니다.", + "Search conversations...": "대화 검색...", + "OpenAI API Key": "OpenAI API 키", + "Import conversations": "대화 가져오기", + "Are you sure?": "확실합니까?", + "Clear conversations": "대화 지우기", + "Export conversations": "대화 내보내기", + "Dark mode": "다크 모드", + "Light mode": "라이트 모드" +}