-
Notifications
You must be signed in to change notification settings - Fork 153
/
en.lang.js
159 lines (158 loc) · 3.84 KB
/
en.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
* Configuration for the english (original) translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "English",
prefix: "/",
dir: "ltr",
lang: "en",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "Promise based HTTP client for the browser and node.js",
subhead: `Axios is a simple promise based HTTP client for the browser and node.js.
Axios provides a simple to use library in a small package with a very
extensible interface.`,
sponsors: `<p>Thank you for considering supporting our project.</p>
<p>You will be automatically added to this list within 24 hours if the tier you select provides this benefit.</p>
<div class="social"><a class="link" href="/docs/sponsor">Read more...</a></div>
`
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": undefined,
"View on GitHub": undefined,
"Languages": undefined,
"Open Source": undefined,
"Contribute": undefined,
"Source on GitHub": undefined,
"Issues": undefined,
"Pull Requests": undefined,
"Code of Conduct": undefined,
"Fork on GitHub": undefined,
"Fork the Website": undefined,
"Create an Issue": undefined,
"Next": undefined,
"Previous": undefined,
"Website Copy Right Footer": undefined,
"View On Github": undefined,
"Axios Project Copy Right Footer": undefined,
"License Label Footer": undefined,
"Sponsors": undefined,
"Become a sponsor": undefined,
"Gold Sponsors": undefined
},
sidebar: [
{
type: "heading",
text: "Getting Started",
},
{
type: "link",
href: "/docs/intro",
text: "Introduction",
},
{
type: "link",
href: "/docs/example",
text: "Example",
},
{
type: "link",
href: "/docs/post_example",
text: "POST Requests",
},
{
type: "heading",
text: "Axios API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API",
},
{
type: "link",
href: "/docs/instance",
text: "The Axios Instance",
},
{
type: "link",
href: "/docs/req_config",
text: "Request Config",
},
{
type: "link",
href: "/docs/res_schema",
text: "Response Schema",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Config Defaults",
},
{
type: "link",
href: "/docs/interceptors",
text: "Interceptors",
},
{
type: "link",
href: "/docs/handling_errors",
text: "Handling Errors",
},
{
type: "link",
href: "/docs/cancellation",
text: "Cancellation",
},
{
type: "link",
href: "/docs/urlencoded",
text: "🆕 URL-Encoding Bodies",
},
{
type: "link",
href: "/docs/multipart",
text: "🆕 Multipart Bodies",
},
{
type: "heading",
text: "Other",
},
{
type: "link",
href: "/docs/notes",
text: "Notes",
},
{
type: "heading",
text: "Contributors",
},
{
type: "link",
href: "/docs/sponsor",
text: "Sponsoring Axios",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md",
text: "Code of Conduct",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/COLLABORATOR_GUIDE.md",
text: "Collaborator Guide",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Contributing to Axios"
},
{
type: "link",
href: "/docs/translating",
text: "Translating these docs"
}
],
};