From 38279913f06c1872c1454058e0ea6256b13cd299 Mon Sep 17 00:00:00 2001 From: Sanghyuk Choi Date: Mon, 1 Feb 2021 20:19:39 +0900 Subject: [PATCH 1/4] translation Kr --- .../ko/Playground/Language/Fixits.ts | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/playground/ko/Playground/Language/Fixits.ts diff --git a/docs/playground/ko/Playground/Language/Fixits.ts b/docs/playground/ko/Playground/Language/Fixits.ts new file mode 100644 index 00000000..363960c4 --- /dev/null +++ b/docs/playground/ko/Playground/Language/Fixits.ts @@ -0,0 +1,23 @@ +//// { compiler: { }, order: 1 } + +// TypeScript는 코드를 자동으로 리팩터링하는 +// 도우미 로서 많은 수정 사항을 지원합니다. +// 예를 들어 7번째 줄의 텍스트를 선택하고 팝업되는 +// 전구를 클릭하면 몇 가지 수정 사항이 제공됩니다. + +function addOne(x: number) { + return x + 1; +} + +// 이 기능은 TypeScript 3.7버전과 함께 사용할 수 있으며, +// 최신 버전(nightly builds)도 포함합니다. + +// 코드 샘플을 만들거나 학습할 때 플레이그라운드(playground)에서 +// 사용할 필요가 없을 수도 있습니다. + +// 그러나, 사용 가능한 수정 기능이 있다는 것은 플레이그라운드(playground)에서 +// 문서화할 수 있다는 것을 의미하며, 이는 매우 가치 있는 일입니다.: + +// 예시:big-number-literals +// 예시:const-to-let +// 예시:infer-from-usage-changes From e878d9f0288167ae5d21d8cbdbaad0de13412ff1 Mon Sep 17 00:00:00 2001 From: Sanghyuk Choi Date: Mon, 1 Feb 2021 20:22:53 +0900 Subject: [PATCH 2/4] translation Kr --- docs/tsconfig/ko/categories/plugins.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/tsconfig/ko/categories/plugins.md diff --git a/docs/tsconfig/ko/categories/plugins.md b/docs/tsconfig/ko/categories/plugins.md new file mode 100644 index 00000000..0ae4eee3 --- /dev/null +++ b/docs/tsconfig/ko/categories/plugins.md @@ -0,0 +1,17 @@ +--- +display: "Plugins" +oneline: "Specify a list of language service plugins to include." +--- + +에디터 내에서 실행할 언어 서비스 플러그인 목록. + +언어 서비스 플러그인은 기존 TypeScript 파일을 기반으로 사용자에게 추가 정보를 제공하는 방법입니다. TypeScript와 편집자 간의 기존 메시지를 개선하거나 자체 오류 메시지를 제공할 수 있습니다. + +예를들면: + +- [ts-sql-plugin](https://github.com/xialvjun/ts-sql-plugin#readme) — 템플릿 문자열 SQL 생성기로 SQL 린팅(linting)을 추가합니다. +- [typescript-styled-plugin](https://github.com/Microsoft/typescript-styled-plugin) — 템플릿 문자열 내부에 CSS 린팅(linting)을 제공합니다. +- [typescript-eslint-language-service](https://github.com/Quramy/typescript-eslint-language-service) — 컴파일러 출력 내부에 eslint 오류 메시징 및 수정 기능을 제공합니다. +- [ts-graphql-plugin](https://github.com/Quramy/ts-graphql-plugin) — GraphQL 쿼리 템플릿 문자열 내에서 검증 및 자동 완성을 제공합니다. + +VS Code는 [automatically include language service plugins](https://code.visualstudio.com/api/references/contribution-points#contributes.typescriptServerPlugins)에 대한 확장 기능이 있어서, `tsconfig.json`에서 정의 할 필요없이 편집기에서 일부를 실행할 수 있습니다. From 048074b23f6ec1ddd833021745ab4e829a658fec Mon Sep 17 00:00:00 2001 From: Sanghyuk Choi Date: Mon, 1 Feb 2021 23:15:58 +0900 Subject: [PATCH 3/4] good --- docs/tsconfig/ko/{categories => options}/plugins.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/tsconfig/ko/{categories => options}/plugins.md (100%) diff --git a/docs/tsconfig/ko/categories/plugins.md b/docs/tsconfig/ko/options/plugins.md similarity index 100% rename from docs/tsconfig/ko/categories/plugins.md rename to docs/tsconfig/ko/options/plugins.md From 3d1506310f013f4dff5471643d79931b0032d7da Mon Sep 17 00:00:00 2001 From: Sanghyuk Choi Date: Wed, 3 Feb 2021 01:25:21 +0900 Subject: [PATCH 4/4] Typo correction MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 오타 및 제안해주신 수정사항 반영하였습니다 --- docs/playground/ko/Playground/Language/Fixits.ts | 4 ++-- docs/tsconfig/ko/options/plugins.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/playground/ko/Playground/Language/Fixits.ts b/docs/playground/ko/Playground/Language/Fixits.ts index 363960c4..a0ca4e5a 100644 --- a/docs/playground/ko/Playground/Language/Fixits.ts +++ b/docs/playground/ko/Playground/Language/Fixits.ts @@ -12,8 +12,8 @@ function addOne(x: number) { // 이 기능은 TypeScript 3.7버전과 함께 사용할 수 있으며, // 최신 버전(nightly builds)도 포함합니다. -// 코드 샘플을 만들거나 학습할 때 플레이그라운드(playground)에서 -// 사용할 필요가 없을 수도 있습니다. +// 플레이그라운드(playground)에서 코드 샘플을 만들거나 학습할 때는 +// 불필요할 수도 있습니다. // 그러나, 사용 가능한 수정 기능이 있다는 것은 플레이그라운드(playground)에서 // 문서화할 수 있다는 것을 의미하며, 이는 매우 가치 있는 일입니다.: diff --git a/docs/tsconfig/ko/options/plugins.md b/docs/tsconfig/ko/options/plugins.md index 0ae4eee3..0cbacb46 100644 --- a/docs/tsconfig/ko/options/plugins.md +++ b/docs/tsconfig/ko/options/plugins.md @@ -7,11 +7,11 @@ oneline: "Specify a list of language service plugins to include." 언어 서비스 플러그인은 기존 TypeScript 파일을 기반으로 사용자에게 추가 정보를 제공하는 방법입니다. TypeScript와 편집자 간의 기존 메시지를 개선하거나 자체 오류 메시지를 제공할 수 있습니다. -예를들면: +예를 들면: - [ts-sql-plugin](https://github.com/xialvjun/ts-sql-plugin#readme) — 템플릿 문자열 SQL 생성기로 SQL 린팅(linting)을 추가합니다. - [typescript-styled-plugin](https://github.com/Microsoft/typescript-styled-plugin) — 템플릿 문자열 내부에 CSS 린팅(linting)을 제공합니다. - [typescript-eslint-language-service](https://github.com/Quramy/typescript-eslint-language-service) — 컴파일러 출력 내부에 eslint 오류 메시징 및 수정 기능을 제공합니다. - [ts-graphql-plugin](https://github.com/Quramy/ts-graphql-plugin) — GraphQL 쿼리 템플릿 문자열 내에서 검증 및 자동 완성을 제공합니다. -VS Code는 [automatically include language service plugins](https://code.visualstudio.com/api/references/contribution-points#contributes.typescriptServerPlugins)에 대한 확장 기능이 있어서, `tsconfig.json`에서 정의 할 필요없이 편집기에서 일부를 실행할 수 있습니다. +VS Code는 [automatically include language service plugins](https://code.visualstudio.com/api/references/contribution-points#contributes.typescriptServerPlugins)에 대한 확장 기능이 있어서, `tsconfig.json`에서 정의 할 필요 없이 에디터에서 일부를 실행할 수 있습니다.