Merge pull request #704 from APPLEH0LIC/develop

Added Korean Translation
This commit is contained in:
Michael Teeuw 2017-02-09 13:32:19 +01:00 committed by GitHub
commit 54857e843b
3 changed files with 32 additions and 0 deletions

View File

@ -46,6 +46,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Run e2e test in Travis - Run e2e test in Travis
- Estonian Translation. - Estonian Translation.
- Add test for compliments module for parts of day - Add test for compliments module for parts of day
- Korean Translation.
### Fixed ### Fixed

30
translations/kr.json Normal file
View File

@ -0,0 +1,30 @@
{
"LOADING": "로드 중 …",
"TODAY": "오늘",
"TOMORROW": "내일",
"DAYAFTERTOMORROW": "모레",
"RUNNING": "종료 일",
"EMPTY": "예정된 이벤트가 없습니다.",
"N": "북풍",
"NNE": "북북동풍",
"NE": "북동풍",
"ENE": "동북동풍",
"E": "동풍",
"ESE": "동남동풍",
"SE": "남동풍",
"SSE": "남남동풍",
"S": "남풍",
"SSW": "남남서풍",
"SW": "남서풍",
"WSW": "서남서풍",
"W": "서풍",
"WNW": "서북서풍",
"NW": "북서풍",
"NNW": "북북서풍",
"UPDATE_NOTIFICATION": "새로운 MagicMirror² 업데이트가 있습니다.",
"UPDATE_NOTIFICATION_MODULE": "MODULE_NAME 모듈에서 사용 가능한 업데이트 입니다.",
"UPDATE_INFO": "설치할 COMMIT_COUNT 는 BRANCH_NAME 분기에 해당됩니다."
}

View File

@ -31,6 +31,7 @@ var translations = {
"hu" : "translations/hu.json", // Hungarian "hu" : "translations/hu.json", // Hungarian
"is" : "translations/is.json", // Icelandic "is" : "translations/is.json", // Icelandic
"et" : "translations/et.json", // Estonian "et" : "translations/et.json", // Estonian
"kr" : "translations/kr.json", // Korean
}; };
if (typeof module !== "undefined") {module.exports = translations;} if (typeof module !== "undefined") {module.exports = translations;}