Skip to content

Commit 126ab7f

Browse files
authored
docs(ptbr): add vuex translations for vuex 4 (#1880)
* Translated to Portuguese BR Added config menu * Translation fixes
1 parent 30a1ef8 commit 126ab7f

20 files changed

+2450
-0
lines changed

docs/.vitepress/config.js

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ module.exports = {
88
lang: 'en-US',
99
title: 'Vuex',
1010
description: 'Centralized State Management for Vue.js'
11+
},
12+
'/ptbr/': {
13+
lang: 'pt-BR',
14+
title: 'Vuex',
15+
description: 'Gerenciamento de Estado Centralizado para Vue.js'
1116
}
1217
},
1318

@@ -80,6 +85,58 @@ module.exports = {
8085
]
8186
}
8287
]
88+
},
89+
'/ptbr/': {
90+
nav: [
91+
{ text: 'Guia', link: '/ptbr/guide/' },
92+
{ text: 'Referência da API', link: '/ptbr/api/' },
93+
{ text: 'Notas de Lançamento', link: 'https://github.com/vuejs/vuex/releases' },
94+
{
95+
text: 'v4.x',
96+
items: [
97+
{ text: 'v3.x', link: 'https://vuex.vuejs.org/ptbr/' }
98+
]
99+
}
100+
],
101+
sidebar: [
102+
{
103+
text: 'Introdução',
104+
children: [
105+
{ text: 'O que é Vuex?', link: '/ptbr/' },
106+
{ text: 'Instalação', link: '/ptbr/installation' },
107+
{ text: 'Começando', link: '/ptbr/guide/' }
108+
]
109+
},
110+
{
111+
text: 'Conceitos Básicos',
112+
children: [
113+
{ text: 'Estado', link: '/ptbr/guide/state' },
114+
{ text: 'Getters', link: '/ptbr/guide/getters' },
115+
{ text: 'Mutações', link: '/ptbr/guide/mutations' },
116+
{ text: 'Ações', link: '/ptbr/guide/actions' },
117+
{ text: 'Módulos', link: '/ptbr/guide/modules' }
118+
]
119+
},
120+
{
121+
text: 'Avançado',
122+
children: [
123+
{ text: 'Estrutura da Aplicação', link: '/ptbr/guide/structure' },
124+
{ text: 'Composition API', link: '/ptbr/guide/composition-api' },
125+
{ text: 'Plugins', link: '/ptbr/guide/plugins' },
126+
{ text: 'Modo Strict', link: '/ptbr/guide/strict' },
127+
{ text: 'Manipulação de Formulários', link: '/ptbr/guide/forms' },
128+
{ text: 'Testando', link: '/ptbr/guide/testing' },
129+
{ text: 'Hot Reloading', link: '/ptbr/guide/hot-reload' },
130+
{ text: 'Suporte ao TypeScript', link: '/ptbr/guide/typescript-support' },
131+
]
132+
},
133+
{
134+
text: 'Guia de Migração',
135+
children: [
136+
{ text: 'Migrando do 3.x para 4.0', link: '/ptbr/guide/migrating-to-4-0-from-3-x' }
137+
]
138+
}
139+
]
83140
}
84141
}
85142
}

0 commit comments

Comments
 (0)