File tree 3 files changed +79
-1
lines changed
3 files changed +79
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,11 @@ module.exports = {
22
22
lang : 'fr-FR' ,
23
23
title : 'Léon Docs' ,
24
24
description : 'Documentation de Léon - Documentation principale de votre assistant personnel open source Léon.'
25
+ } ,
26
+ '/pt-BR/' : {
27
+ lang : 'pt-BR' ,
28
+ title : 'Leon Docs' ,
29
+ description : 'Documentação do Leon - Documentação principal do seu assistente pessoal open-source Leon.'
25
30
}
26
31
} ,
27
32
themeConfig : {
@@ -32,7 +37,8 @@ module.exports = {
32
37
editLinks : true ,
33
38
locales : {
34
39
'/' : require ( './config.en-US' ) ,
35
- '/fr-FR/' : require ( './config.fr-FR' )
40
+ '/fr-FR/' : require ( './config.fr-FR' ) ,
41
+ '/pt-BR/' : require ( './config.pt-BR' )
36
42
}
37
43
} ,
38
44
plugins : {
Original file line number Diff line number Diff line change
1
+
2
+ module . exports = {
3
+ selectText : 'Idiomas' ,
4
+ label : 'Português (BR)' ,
5
+ editLinkText : 'Edite esta página no GitHub' ,
6
+ nav : require ( './nav/nav.pt-BR.js' ) ,
7
+ sidebar : {
8
+ '/pt-BR/how-to/' : [
9
+ {
10
+ title : 'Manual' ,
11
+ collapsable : false ,
12
+ children : [
13
+ ''
14
+ ]
15
+ }
16
+ ] ,
17
+ '/pt-BR/' : [
18
+ {
19
+ title : 'Guia' ,
20
+ collapsable : false ,
21
+ children : [
22
+ '' ,
23
+ 'glossary' ,
24
+ 'architecture' ,
25
+ 'configuration' ,
26
+ 'offline' ,
27
+ 'bridges' ,
28
+ 'clients' ,
29
+ 'packages-modules' ,
30
+ 'collaborative-logger' ,
31
+ 'scripts' ,
32
+ 'tests'
33
+ ]
34
+ }
35
+ ]
36
+ }
37
+ } ;
Original file line number Diff line number Diff line change
1
+ module . exports = [
2
+ {
3
+ text : 'Guia' ,
4
+ link : '/pt-BR/'
5
+ } ,
6
+ {
7
+ text : 'Manual' ,
8
+ link : '/pt-BR/how-to/'
9
+ } ,
10
+ {
11
+ text : 'Links' ,
12
+ items : [
13
+ { text : 'Website' , link : 'https://getleon.ai' } ,
14
+ { text : 'Fique Ligado' , items : [
15
+ { text : 'Blog' , link : 'https://blog.getleon.ai' } ,
16
+ { text : 'Roadmap' , link : 'https://roadmap.getleon.ai' } ,
17
+ { text : 'Changelog' , link : 'https://changelog.getleon.ai' } ,
18
+ { text : '#LeonAI' , link : 'https://twitter.com/hashtag/LeonAI' }
19
+ ]
20
+ } ,
21
+ { text : 'Contribuindo' , items : [
22
+ { text : 'Contribua' , link : 'https://github.com/leon-ai/leon/blob/develop/.github/CONTRIBUTING.md' }
23
+ ]
24
+ } ,
25
+ { text : 'Ajuda' , items : [
26
+ { text : 'Issues' , link : 'https://github.com/leon-ai/leon/issues' }
27
+ ]
28
+ }
29
+ ] ,
30
+ } ,
31
+ {
32
+ text : 'Faça uma Doação' ,
33
+ link : 'https://donate.getleon.ai'
34
+ }
35
+ ] ;
You can’t perform that action at this time.
0 commit comments