Skip to content

Commit fca4773

Browse files
Zitle-Nancycarburo
authored andcommitted
Translate LayoutFooter and LayoutHeader (#160)
1 parent 5df422f commit fca4773

File tree

4 files changed

+30
-32
lines changed

4 files changed

+30
-32
lines changed

content/community/nav.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
1-
- title: Community Resources
1+
- title: Recursos de la comunidad
22
items:
33
- id: support
4-
title: Support
4+
title: Asistencia
55
- id: courses
6-
title: Courses
6+
title: Cursos
77
- id: examples
8-
title: Examples
8+
title: Ejemplos
99
- id: meetups
10-
title: Meetups
10+
title: Encuentros
1111
- id: conferences
12-
title: Conferences
12+
title: Conferencias
1313
- id: articles
14-
title: Articles
14+
title: Artículos
1515
- id: podcasts
1616
title: Podcasts
1717
- id: videos
1818
title: Videos
1919
- id: external-resources
20-
title: External Resources
21-
- title: Tools
20+
title: Recursos externos
21+
- title: Herramientas
2222
items:
2323
- id: debugging-tools
24-
title: Debugging
24+
title: Depuración
2525
- id: component-workbenches
26-
title: Component Workbenches
26+
title: Herramientas de trabajo para componentes
2727
- id: jsx-integrations
28-
title: JSX Integrations
28+
title: Integraciones de JSX
2929
- id: starter-kits
30-
title: Starter Kits
30+
title: Kits de inicio
3131
- id: routing
32-
title: Routing
32+
title: Enrutamiento
3333
- id: model-management
34-
title: Model Management
34+
title: Gestión de modelos
3535
- id: data-fetching
36-
title: Data Fetching
36+
title: Obtención de datos
3737
- id: testing
38-
title: Testing
38+
title: Pruebas
3939
- id: ui-components
40-
title: UI Components
40+
title: Componentes de IU
4141
- id: misc
42-
title: Miscellaneous
42+
title: Miscelánea

src/components/LayoutFooter/Footer.js

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
6060
},
6161
}}>
6262
<FooterNav layoutHasSidebar={layoutHasSidebar}>
63-
<MetaTitle onDark={true}>Docs</MetaTitle>
63+
<MetaTitle onDark={true}>Documentación</MetaTitle>
6464
{sectionListDocs.map(section => {
6565
const defaultItem = section.items[0];
6666
return (
@@ -73,7 +73,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
7373
})}
7474
</FooterNav>
7575
<FooterNav layoutHasSidebar={layoutHasSidebar}>
76-
<MetaTitle onDark={true}>Channels</MetaTitle>
76+
<MetaTitle onDark={true}>Canales</MetaTitle>
7777
<ExternalFooterLink
7878
href="https://github.com/facebook/react"
7979
target="_blank"
@@ -90,19 +90,19 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
9090
href="https://discuss.reactjs.org"
9191
target="_blank"
9292
rel="noopener">
93-
Discussion Forum
93+
Foro de discusión
9494
</ExternalFooterLink>
9595
<ExternalFooterLink
9696
href="https://discord.gg/0ZcbPKXt5bZjGY5n"
9797
target="_blank"
9898
rel="noopener">
99-
Reactiflux Chat
99+
Chat de Reactiflux
100100
</ExternalFooterLink>
101101
<ExternalFooterLink
102102
href="https://dev.to/t/react"
103103
target="_blank"
104104
rel="noopener">
105-
DEV Community
105+
Comunidad DEV
106106
</ExternalFooterLink>
107107
<ExternalFooterLink
108108
href="https://www.facebook.com/react"
@@ -118,7 +118,7 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
118118
</ExternalFooterLink>
119119
</FooterNav>
120120
<FooterNav layoutHasSidebar={layoutHasSidebar}>
121-
<MetaTitle onDark={true}>Community</MetaTitle>
121+
<MetaTitle onDark={true}>Comunidad</MetaTitle>
122122
{sectionListCommunity.map(section => (
123123
<FooterLink
124124
to={`/community/${section.items[0].id}.html`}
@@ -128,12 +128,10 @@ const Footer = ({layoutHasSidebar = false}: {layoutHasSidebar: boolean}) => (
128128
))}
129129
</FooterNav>
130130
<FooterNav layoutHasSidebar={layoutHasSidebar}>
131-
<MetaTitle onDark={true}>More</MetaTitle>
131+
<MetaTitle onDark={true}>Más</MetaTitle>
132132
<FooterLink to="/tutorial/tutorial.html">Tutorial</FooterLink>
133133
<FooterLink to="/blog/">Blog</FooterLink>
134-
<FooterLink to="/acknowledgements.html">
135-
Acknowledgements
136-
</FooterLink>
134+
<FooterLink to="/acknowledgements.html">Agradecimientos</FooterLink>
137135
<ExternalFooterLink
138136
href="https://facebook.github.io/react-native/"
139137
target="_blank"

src/components/LayoutHeader/DocSearch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class DocSearch extends Component<{}, State> {
104104
}}
105105
id="algolia-doc-search"
106106
type="search"
107-
placeholder="Search docs"
107+
placeholder="Buscar en la documentación"
108108
aria-label="Search docs"
109109
/>
110110
</form>

src/components/LayoutHeader/Header.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ const Header = ({location}: {location: Location}) => (
115115
}}>
116116
<HeaderLink
117117
isActive={location.pathname.includes('/docs/')}
118-
title="Docs"
118+
title="Documentación"
119119
to="/docs/getting-started.html"
120120
/>
121121
<HeaderLink
@@ -125,7 +125,7 @@ const Header = ({location}: {location: Location}) => (
125125
/>
126126
<HeaderLink
127127
isActive={location.pathname.includes('/community/')}
128-
title="Community"
128+
title="Comunidad"
129129
to="/community/support.html"
130130
/>
131131
<HeaderLink

0 commit comments

Comments
 (0)