forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zh.lang.js
127 lines (126 loc) · 2.5 KB
/
zh.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
/**
* Configuration for the chinese translation
*/
module.exports = {
display: "中文",
prefix: "/zh/",
p: {
headline: "Axios 是一个基于 promise 的网络请求库,可以用于浏览器和 node.js",
subhead: `Axios 使用简单,包尺寸小且提供了易于扩展的接口。`,
},
t: {
"Get Started": "起步",
"View on GitHub": "Github 查看",
"Languages": "语言",
"Open Source": "开源",
"Contribute": "贡献",
},
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: "请求配置",
},
{
type: "link",
href: "/docs/res_schema",
text: "响应结构",
},
{
type: "link",
href: "/docs/config_defaults",
text: "默认配置",
},
{
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: "🆕 请求体编码",
},
{
type: "link",
href: "/docs/multipart",
text: "🆕 Multipart 实体请求",
},
{
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: "Collaborator指南",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "为Axios做出贡献"
},
{
type: "link",
href: "/docs/translating",
text: "翻译文档"
}
],
};