-
Notifications
You must be signed in to change notification settings - Fork 131
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
Translate 1 file to ko - Understanding Errors #129
Conversation
Translation of Understanding Errors.mdtitle: Understanding Errors oneline: "How to see errors in TypeScript."Understand errors (Understanding Errors)If TypeScript finds an error, it wants to explain in as much detail as possible what went wrong. Term (Terminology)Knowing the terms that appear frequently in error messages can help you understand them. assignable (assignable to)TypeScript can replace a type with a different type. Assignables I express it. As the name suggests, this relationship informally ExamplesLet's take a look at some examples of error messages and see what's happening. Elaborations errorsEach error starts with a leading message and sometimes leads to more sub-messages. Here's an example of generating an error message that's longer than the example itself: // @errors: 2322
let a: { m: number[] }
let b = { m: [""] }
a = b In the last line, TypeScript noticed an error.
Additional Properties (Extra Properties)// @errors: 2322
type A = { m: number }
const a: A = { m: 10, n: "" } Union Associations// @errors: 2322
type Thing = "none" | { name: string }
const a: Thing = { name: 0 } |
안녕하세요! 확인이 늦어서 죄송합니다 😢 번역시 너무 원문에 맞춰 가다보면 어색해질 수 있어 적당한 의역은 좋다고 생각합니다 :) 확인 부탁드려요~ |
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
요구사항 수정 Co-authored-by: Kibeom Kwon <kgbum2222@gmail.com>
번역이 처음이라 수정해야 할 부분이 많았는데 꼼꼼히 신경써 주셔서 감사합니다..!! 타입스크립트에 관심이 많이 생겨서 공부하고 있는데 앞으로도 번역에 많이 참여해보려고합니다! 감사합니다. |
LGTM |
Merging because @bumkeyy is a code-owner of all the changes - thanks! |
#6
Understanding Errors를 한국어로 번역하였습니다.