forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fr.lang.js
140 lines (139 loc) · 3.32 KB
/
fr.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
/**
* Configuration for the french translation
*/
module.exports = {
display: "Français",
prefix: "/fr/",
dir: "ltr",
lang: "fr",
p: {
headline: "Client HTTP basé sur les promesses pour navigateur et node.js",
subhead: `Axios est un client HTTP simple basé sur les promesses compatible
avec le navigateur et node.js.
Il propose une librairie facile à utiliser et à étendre, le tout
dans un tout petit package.`,
},
t: {
"Get Started": "Démarrer",
"View on GitHub": "Voir sur GitHub",
"Languages": "Langues",
"Open Source": "Open source",
"Contribute": "Contribuer",
"Source on GitHub": "Source sur GitHub",
"Issues": undefined,
"Pull Requests": "Pull requests",
"Code of Conduct": "Code de conduite",
"Fork on GitHub": "Forker sur GitHub",
"Fork the Website": "Forker ce site",
"Create an Issue": "Créer une issue",
"Next": "Suivant",
"Previous": "Précédent",
"Website Copy Right Footer": `Ce site : Copyright © 2020-aujourd’hui John Jakob "Jake" Sarjeant. Utilisé avec permission.`,
"View On Github": "Voir sur GitHub",
"Axios Project Copy Right Footer": "Le projet Axios : Copyright © 2014-aujourd’hui Matt Zabriskie.",
"License Label Footer": "Sous"
},
sidebar: [
{
type: "heading",
text: "Démarrer",
},
{
type: "link",
href: "/docs/intro",
text: "Introduction",
},
{
type: "link",
href: "/docs/example",
text: "Exemple",
},
{
type: "link",
href: "/docs/post_example",
text: "Requêtes POST",
},
{
type: "heading",
text: "API Axios",
},
{
type: "link",
href: "/docs/api_intro",
text: "API Axios",
},
{
type: "link",
href: "/docs/instance",
text: "L’instance Axios",
},
{
type: "link",
href: "/docs/req_config",
text: "Configuration de requête",
},
{
type: "link",
href: "/docs/res_schema",
text: "Schéma de réponse",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Configuration par défaut",
},
{
type: "link",
href: "/docs/interceptors",
text: "Intercepteurs",
},
{
type: "link",
href: "/docs/handling_errors",
text: "Gestion des erreurs",
},
{
type: "link",
href: "/docs/cancellation",
text: "Annuler une requête",
},
{
type: "link",
href: "/docs/urlencoded",
text: "URL-Encoder le contenu d’une requête",
},
{
type: "heading",
text: "Autre",
},
{
type: "link",
href: "/docs/notes",
text: "Notes",
},
{
type: "heading",
text: "Contributeurs",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md",
text: "Code de conduite",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/COLLABORATOR_GUIDE.md",
text: "Guide du collaborateur",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Contribuer à Axios"
},
{
type: "link",
href: "/docs/translating",
text: "Traduire cette documentation"
}
],
};