From a8279536e363ff1ce392cca29a79c0373e686118 Mon Sep 17 00:00:00 2001 From: DaehunGwak Date: Sun, 3 Jan 2021 15:23:58 +0900 Subject: [PATCH] update quiz 20~24 to ko --- quiz-app/src/assets/translations/ko.json | 186 +++++++++++------------ 1 file changed, 93 insertions(+), 93 deletions(-) diff --git a/quiz-app/src/assets/translations/ko.json b/quiz-app/src/assets/translations/ko.json index 0413c751..ef8cdc1d 100644 --- a/quiz-app/src/assets/translations/ko.json +++ b/quiz-app/src/assets/translations/ko.json @@ -1991,48 +1991,48 @@ "title": "Lesson 20 - 스페이스 게임 - 끝과 재시작: 강의 전 퀴즈", "quiz": [ { - "questionText": "When is a good time to restart a game", + "questionText": "게임을 재시작하기 좋은 타이밍은 언제인가?", "answerOptions": [ { - "answerText": "when a player wins or loses", + "answerText": "플레이어가 이겼거나 졌을 때", "isCorrect": "true" }, { - "answerText": "whenever", + "answerText": "언제든지", "isCorrect": "false" } ] }, { - "questionText": "When should a game end", + "questionText": "언제 게임이 종료되야 하는가?", "answerOptions": [ { - "answerText": "when an enemy ship is destroyed", + "answerText": "적의 우주선이 파괴되었을 때", "isCorrect": "false" }, { - "answerText": "when a hero ship is destroyed", + "answerText": "히어로 우주선이 파괴되었을 때", "isCorrect": "true" }, { - "answerText": "when points are collected", + "answerText": "점수가 수집될 때", "isCorrect": "false" } ] }, { - "questionText": "A good way to add a level to your game is:", + "questionText": "게임에 레벨이 추가되는 좋은 방법은?", "answerOptions": [ { - "answerText": "Increment the amount of points necessary to complete a given level", + "answerText": "주어진 레벨을 완료하는데 필요한 점수를 증가", "isCorrect": "true" }, { - "answerText": "Add more players to the game", + "answerText": "게임에 더 많은 플레이어를 추가", "isCorrect": "false" }, { - "answerText": "Add more graphics to the game", + "answerText": "게임에 그래픽 요소를 더 추가", "isCorrect": "false" } ] @@ -2044,48 +2044,48 @@ "title": "Lesson 20 - 스페이스 게임 - 끝과 재시작: 강의 후 퀴즈", "quiz": [ { - "questionText": "What is a good pattern to use when a game end condition has been met?", + "questionText": "게임 종료 조건을 만났을 때 사용하는 좋은 패턴은?", "answerOptions": [ { - "answerText": "Display a suitable message", + "answerText": "적절한 메세지를 보여주는 것", "isCorrect": "false" }, { - "answerText": "Quit the game", + "answerText": "게임을 나가는 것", "isCorrect": "false" }, { - "answerText": "Display a suitable message, offer the player to restart, and display what key to hit for that action", + "answerText": "적절한 메세지를 보여주고, 재시작하도록 플레이어에게 제공하는 것, 그리고 어떤 키를 입력해야 재시작할 수 있는지 보여주는 것", "isCorrect": "true" } ] }, { - "questionText": "You should offer a restart only when the game has ended", + "questionText": "게임이 끝날때만 재시작 기능을 제공해야한다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "false" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "true" } ] }, { - "questionText": "A good way to clear the EventEmitter when ending a game is:", + "questionText": "게임이 끝날 때, EventEmitter를 초기화하는 좋은 방법은?", "answerOptions": [ { - "answerText": "clearing listeners", + "answerText": "listeners를 초기화", "isCorrect": "true" }, { - "answerText": "clearing the screen", + "answerText": "스크린을 비우기", "isCorrect": "false" }, { - "answerText": "closing the game window", + "answerText": "게임 윈도우를 닫기", "isCorrect": "false" } ] @@ -2097,44 +2097,44 @@ "title": "Lesson 21 - 은행 프로젝트 - 웹 앱의 HTML 템플릿과 라우터: 강의 전 퀴즈", "quiz": [ { - "questionText": "You need to create multiple HTML files to display different screens in a web app", + "questionText": "웹 앱에서 다른 스크린을 보여주기 위해선 여러 개의 HTML 파일을 만들어야 한다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "false" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "true" } ] }, { - "questionText": "You can store and persist data locally in a web app", + "questionText": "웹 앱에서 로컬에 데이터를 저장하고 유지할 수 있다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "true" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "false" } ] }, { - "questionText": "What's the best data provider for a web app?", + "questionText": "웹 앱에서 가장 적절한 데이터 공급원은?", "answerOptions": [ { - "answerText": "A local database", + "answerText": "로컬 데이터베이스", "isCorrect": "false" }, { - "answerText": "A JavaScript object", + "answerText": "JavaScript 객체", "isCorrect": "false" }, { - "answerText": "A server with a JSON API", + "answerText": "JSON API를 제공하는 서버", "isCorrect": "true" } ] @@ -2146,20 +2146,20 @@ "title": "Lesson 21 - 은행 프로젝트 - 웹 앱의 HTML 템플릿과 라우터: 강의 후 퀴즈", "quiz": [ { - "questionText": "HTML templates are part of the DOM by default", + "questionText": "HTML 템플릿은 DOM에 기본적인 부분이다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "false" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "true" } ] }, { - "questionText": "Which part of the URL is needed for routing?", + "questionText": "URL에 어떤 부분이 라우팅에 필요한가?", "answerOptions": [ { "answerText": "window.location.pathname", @@ -2170,13 +2170,13 @@ "isCorrect": "false" }, { - "answerText": "both", + "answerText": "둘 다", "isCorrect": "true" } ] }, { - "questionText": "What's the name of the event triggered when calling the history.pushState() function?", + "questionText": "history.pushState() 함수를 호출 할때 트리거되는 이벤트 이름은?", "answerOptions": [ { "answerText": "pushstate", @@ -2199,40 +2199,40 @@ "title": "Lesson 22 - 은행 프로젝트 - 로그인과 가입 폼 작성하기: 강의 전 퀴즈", "quiz": [ { - "questionText": "HTML forms allow to send user input to a server without using JavaScript", + "questionText": "HTML forms는 JavaScript 없이 유저 입력을 서버로 전송하는 것을 제공한다.", "answerOptions": [ { - "answerText": "true", + "answerText": "네", "isCorrect": "true" }, { - "answerText": "false", + "answerText": "아니요", "isCorrect": "false" } ] }, { - "questionText": "