1
1
const sidebar = {
2
2
cookbook : [
3
3
{
4
- title : 'Cookbook ' ,
4
+ title : 'Livro de Receitas ' ,
5
5
collapsable : false ,
6
6
children : [ '/cookbook/' , '/cookbook/editable-svg-icons' ]
7
7
}
8
8
] ,
9
9
guide : [
10
10
{
11
- title : 'Essentials ' ,
11
+ title : 'Essenciais ' ,
12
12
collapsable : false ,
13
13
children : [
14
14
'/guide/installation' ,
@@ -26,7 +26,7 @@ const sidebar = {
26
26
]
27
27
} ,
28
28
{
29
- title : 'Components In-Depth ' ,
29
+ title : 'Componentes em Detalhes ' ,
30
30
collapsable : false ,
31
31
children : [
32
32
'/guide/component-registration' ,
@@ -41,7 +41,7 @@ const sidebar = {
41
41
]
42
42
} ,
43
43
{
44
- title : 'Transitions & Animation ' ,
44
+ title : 'Transições & Animações ' ,
45
45
collapsable : false ,
46
46
children : [
47
47
'/guide/transitions-overview' ,
@@ -51,7 +51,7 @@ const sidebar = {
51
51
]
52
52
} ,
53
53
{
54
- title : 'Reusability & Composition ' ,
54
+ title : 'Reuso & Composição ' ,
55
55
collapsable : false ,
56
56
children : [
57
57
'/guide/mixins' ,
@@ -62,19 +62,19 @@ const sidebar = {
62
62
]
63
63
} ,
64
64
{
65
- title : 'Advanced Guides ' ,
65
+ title : 'Guias Avançados ' ,
66
66
collapsable : false ,
67
67
children : [
68
68
{
69
- title : 'Reactivity ' ,
69
+ title : 'Reatividade ' ,
70
70
children : [
71
71
'/guide/reactivity' ,
72
72
'/guide/reactivity-fundamentals' ,
73
73
'/guide/reactivity-computed-watchers'
74
74
]
75
75
} ,
76
76
{
77
- title : 'Composition API' ,
77
+ title : 'API de Composição ' ,
78
78
children : [
79
79
'/guide/composition-api-introduction' ,
80
80
'/guide/composition-api-setup' ,
@@ -88,7 +88,7 @@ const sidebar = {
88
88
]
89
89
} ,
90
90
{
91
- title : 'Tooling ' ,
91
+ title : 'Ferramentas ' ,
92
92
collapsable : false ,
93
93
children : [
94
94
'/guide/single-file-component' ,
@@ -98,12 +98,12 @@ const sidebar = {
98
98
]
99
99
} ,
100
100
{
101
- title : 'Scaling Up ' ,
101
+ title : 'Escalonando ' ,
102
102
collapsable : false ,
103
103
children : [ '/guide/routing' , '/guide/state-management' , '/guide/ssr' ]
104
104
} ,
105
105
{
106
- title : 'Accessibility ' ,
106
+ title : 'Acessibilidade ' ,
107
107
collapsable : false ,
108
108
children : [
109
109
'/guide/a11y-basics' ,
@@ -113,7 +113,7 @@ const sidebar = {
113
113
]
114
114
} ,
115
115
{
116
- title : 'Migration Guide ' ,
116
+ title : 'Guia de Migração ' ,
117
117
collapsable : true ,
118
118
children : [
119
119
'/guide/migration/introduction' ,
@@ -142,7 +142,7 @@ const sidebar = {
142
142
]
143
143
} ,
144
144
{
145
- title : 'Contribute to the Docs' ,
145
+ title : 'Contribua para o Docs' ,
146
146
collapsable : true ,
147
147
children : [
148
148
'/guide/contributing/writing-guide' ,
@@ -156,7 +156,7 @@ const sidebar = {
156
156
'/api/application-api' ,
157
157
'/api/global-api' ,
158
158
{
159
- title : 'Options ' ,
159
+ title : 'Opções ' ,
160
160
path : '/api/options-api' ,
161
161
collapsable : false ,
162
162
children : [
@@ -174,7 +174,7 @@ const sidebar = {
174
174
'/api/special-attributes' ,
175
175
'/api/built-in-components.md' ,
176
176
{
177
- title : 'Reactivity API' ,
177
+ title : 'API de Reatividade ' ,
178
178
path : '/api/reactivity-api' ,
179
179
collapsable : false ,
180
180
children : [
@@ -187,7 +187,7 @@ const sidebar = {
187
187
] ,
188
188
examples : [
189
189
{
190
- title : 'Examples ' ,
190
+ title : 'Exemplos ' ,
191
191
collapsable : false ,
192
192
children : [
193
193
'/examples/markdown' ,
@@ -206,7 +206,7 @@ const sidebar = {
206
206
207
207
module . exports = {
208
208
title : 'Vue.js' ,
209
- description : 'Vue.js - The Progressive JavaScript Framework ' ,
209
+ description : 'Vue.js - O Framework JavaScript Progressivo ' ,
210
210
head : [
211
211
[
212
212
'link' ,
@@ -271,62 +271,62 @@ module.exports = {
271
271
logo : '/logo.png' ,
272
272
nav : [
273
273
{
274
- text : 'Docs ' ,
275
- ariaLabel : 'Documentation Menu ' ,
274
+ text : 'Aprenda ' ,
275
+ ariaLabel : 'Documentação ' ,
276
276
items : [
277
277
{
278
- text : 'Guide ' ,
278
+ text : 'Guia ' ,
279
279
link : '/guide/introduction'
280
280
} ,
281
281
{
282
- text : 'Migration Guide ' ,
282
+ text : 'Guia de Migração ' ,
283
283
link : '/guide/migration/introduction'
284
284
} ,
285
285
{
286
- text : 'Style Guide ' ,
286
+ text : 'Guia de Estilos ' ,
287
287
link : '/style-guide/'
288
288
} ,
289
289
{
290
- text : 'Cookbook ' ,
290
+ text : 'Livro de Receitas ' ,
291
291
link : '/cookbook/'
292
292
} ,
293
293
{
294
- text : 'Examples ' ,
294
+ text : 'Exemplos ' ,
295
295
link : '/examples/markdown'
296
296
}
297
297
]
298
298
} ,
299
299
{
300
- text : 'API Reference ' ,
300
+ text : 'Referência da API ' ,
301
301
link : '/api/'
302
302
} ,
303
303
{
304
- text : 'Ecosystem ' ,
304
+ text : 'Ecossistema ' ,
305
305
items : [
306
306
{
307
- text : 'Community ' ,
308
- ariaLabel : 'Community Menu' ,
307
+ text : 'Comunidade ' ,
308
+ ariaLabel : 'Menu de Comunidade ' ,
309
309
items : [
310
310
{
311
- text : 'Team ' ,
311
+ text : 'Equipe ' ,
312
312
link : '/community/team/'
313
313
} ,
314
314
{
315
- text : 'Partners ' ,
315
+ text : 'Parceiros ' ,
316
316
link : '/community/partners'
317
317
} ,
318
318
{
319
- text : 'Join ' ,
319
+ text : 'Junte-se ' ,
320
320
link : '/community/join/'
321
321
} ,
322
322
{
323
- text : 'Themes ' ,
323
+ text : 'Temas ' ,
324
324
link : '/community/themes/'
325
325
}
326
326
]
327
327
} ,
328
328
{
329
- text : 'Official Projects ' ,
329
+ text : 'Projetos Oficiais ' ,
330
330
items : [
331
331
{
332
332
text : 'Vue Router' ,
@@ -358,28 +358,28 @@ module.exports = {
358
358
]
359
359
} ,
360
360
{
361
- text : 'Support Vue' ,
361
+ text : 'Suporte Vue' ,
362
362
link : '/support-vuejs/' ,
363
363
items : [
364
364
{
365
- text : 'One-time Donations ' ,
365
+ text : 'Doações únicas ' ,
366
366
link : '/support-vuejs/#one-time-donations'
367
367
} ,
368
368
{
369
- text : 'Recurring Pledges ' ,
369
+ text : 'Ajuda Recorrente ' ,
370
370
link : '/support-vuejs/#recurring-pledges'
371
371
} ,
372
372
{
373
- text : 'T-Shirt Shop ' ,
373
+ text : 'Loja de Camisetas ' ,
374
374
link : 'https://vue.threadless.com/'
375
375
}
376
376
]
377
377
}
378
378
] ,
379
379
repo : 'vuejs/docs-next' ,
380
380
editLinks : false ,
381
- editLinkText : 'Edit this on GitHub!' ,
382
- lastUpdated : 'Last updated ' ,
381
+ editLinkText : 'Edite isto no GitHub!' ,
382
+ lastUpdated : 'Atualizado pela última vez ' ,
383
383
docsDir : 'src' ,
384
384
sidebarDepth : 2 ,
385
385
sidebar : {
@@ -393,7 +393,8 @@ module.exports = {
393
393
smoothScroll : false ,
394
394
algolia : {
395
395
indexName : 'vuejs-v3' ,
396
- apiKey : 'bc6e8acb44ed4179c30d0a45d6140d3f'
396
+ apiKey : 'bc6e8acb44ed4179c30d0a45d6140d3f' ,
397
+ placeholder : 'Buscar na documentação'
397
398
}
398
399
} ,
399
400
plugins : [
@@ -403,8 +404,8 @@ module.exports = {
403
404
serviceWorker : true ,
404
405
updatePopup : {
405
406
'/' : {
406
- message : 'New content is available .' ,
407
- buttonText : 'Refresh '
407
+ message : 'Novo conteúdo disponível .' ,
408
+ buttonText : 'Atualizar '
408
409
}
409
410
}
410
411
}
0 commit comments