Skip to content

Commit 0af42a1

Browse files
author
Orta Therox
authored
Merge pull request #63 from jihoon-seo/210330-Add-some-Korean-translations
[ko] Add some Korean translations
2 parents d58d90f + 4cdeceb commit 0af42a1

File tree

4 files changed

+77
-0
lines changed

4 files changed

+77
-0
lines changed

docs/typescriptlang/ko/community.ts

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// https://www.typescriptlang.org/community
2+
// https://www.typescriptlang.org/ko/community
3+
4+
export const comCopy = {
5+
com_layout_title: "TypeScript 커뮤니티 페이지",
6+
com_layout_description:
7+
"https://www.typescriptlang.org/ko/community 에 표시될 문자열들",
8+
9+
com_headline: "Connect with us", // FIXME: I think this is not used anywhere
10+
com_connect_online: "온라인",
11+
com_connect_online_description:
12+
"잘 동작하는 것, 원하는 추가 기능 또는 개선 사항을 알려 주세요. 또는 새 업데이트를 찾아보세요.",
13+
com_online_stack_overflow_desc:
14+
"'typescript' 태그를 사용하여 다른 사용자와 소통하거나 질문해 보세요.",
15+
com_online_stack_overflow_tag: "",
16+
com_online_discord_header: "채팅",
17+
com_online_discord_desc:
18+
"TypeScript 커뮤니티 채팅에서 다른 사용자와 채팅해 보세요.",
19+
com_online_github_desc:
20+
"버그를 찾으셨거나 의견이 있으신가요?",
21+
com_online_github_href: "GitHub에서 알려주세요",
22+
com_online_twitter_desc: "트위터에서 최신 정보를 확인하세요. ",
23+
com_online_blog_desc:
24+
"TypeScript 최신 개발 상황을 다음에서 확인할 수 있습니다. ", //... blog
25+
com_online_typed_desc: " ",
26+
com_online_typed_href: "Definitely Typed 에서 ",
27+
com_online_typed_available_for:
28+
"공통 라이브러리와 프레임워크를 위한 수많은 TypeScript 정의 파일을 확인하세요.",
29+
com_person: "사람들과 만나기",
30+
com_conferences: "Conferences", // FIXME: I think this is not used anywhere
31+
com_conferences_alt_img: "logo of ", // FIXME: I think this is not used anywhere
32+
}

docs/typescriptlang/ko/ko.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { defineMessages } from "react-intl"
2+
import { navCopy } from "./nav"
3+
import { comCopy } from "./community"
4+
// import { headCopy } from "./head-seo"
5+
// import { docCopy } from "./documentation"
6+
// import { indexCopy } from "./index"
7+
// import { playCopy } from "./playground"
8+
// import { handbookCopy } from "./handbook"
9+
// import { dtCopy } from "./dt"
10+
import { Copy, messages as englishMessages } from "../en/en"
11+
12+
export const lang: Copy = defineMessages({
13+
...englishMessages,
14+
...navCopy,
15+
...comCopy,
16+
// ...headCopy,
17+
// ...docCopy,
18+
// ...indexCopy,
19+
// ...playCopy,
20+
// ...handbookCopy,
21+
// ...dtCopy,
22+
})

docs/typescriptlang/ko/nav.ts

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export const navCopy = {
2+
skip_to_content: "메인 컨텐츠로 바로가기",
3+
nav_documentation: "문서",
4+
nav_documentation_short: "문서",
5+
nav_download: "다운로드",
6+
nav_community: "커뮤니티",
7+
nav_playground: "플레이그라운드",
8+
nav_playground_short: "플레이그라운드",
9+
nav_handbook: "핸드북",
10+
nav_tools: "도구",
11+
nav_search_placeholder: "검색",
12+
nav_search_aria: "TypeScript 사이트에서 검색",
13+
// let me know if you can't make this work in your lang:
14+
// TypeScript X.Y [stable][between?]Z.Y[beta/rc]
15+
nav_version_stable_prefix: " 현재 사용 가능합니다.",
16+
nav_version_between: ", ",
17+
nav_version_beta_prefix: " 현재 베타 버전입니다.",
18+
nav_version_rc_prefix: " 현재 릴리즈 캔디데이트 (release candidate) 입니다.",
19+
nav_this_page_in_your_lang: "이 페이지의 한국어 버전이 있습니다.",
20+
nav_this_page_in_your_lang_open: "열기",
21+
nav_this_page_in_your_lang_no_more: "다시 보지 않기",
22+
}

localize.json

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"docs/typescriptlang/es/es.ts",
2424
"docs/typescriptlang/id/id.ts",
2525
"docs/typescriptlang/ja/ja.ts",
26+
"docs/typescriptlang/ko/ko.ts",
2627
"docs/typescriptlang/pl/pl.ts",
2728
"docs/typescriptlang/pt/pt.ts",
2829
"docs/typescriptlang/vo/vo.ts",

0 commit comments

Comments
 (0)