@@ -8,7 +8,7 @@ import { headerPlugin } from './headerMdPlugin'
8
8
9
9
const nav : ThemeConfig [ 'nav' ] = [
10
10
{
11
- text : 'Docs ' ,
11
+ text : 'Documentazione ' ,
12
12
activeMatch : `^/(guide|style-guide|cookbook|examples)/` ,
13
13
items : [
14
14
{ text : 'Guida' , link : '/guide/introduction' } ,
@@ -43,13 +43,13 @@ const nav: ThemeConfig['nav'] = [
43
43
{
44
44
text : 'Risorse' ,
45
45
items : [
46
- { text : 'Partners ' , link : '/partners/' } ,
46
+ { text : 'Partner ' , link : '/partners/' } ,
47
47
{ text : 'Temi' , link : '/ecosystem/themes' } ,
48
48
{
49
49
text : 'Certificazioni' ,
50
50
link : 'https://certification.vuejs.org/?ref=vuejs-nav'
51
51
} ,
52
- { text : 'Jobs ' , link : 'https://vuejobs.com/?ref=vuejs' } ,
52
+ { text : 'Offerte di Lavoro ' , link : 'https://vuejobs.com/?ref=vuejs' } ,
53
53
{ text : 'T-Shirt Shop' , link : 'https://vue.threadless.com/' }
54
54
]
55
55
} ,
@@ -107,7 +107,7 @@ const nav: ThemeConfig['nav'] = [
107
107
{ text : 'Team' , link : '/about/team' } ,
108
108
{ text : 'Releases' , link : '/about/releases' } ,
109
109
{
110
- text : 'Community Guide ' ,
110
+ text : 'Guida della Comunità ' ,
111
111
link : '/about/community-guide'
112
112
} ,
113
113
{ text : 'Codice di condotta' , link : '/about/coc' } ,
@@ -131,101 +131,101 @@ const nav: ThemeConfig['nav'] = [
131
131
export const sidebar : ThemeConfig [ 'sidebar' ] = {
132
132
'/guide/' : [
133
133
{
134
- text : 'Getting Started ' ,
134
+ text : 'Guida introduttiva ' ,
135
135
items : [
136
- { text : 'Introduction ' , link : '/guide/introduction' } ,
136
+ { text : 'Panoramica ' , link : '/guide/introduction' } ,
137
137
{
138
- text : 'Quick Start ' ,
138
+ text : 'Avvio rapido ' ,
139
139
link : '/guide/quick-start'
140
140
}
141
141
]
142
142
} ,
143
143
{
144
- text : 'Essentials ' ,
144
+ text : 'Gli Elementi Essenziali ' ,
145
145
items : [
146
146
{
147
- text : 'Creating an Application ' ,
147
+ text : 'Creare un\'applicazione ' ,
148
148
link : '/guide/essentials/application'
149
149
} ,
150
150
{
151
- text : 'Template Syntax ' ,
151
+ text : 'La Sintassi del Template ' ,
152
152
link : '/guide/essentials/template-syntax'
153
153
} ,
154
154
{
155
- text : 'Reactivity Fundamentals ' ,
155
+ text : 'Le basi della Reattività ' ,
156
156
link : '/guide/essentials/reactivity-fundamentals'
157
157
} ,
158
158
{
159
- text : 'Computed Properties' ,
159
+ text : 'Le Computed Properties' ,
160
160
link : '/guide/essentials/computed'
161
161
} ,
162
162
{
163
- text : 'Class and Style Bindings ' ,
163
+ text : 'Binding per Classi e Stili CSS ' ,
164
164
link : '/guide/essentials/class-and-style'
165
165
} ,
166
166
{
167
- text : 'Conditional Rendering' ,
167
+ text : 'Rendering Condizionale ' ,
168
168
link : '/guide/essentials/conditional'
169
169
} ,
170
- { text : 'List Rendering' , link : '/guide/essentials/list' } ,
170
+ { text : 'Il Rendering delle Liste ' , link : '/guide/essentials/list' } ,
171
171
{
172
- text : 'Event Handling ' ,
172
+ text : 'La Gestione degli Eventi ' ,
173
173
link : '/guide/essentials/event-handling'
174
174
} ,
175
- { text : 'Form Input Bindings ' , link : '/guide/essentials/forms' } ,
175
+ { text : 'Binding per gli Input dei Form ' , link : '/guide/essentials/forms' } ,
176
176
{
177
- text : 'Lifecycle Hooks ' ,
177
+ text : 'Gli Hook del Ciclo di Vita ' ,
178
178
link : '/guide/essentials/lifecycle'
179
179
} ,
180
- { text : 'Watchers ' , link : '/guide/essentials/watchers' } ,
181
- { text : 'Template Refs ' , link : '/guide/essentials/template-refs' } ,
180
+ { text : 'I Watcher ' , link : '/guide/essentials/watchers' } ,
181
+ { text : 'I Ref del Template ' , link : '/guide/essentials/template-refs' } ,
182
182
{
183
- text : 'Components Basics ' ,
183
+ text : 'Nozioni base sui Componenti ' ,
184
184
link : '/guide/essentials/component-basics'
185
185
}
186
186
]
187
187
} ,
188
188
{
189
- text : 'Components In-Depth ' ,
189
+ text : 'I Componenti nel dettaglio ' ,
190
190
items : [
191
191
{
192
- text : 'Registration ' ,
192
+ text : 'La Registrazione ' ,
193
193
link : '/guide/components/registration'
194
194
} ,
195
- { text : 'Props' , link : '/guide/components/props' } ,
196
- { text : 'Events ' , link : '/guide/components/events' } ,
197
- { text : 'Component v-model' , link : '/guide/components/v-model' } ,
195
+ { text : 'Le Props' , link : '/guide/components/props' } ,
196
+ { text : 'Gli Eventi ' , link : '/guide/components/events' } ,
197
+ { text : 'Il v-model nei componenti ' , link : '/guide/components/v-model' } ,
198
198
{
199
- text : 'Fallthrough Attributes ' ,
199
+ text : 'Gli Attributi Trasferiti (Fallthrough) ' ,
200
200
link : '/guide/components/attrs'
201
201
} ,
202
- { text : 'Slots ' , link : '/guide/components/slots' } ,
202
+ { text : 'Gli Slot ' , link : '/guide/components/slots' } ,
203
203
{
204
204
text : 'Provide / inject' ,
205
205
link : '/guide/components/provide-inject'
206
206
} ,
207
207
{
208
- text : 'Async Components ' ,
208
+ text : 'I Componenti Asincroni ' ,
209
209
link : '/guide/components/async'
210
210
}
211
211
]
212
212
} ,
213
213
{
214
- text : 'Reusability ' ,
214
+ text : 'La Riutilizzabilità ' ,
215
215
items : [
216
216
{
217
- text : 'Composables' ,
217
+ text : 'I Composables' ,
218
218
link : '/guide/reusability/composables'
219
219
} ,
220
220
{
221
- text : 'Custom Directives ' ,
221
+ text : 'Le Direttive Personalizzate ' ,
222
222
link : '/guide/reusability/custom-directives'
223
223
} ,
224
- { text : 'Plugins ' , link : '/guide/reusability/plugins' }
224
+ { text : 'I Plugin ' , link : '/guide/reusability/plugins' }
225
225
]
226
226
} ,
227
227
{
228
- text : 'Built-in Components ' ,
228
+ text : 'I Componenti nativi ' ,
229
229
items : [
230
230
{ text : 'Transition' , link : '/guide/built-ins/transition' } ,
231
231
{
@@ -238,18 +238,18 @@ export const sidebar: ThemeConfig['sidebar'] = {
238
238
]
239
239
} ,
240
240
{
241
- text : 'Scaling Up ' ,
241
+ text : 'Scalabilità per progetti complessi ' ,
242
242
items : [
243
- { text : 'Single-File Components ' , link : '/guide/scaling-up/sfc' } ,
244
- { text : 'Tooling ' , link : '/guide/scaling-up/tooling' } ,
245
- { text : 'Routing' , link : '/guide/scaling-up/routing' } ,
243
+ { text : 'I Component Single-File ' , link : '/guide/scaling-up/sfc' } ,
244
+ { text : 'Gli Strumenti per lo sviluppo ' , link : '/guide/scaling-up/tooling' } ,
245
+ { text : 'Il Routing' , link : '/guide/scaling-up/routing' } ,
246
246
{
247
- text : 'State Management ' ,
247
+ text : 'La Gestione dello Stato ' ,
248
248
link : '/guide/scaling-up/state-management'
249
249
} ,
250
- { text : 'Testing ' , link : '/guide/scaling-up/testing' } ,
250
+ { text : 'I Test nel dettaglio ' , link : '/guide/scaling-up/testing' } ,
251
251
{
252
- text : 'Server-Side Rendering (SSR)' ,
252
+ text : 'Il Rendering Server-Side (SSR)' ,
253
253
link : '/guide/scaling-up/ssr'
254
254
}
255
255
]
@@ -258,66 +258,66 @@ export const sidebar: ThemeConfig['sidebar'] = {
258
258
text : 'Best Practices' ,
259
259
items : [
260
260
{
261
- text : 'Production Deployment ' ,
261
+ text : 'Rilascio in Produzione ' ,
262
262
link : '/guide/best-practices/production-deployment'
263
263
} ,
264
264
{
265
265
text : 'Performance' ,
266
266
link : '/guide/best-practices/performance'
267
267
} ,
268
268
{
269
- text : 'Accessibility ' ,
269
+ text : 'Accessibilità Web ' ,
270
270
link : '/guide/best-practices/accessibility'
271
271
} ,
272
272
{
273
- text : 'Security ' ,
273
+ text : 'Sicurezza ' ,
274
274
link : '/guide/best-practices/security'
275
275
}
276
276
]
277
277
} ,
278
278
{
279
279
text : 'TypeScript' ,
280
280
items : [
281
- { text : 'Overview ' , link : '/guide/typescript/overview' } ,
281
+ { text : 'Panoramica ' , link : '/guide/typescript/overview' } ,
282
282
{
283
- text : 'TS with Composition API' ,
283
+ text : 'TS con Composition API' ,
284
284
link : '/guide/typescript/composition-api'
285
285
} ,
286
286
{
287
- text : 'TS with Options API' ,
287
+ text : 'TS con Options API' ,
288
288
link : '/guide/typescript/options-api'
289
289
}
290
290
]
291
291
} ,
292
292
{
293
- text : 'Extra Topics ' ,
293
+ text : 'Argomenti Extra ' ,
294
294
items : [
295
295
{
296
- text : 'Ways of Using Vue' ,
296
+ text : 'Modi per utilizzare Vue' ,
297
297
link : '/guide/extras/ways-of-using-vue'
298
298
} ,
299
299
{
300
- text : 'Composition API FAQ ' ,
300
+ text : 'FAQ sulla Composition API' ,
301
301
link : '/guide/extras/composition-api-faq'
302
302
} ,
303
303
{
304
- text : 'Reactivity in Depth ' ,
304
+ text : 'La Reattività in dettaglio ' ,
305
305
link : '/guide/extras/reactivity-in-depth'
306
306
} ,
307
307
{
308
- text : 'Rendering Mechanism ' ,
308
+ text : 'Il Meccanismo di Rendering ' ,
309
309
link : '/guide/extras/rendering-mechanism'
310
310
} ,
311
311
{
312
- text : 'Render Functions & JSX' ,
312
+ text : 'Le Render Function e JSX' ,
313
313
link : '/guide/extras/render-function'
314
314
} ,
315
315
{
316
- text : 'Vue and Web Components' ,
316
+ text : 'Vue e i Web Components' ,
317
317
link : '/guide/extras/web-components'
318
318
} ,
319
319
{
320
- text : 'Animation Techniques ' ,
320
+ text : 'Tecniche di Animazione ' ,
321
321
link : '/guide/extras/animation'
322
322
}
323
323
// {
@@ -664,8 +664,8 @@ export default defineConfigWithTheme<ThemeConfig>({
664
664
] ,
665
665
666
666
editLink : {
667
- repo : 'vuejs /docs' ,
668
- text : 'Edit this page on GitHub'
667
+ repo : 'phox081 /docs-it ' ,
668
+ text : 'Modifica questa pagina su GitHub'
669
669
} ,
670
670
671
671
footer : {
0 commit comments