Skip to content

Commit 26fac7f

Browse files
Merge pull request #1076 from dorri-riddo/translate-ko
Translation 2 files to Ko
2 parents 9537bf6 + 7005dff commit 26fac7f

File tree

3 files changed

+52
-9
lines changed

3 files changed

+52
-9
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
//// { compiler: { target: 99 }, order: 1 }
2+
3+
// JavaScript에서 표현할 수 있는 숫자의 크기에
4+
// 제한이 있다는 걸 알고 계셨나요?
5+
6+
const maxHighValue = 9007199254740991;
7+
const maxLowValue = -9007199254740991;
8+
9+
// 아래 숫자보다 수가 하나라도 더 크거나 작으면
10+
// 매우 위험해집니다
11+
12+
const oneOverMax = 9007199254740992;
13+
const oneBelowMin = -9007199254740992;
14+
15+
// 이 크기의 수치를 다루는 방법은
16+
// numbers 대신 BigInts로
17+
// 변환하는 것입니다:
18+
//
19+
// https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/BigInt
20+
21+
// TypeScript는 이제 JavaScript에 타입이
22+
// BigInt 여야 한다는 것을 알리는 접미사 "n"을 추가하여
23+
// 2^52(양수/음수) 이상의 숫자 리터럴에 대한
24+
// 기능을 제공합니다.
25+
26+
// 숫자 리터럴
27+
9007199254740993;
28+
-9007199254740993;
29+
9007199254740994;
30+
-9007199254740994;
31+
32+
// 16진수
33+
0x19999999999999;
34+
-0x19999999999999;
35+
0x20000000000000;
36+
-0x20000000000000;
37+
0x20000000000001;
38+
-0x20000000000001;

packages/playground-examples/copy/ko/sections.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,33 @@
11
{
2-
"sections": [
3-
{
2+
"sections": [{
43
"name": "JavaScript",
54
"id": "JavaScript",
6-
"subtitle": "TypeScript가 최소한의 추가 구문으로 JavaScript 작업을 어떻게 개선하는지 확인해보세요."
5+
"subtitle": "See how TypeScript improves day to day working with JavaScript with minimal additional syntax."
76
},
87
{
98
"name": "TypeScript",
109
"id": "TypeScript",
11-
"subtitle": "TypeScript가 JavaScript를 확장하여 안전성과 도구를 추가하는 방법을 살펴보세요."
10+
"subtitle": "Explore how TypeScript extends JavaScript to add more safety and tooling."
1211
},
1312
{
1413
"name": "3.7",
1514
"id": "3.7",
16-
"subtitle": "<a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-7/'>릴리즈 노트</a>를 확인해보세요."
15+
"subtitle": "See the <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-7/'>Release notes</a>."
1716
},
1817
{
1918
"name": "3.8",
2019
"id": "3.8",
21-
"subtitle": "<a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-8/'>릴리즈 노트</a>를 확인해보세요."
20+
"subtitle": "See the <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-3-8/'>Release notes</a>."
2221
},
2322
{
2423
"name": "4.0",
2524
"id": "4.0",
26-
"subtitle": "<a href='https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-beta/'>릴리즈 노트</a>를 확인해보세요."
25+
"subtitle": "See the <a href='https://devblogs.microsoft.com/typescript/announcing-typescript-4-0-beta/'>Release notes</a>."
2726
},
2827
{
2928
"name": "Playground V3",
3029
"id": "Playground",
31-
"subtitle": "이 웹사이트에서 변경된 사항을 확인해보세요."
30+
"subtitle": "Learn what has changed in this website."
3231
}
3332
],
3433
"sortedSubSections": [
@@ -60,4 +59,4 @@
6059
"New TS Features",
6160
"New Checks"
6261
]
63-
}
62+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
display: "New Line"
3+
oneline: "Set the newline character"
4+
---
5+
6+
파일을 내보낼 때 줄바꿈의 끝을 지정합니다 : 'CRLF' (docs) 또는 'LF' (unix).

0 commit comments

Comments
 (0)