-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathit.lang.js
More file actions
158 lines (157 loc) · 3.95 KB
/
it.lang.js
File metadata and controls
158 lines (157 loc) · 3.95 KB
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
/**
* Configuration for the english (original) translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "Italiano",
prefix: "/it/",
dir: "ltr",
lang: "it",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "Client HTTP per node e browser, basato sulle Promise.",
subhead: `Axios è un Client HTTP per node.js e browser, basato sulle Promise.
Axios fornisce una libreria di semplice utilizzo contenuta in un pacchetto molto piccolo e un'interfaccia estendibile.`,
sponsors: `<p>Grazie per aver deciso di supportare il progetto.</p>
<p>Verrai automaticamente aggiunto a questa lista entro 24 ore se il tier che hai scelto lo comprende.</p>
<div class="social"><a class="link" href="/docs/sponsor">Scopri di più...</a></div>
`,
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Come Iniziare": undefined,
"Vai al GitHub": undefined,
Lingue: undefined,
"Open Source": undefined,
Contribuisci: undefined,
"Sorgente su GitHub": undefined,
Problemi: undefined,
"Pull Requests": undefined,
"Codice di Condotta": undefined,
"Fai un Fork su GitHub": undefined,
"Fai un Fork del Sito Web": undefined,
"Segnala un problema": undefined,
Successivo: undefined,
Precedente: undefined,
"Website Copy Right Footer": undefined,
"Vai al Github": undefined,
"Axios Project Copy Right Footer": undefined,
"License Label Footer": undefined,
Sponsors: undefined,
"Diventa uno Sponsor": undefined,
"Sponsor Oro": undefined,
},
sidebar: [
{
type: "heading",
text: "Come Iniziare",
},
{
type: "link",
href: "/docs/intro",
text: "Introduzione",
},
{
type: "link",
href: "/docs/example",
text: "Esempio di Utilizzo",
},
{
type: "link",
href: "/docs/post_example",
text: "Richieste POST",
},
{
type: "heading",
text: "Axios API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API",
},
{
type: "link",
href: "/docs/instance",
text: "L'Istanza Axios",
},
{
type: "link",
href: "/docs/req_config",
text: "Configurazione della Richiesta",
},
{
type: "link",
href: "/docs/res_schema",
text: "Schema della Risposta",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Valori Predefiniti",
},
{
type: "link",
href: "/docs/interceptors",
text: "Interceptors",
},
{
type: "link",
href: "/docs/handling_errors",
text: "Gestione degli Errori",
},
{
type: "link",
href: "/docs/cancellation",
text: "Annullamento delle Richieste",
},
{
type: "link",
href: "/docs/urlencoded",
text: "🆕 Corpo con URL-Encoding",
},
{
type: "link",
href: "/docs/multipart",
text: "🆕 Corpo Multipart",
},
{
type: "heading",
text: "Altro",
},
{
type: "link",
href: "/docs/notes",
text: "Note",
},
{
type: "heading",
text: "Collaboratori",
},
{
type: "link",
href: "/docs/sponsor",
text: "Sponsorizzare Axios",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/v1.x/CODE_OF_CONDUCT.md",
text: "Codice di Condotta",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/v1.x/COLLABORATOR_GUIDE.md",
text: "Guida per la Collaborazione",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/v1.x/CONTRIBUTING.md",
text: "Contribuire ad Axios",
},
{
type: "link",
href: "/docs/translating",
text: "Tradurre la documentazione",
},
],
};