forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
de.lang.js
128 lines (127 loc) · 2.82 KB
/
de.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
/**
* Configuration for the german translation
*/
module.exports = {
display: "Deutsch",
prefix: "/de/",
p: {
headline: "Promise-basierter HTTP-Client für den Browser und Node.js",
subhead: `Axios ist ein einfacher Promise-basierter HTTP-Client für den Browser und Node.js.
Axios stellt in einem kompakten Paket ein einfach zu verwendendes und erweiterbares
Interface zur Verfügung.`,
},
t: {
"Get Started": "Loslegen",
"View on GitHub": "Auf GitHub anschauen",
"Languages": "Sprachen",
"Open Source": "Open-Source",
"Contribute": "Mitwirken",
"Source on GitHub": "Quellcode auf GitHub",
"Fork on GitHub": "Eine eigene version abspalten",
"Fork the Website": "Die Website abspalten",
"Create an Issue": "Ein Issue erstellen"
},
sidebar: [
{
type: "heading",
text: "Loslegen mit Axios",
},
{
type: "link",
href: "/docs/intro",
text: "Einführung",
},
{
type: "link",
href: "/docs/example",
text: "Beispiel",
},
{
type: "link",
href: "/docs/post_example",
text: "POST-Anfragen",
},
{
type: "heading",
text: "Axios-API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios-API",
},
{
type: "link",
href: "/docs/instance",
text: "Die Axios-Instanz",
},
{
type: "link",
href: "/docs/req_config",
text: "Anfragenkonfigurationsschema",
},
{
type: "link",
href: "/docs/res_schema",
text: "Antwortenschema",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Konfigurationsstandardwerte",
},
{
type: "link",
href: "/docs/interceptors",
text: "Abfänger",
},
{
type: "link",
href: "/docs/handling_errors",
text: "Errorverarbeitung",
},
{
type: "link",
href: "/docs/cancellation",
text: "Anfragen abbrechen",
},
{
type: "link",
href: "/docs/urlencoded",
text: "URL-Ähnlich Kodierte Anfragenkörper",
},
{
type: "heading",
text: "Andere",
},
{
type: "link",
href: "/docs/notes",
text: "Weitere Hinweise",
},
{
type: "heading",
text: "Mitwirken",
},
{
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: "Leitfaden",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Mitwirken"
},
{
type: "link",
href: "/docs/translating",
text: "Übersetzungen Hinzufügen"
}
],
};