forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kr.lang.js
138 lines (137 loc) · 3.37 KB
/
kr.lang.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/**
* Configuration for the english (original) translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "한국어",
prefix: "/kr/",
dir: "ltr",
lang: "kr",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "브라우저와 node.js를 위한 Promise 기반 HTTP 클라이언트 라이브러리",
subhead: `Axios는 브라우저와 node.js를 위한 간단한 Promise 기반 HTTP 클라이언트입니다.
Axios는 확장 가능한 인터페이스를 가진 작은 패키지로 사용하기 쉬운 라이브러리를 제공합니다.`,
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": '시작하기',
"View on GitHub": 'GitHub 보러가기',
"Languages": '언어',
"Open Source": '오픈소스',
"Contribute": '기여하기',
"Source on GitHub": 'GitHub 소스',
"Fork on GitHub": 'GitHub 포크',
"Fork the Website": '웹사이트 포크',
"Create an Issue": undefined,
"Next": '다음',
"Previous": '이전',
"Website Copy Right Footer": '웹사이트 저작권 푸터',
"View On Github": 'Github 보러가기',
"Axios Project Copy Right Footer": 'Axios 프로젝트 저작권 푸터',
"License Label Footer": '라이센스 라벨 푸터'
},
sidebar: [
{
type: "heading",
text: "시작하기",
},
{
type: "link",
href: "/docs/intro",
text: "소개",
},
{
type: "link",
href: "/docs/example",
text: "예제",
},
{
type: "link",
href: "/docs/post_example",
text: "POST 요청",
},
{
type: "heading",
text: "Axios API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API",
},
{
type: "link",
href: "/docs/instance",
text: "Axios 인스턴스",
},
{
type: "link",
href: "/docs/req_config",
text: "요청 Config",
},
{
type: "link",
href: "/docs/res_schema",
text: "응답 스키마",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Config 기본값",
},
{
type: "link",
href: "/docs/interceptors",
text: "인터셉터",
},
{
type: "link",
href: "/docs/handling_errors",
text: "에러 핸들링",
},
{
type: "link",
href: "/docs/cancellation",
text: "요청 취소",
},
{
type: "link",
href: "/docs/urlencoded",
text: "URL-인코딩 바디",
},
{
type: "heading",
text: "더보기",
},
{
type: "link",
href: "/docs/notes",
text: "참고",
},
{
type: "heading",
text: "기여자",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md",
text: "행동 지침",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/COLLABORATOR_GUIDE.md",
text: "공동작업자 가이드",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Axios 기여하기"
},
{
type: "link",
href: "/docs/translating",
text: "해당 문서 번역하기"
}
],
};