diff --git a/locales/kr/translation.json b/locales/kr/translation.json new file mode 100644 index 0000000..b57a6ed --- /dev/null +++ b/locales/kr/translation.json @@ -0,0 +1,24 @@ +{ + "Turnip Calculator": "순무 계산자", + "ACNH Turnip Calculator": "모여봐요 동물의 숲: 순무 계산자", + "Buy Price": "판매가", + "Daily Price": "일당 가격", + "Guaranteed Min": "보장가치", + "Average": "평균", + "Maximum": "최대", + "Minimum": "최소", + "Mon Tue Wed Thu Fri Sat": "월 화 수 목 금 토", + "AM": "새벽", + "PM": "오후", + "Clear All Data!": "양식 데이터 지우기!", + "Usage": "해명", + "buyPriceInfo": "- <1>판매가는 당신 자신의 섬을 위한 것이다. 다른 섬에서의 구매는 중요하지 않아!", + "priceChangeInfo": "- 물가는 <1>하루에 두 번 변한다. 반드시 로그에 기록하십시오. (데이터가 장치에 저장됨).", + "guaranteedMinInfo": "- <1>보장가치 *는 적어도 이번 주 중 어느 시점에서는 이 가격을 보게 된다는 것을 의미한다.", + "contributors": "기고하시는 모든 분들께 감사드린다!", + "About": "정보", + "about1": "이것은 <2>@_Ninji의 노력이 없었다면 불가능했을 것이다.", + "about2": "나는 <2>mikebryant's의 작품에서 영감을 받았다.", + "about3": "마지막으로, 하지만 중요한 것은, 디자인에 대한 오빠의 도움에 감사하다는 것이다. 그는 게임 개발자야! 트위터에서 그를 따라라: <2>@Consalv0.", + "about4": "발견된 오류 <2>여기에 보고." +} diff --git a/src/i18n.js b/src/i18n.js index 6c5b81b..da471e1 100644 --- a/src/i18n.js +++ b/src/i18n.js @@ -8,6 +8,7 @@ import translationEs from "../locales/es/translation.json"; import translationDe from "../locales/de/translation.json"; import translationFr from "../locales/fr/translation.json"; import translationIt from "../locales/it/translation.json"; +import translationKr from "../locales/kr/translation.json"; import translationZhCN from "../locales/zh-CN/translation.json"; import translationZhTW from "../locales/zh-TW/translation.json"; import translationZhHK from "../locales/zh-HK/translation.json"; @@ -56,6 +57,9 @@ i18n it: { translations: translationIt, }, + kr: { + translations: translationKr, + }, "zh": { translations: translationZhCN, },