Skip to content

Commit 6c39d6c

Browse files
committed
Aggiornamento file config.ts per voci di menu della documentazione/guida
1 parent c9134b8 commit 6c39d6c

File tree

1 file changed

+57
-57
lines changed

1 file changed

+57
-57
lines changed

.vitepress/config.ts

Lines changed: 57 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { headerPlugin } from './headerMdPlugin'
88

99
const nav: ThemeConfig['nav'] = [
1010
{
11-
text: 'Docs',
11+
text: 'Documentazione',
1212
activeMatch: `^/(guide|style-guide|cookbook|examples)/`,
1313
items: [
1414
{ text: 'Guida', link: '/guide/introduction' },
@@ -43,13 +43,13 @@ const nav: ThemeConfig['nav'] = [
4343
{
4444
text: 'Risorse',
4545
items: [
46-
{ text: 'Partners', link: '/partners/' },
46+
{ text: 'Partner', link: '/partners/' },
4747
{ text: 'Temi', link: '/ecosystem/themes' },
4848
{
4949
text: 'Certificazioni',
5050
link: 'https://certification.vuejs.org/?ref=vuejs-nav'
5151
},
52-
{ text: 'Jobs', link: 'https://vuejobs.com/?ref=vuejs' },
52+
{ text: 'Offerte di Lavoro', link: 'https://vuejobs.com/?ref=vuejs' },
5353
{ text: 'T-Shirt Shop', link: 'https://vue.threadless.com/' }
5454
]
5555
},
@@ -107,7 +107,7 @@ const nav: ThemeConfig['nav'] = [
107107
{ text: 'Team', link: '/about/team' },
108108
{ text: 'Releases', link: '/about/releases' },
109109
{
110-
text: 'Community Guide',
110+
text: 'Guida della Comunità',
111111
link: '/about/community-guide'
112112
},
113113
{ text: 'Codice di condotta', link: '/about/coc' },
@@ -131,101 +131,101 @@ const nav: ThemeConfig['nav'] = [
131131
export const sidebar: ThemeConfig['sidebar'] = {
132132
'/guide/': [
133133
{
134-
text: 'Getting Started',
134+
text: 'Guida introduttiva',
135135
items: [
136-
{ text: 'Introduction', link: '/guide/introduction' },
136+
{ text: 'Panoramica', link: '/guide/introduction' },
137137
{
138-
text: 'Quick Start',
138+
text: 'Avvio rapido',
139139
link: '/guide/quick-start'
140140
}
141141
]
142142
},
143143
{
144-
text: 'Essentials',
144+
text: 'Gli Elementi Essenziali',
145145
items: [
146146
{
147-
text: 'Creating an Application',
147+
text: 'Creare un\'applicazione',
148148
link: '/guide/essentials/application'
149149
},
150150
{
151-
text: 'Template Syntax',
151+
text: 'La Sintassi del Template',
152152
link: '/guide/essentials/template-syntax'
153153
},
154154
{
155-
text: 'Reactivity Fundamentals',
155+
text: 'Le basi della Reattività',
156156
link: '/guide/essentials/reactivity-fundamentals'
157157
},
158158
{
159-
text: 'Computed Properties',
159+
text: 'Le Computed Properties',
160160
link: '/guide/essentials/computed'
161161
},
162162
{
163-
text: 'Class and Style Bindings',
163+
text: 'Binding per Classi e Stili CSS',
164164
link: '/guide/essentials/class-and-style'
165165
},
166166
{
167-
text: 'Conditional Rendering',
167+
text: 'Rendering Condizionale',
168168
link: '/guide/essentials/conditional'
169169
},
170-
{ text: 'List Rendering', link: '/guide/essentials/list' },
170+
{ text: 'Il Rendering delle Liste', link: '/guide/essentials/list' },
171171
{
172-
text: 'Event Handling',
172+
text: 'La Gestione degli Eventi',
173173
link: '/guide/essentials/event-handling'
174174
},
175-
{ text: 'Form Input Bindings', link: '/guide/essentials/forms' },
175+
{ text: 'Binding per gli Input dei Form', link: '/guide/essentials/forms' },
176176
{
177-
text: 'Lifecycle Hooks',
177+
text: 'Gli Hook del Ciclo di Vita',
178178
link: '/guide/essentials/lifecycle'
179179
},
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' },
182182
{
183-
text: 'Components Basics',
183+
text: 'Nozioni base sui Componenti',
184184
link: '/guide/essentials/component-basics'
185185
}
186186
]
187187
},
188188
{
189-
text: 'Components In-Depth',
189+
text: 'I Componenti nel dettaglio',
190190
items: [
191191
{
192-
text: 'Registration',
192+
text: 'La Registrazione',
193193
link: '/guide/components/registration'
194194
},
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' },
198198
{
199-
text: 'Fallthrough Attributes',
199+
text: 'Gli Attributi Trasferiti (Fallthrough)',
200200
link: '/guide/components/attrs'
201201
},
202-
{ text: 'Slots', link: '/guide/components/slots' },
202+
{ text: 'Gli Slot', link: '/guide/components/slots' },
203203
{
204204
text: 'Provide / inject',
205205
link: '/guide/components/provide-inject'
206206
},
207207
{
208-
text: 'Async Components',
208+
text: 'I Componenti Asincroni',
209209
link: '/guide/components/async'
210210
}
211211
]
212212
},
213213
{
214-
text: 'Reusability',
214+
text: 'La Riutilizzabilità',
215215
items: [
216216
{
217-
text: 'Composables',
217+
text: 'I Composables',
218218
link: '/guide/reusability/composables'
219219
},
220220
{
221-
text: 'Custom Directives',
221+
text: 'Le Direttive Personalizzate',
222222
link: '/guide/reusability/custom-directives'
223223
},
224-
{ text: 'Plugins', link: '/guide/reusability/plugins' }
224+
{ text: 'I Plugin', link: '/guide/reusability/plugins' }
225225
]
226226
},
227227
{
228-
text: 'Built-in Components',
228+
text: 'I Componenti nativi',
229229
items: [
230230
{ text: 'Transition', link: '/guide/built-ins/transition' },
231231
{
@@ -238,18 +238,18 @@ export const sidebar: ThemeConfig['sidebar'] = {
238238
]
239239
},
240240
{
241-
text: 'Scaling Up',
241+
text: 'Scalabilità per progetti complessi',
242242
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' },
246246
{
247-
text: 'State Management',
247+
text: 'La Gestione dello Stato',
248248
link: '/guide/scaling-up/state-management'
249249
},
250-
{ text: 'Testing', link: '/guide/scaling-up/testing' },
250+
{ text: 'I Test nel dettaglio', link: '/guide/scaling-up/testing' },
251251
{
252-
text: 'Server-Side Rendering (SSR)',
252+
text: 'Il Rendering Server-Side (SSR)',
253253
link: '/guide/scaling-up/ssr'
254254
}
255255
]
@@ -258,66 +258,66 @@ export const sidebar: ThemeConfig['sidebar'] = {
258258
text: 'Best Practices',
259259
items: [
260260
{
261-
text: 'Production Deployment',
261+
text: 'Rilascio in Produzione',
262262
link: '/guide/best-practices/production-deployment'
263263
},
264264
{
265265
text: 'Performance',
266266
link: '/guide/best-practices/performance'
267267
},
268268
{
269-
text: 'Accessibility',
269+
text: 'Accessibilità Web',
270270
link: '/guide/best-practices/accessibility'
271271
},
272272
{
273-
text: 'Security',
273+
text: 'Sicurezza',
274274
link: '/guide/best-practices/security'
275275
}
276276
]
277277
},
278278
{
279279
text: 'TypeScript',
280280
items: [
281-
{ text: 'Overview', link: '/guide/typescript/overview' },
281+
{ text: 'Panoramica', link: '/guide/typescript/overview' },
282282
{
283-
text: 'TS with Composition API',
283+
text: 'TS con Composition API',
284284
link: '/guide/typescript/composition-api'
285285
},
286286
{
287-
text: 'TS with Options API',
287+
text: 'TS con Options API',
288288
link: '/guide/typescript/options-api'
289289
}
290290
]
291291
},
292292
{
293-
text: 'Extra Topics',
293+
text: 'Argomenti Extra',
294294
items: [
295295
{
296-
text: 'Ways of Using Vue',
296+
text: 'Modi per utilizzare Vue',
297297
link: '/guide/extras/ways-of-using-vue'
298298
},
299299
{
300-
text: 'Composition API FAQ',
300+
text: 'FAQ sulla Composition API',
301301
link: '/guide/extras/composition-api-faq'
302302
},
303303
{
304-
text: 'Reactivity in Depth',
304+
text: 'La Reattività in dettaglio',
305305
link: '/guide/extras/reactivity-in-depth'
306306
},
307307
{
308-
text: 'Rendering Mechanism',
308+
text: 'Il Meccanismo di Rendering',
309309
link: '/guide/extras/rendering-mechanism'
310310
},
311311
{
312-
text: 'Render Functions & JSX',
312+
text: 'Le Render Function e JSX',
313313
link: '/guide/extras/render-function'
314314
},
315315
{
316-
text: 'Vue and Web Components',
316+
text: 'Vue e i Web Components',
317317
link: '/guide/extras/web-components'
318318
},
319319
{
320-
text: 'Animation Techniques',
320+
text: 'Tecniche di Animazione',
321321
link: '/guide/extras/animation'
322322
}
323323
// {
@@ -664,8 +664,8 @@ export default defineConfigWithTheme<ThemeConfig>({
664664
],
665665

666666
editLink: {
667-
repo: 'vuejs/docs',
668-
text: 'Edit this page on GitHub'
667+
repo: 'phox081/docs-it',
668+
text: 'Modifica questa pagina su GitHub'
669669
},
670670

671671
footer: {

0 commit comments

Comments
 (0)