Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create translation.json for Korean #30

Merged
merged 2 commits into from
Apr 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions locales/kr/translation.json
Original file line number Diff line number Diff line change
@@ -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>판매가</1>는 당신 자신의 섬을 위한 것이다. 다른 섬에서의 구매는 중요하지 않아!",
"priceChangeInfo": "- 물가는 <1>하루에 두 번</1> 변한다. 반드시 로그에 기록하십시오. (데이터가 장치에 저장됨).",
"guaranteedMinInfo": "- <1>보장가치</1> *는 적어도 이번 주 중 어느 시점에서는 이 가격을 보게 된다는 것을 의미한다.",
"contributors": "기고하시는 모든 분들께 감사드린다!",
"About": "정보",
"about1": "이것은 <2>@_Ninji</2>의 노력이 없었다면 불가능했을 것이다.",
"about2": "나는 <2>mikebryant's</2>의 작품에서 영감을 받았다.",
"about3": "마지막으로, 하지만 중요한 것은, 디자인에 대한 오빠의 도움에 감사하다는 것이다. 그는 게임 개발자야! 트위터에서 그를 따라라: <2>@Consalv0</2>.",
"about4": "발견된 오류 <2>여기에</2> 보고."
}
4 changes: 4 additions & 0 deletions src/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -56,6 +57,9 @@ i18n
it: {
translations: translationIt,
},
kr: {
translations: translationKr,
},
"zh": {
translations: translationZhCN,
},
Expand Down