Skip to content

Commit ad69624

Browse files
authored
Merge pull request #278 from reactjs/sync-519a3aec
Sync with reactjs.org @ 519a3ae
2 parents 7b7b1be + 2fb6890 commit ad69624

File tree

8 files changed

+22
-7
lines changed

8 files changed

+22
-7
lines changed

content/blog/2019-08-15-new-react-devtools.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ git clone https://github.com/facebook/react-devtools
6060

6161
cd react-devtools
6262

63+
# Checkout the previous release branch
64+
git checkout v3
65+
6366
# Install dependencies and build the unpacked extension
6467
yarn install
6568
yarn build:extension

content/community/conferences.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,12 @@ February 27 & 28, 2020 in Sydney, Australia
8080
### Render-Atlanta 2020 {#render-atlanta-2020}
8181
May 4-6, 2020. Atlanta, GA, USA.
8282

83-
[Website](https://renderatl.com)
83+
[Website](https://renderatl.com) - [Twitter](https://twitter.com/renderATL) - [Instagram](https://www.instagram.com/renderatl/) - [Facebook](https://www.facebook.com/renderatl/)
84+
85+
### React Finland 2020 {#react-finland-2020}
86+
May 26-29 in Helsinki, Finland
87+
88+
[Website](https://react-finland.fi/) - [Twitter](https://twitter.com/ReactFinland)
8489

8590
### React Next 2020 {#react-next-2020}
8691
June 15, 2020. Tel Aviv, Israel.

content/community/courses.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ permalink: community/courses.html
88

99
## Cursos gratuitos {#free-courses}
1010

11+
- [Glitch: React Starter Kit](https://glitch.com/culture/react-starter-kit/) - Un curso en video gratuito en 5 partes con ejemplos de código interactivos que te ayudarán a aprender React.
12+
1113
- [Codecademy: React 101](https://www.codecademy.com/learn/react-101) - El curso introductorio a React de Codeacademy.
1214

1315
- [Egghead.io: Start Learning React](https://egghead.io/courses/start-learning-react) - Esta serie explora los fundamentos básicos de React para que empieces.

content/docs/codebase-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Su código fuente está ubicado en [`packages/react-reconciler`](https://github.
217217

218218
### Sistema de Eventos {#event-system}
219219

220-
React implementa un sistema de eventos sintético que es agnóstico de los renderizadores y funciona con React DOM y React Native. Su código fuente está localizado en [`packages/events`](https://github.com/facebook/react/tree/master/packages/events).
220+
React implementa un sistema de eventos sintético que es agnóstico de los renderizadores y funciona con React DOM y React Native. Su código fuente está localizado en [`packages/events`](https://github.com/facebook/react/tree/master/packages/react-events).
221221

222222
Aquí hay un [video con una muestra en profundidad del código](https://www.youtube.com/watch?v=dRo_egw7tBc) (66 mins).
223223

content/docs/render-props.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Un componente con una `render prop` toma una función que devuelve un elemento d
1414
)}/>
1515
```
1616

17-
Algunas bibliotecas que utilizan `render props` son [React Router](https://reacttraining.com/react-router/web/api/Route/render-func) y [Downshift](https://github.com/paypal/downshift).
17+
Algunas bibliotecas que utilizan `render props` son [React Router](https://reacttraining.com/react-router/web/api/Route/render-func), [Downshift](https://github.com/paypal/downshift) y [Formik](https://github.com/jaredpalmer/formik).
1818

1919
En este documento, discutiremos por qué las `render props` son útiles y cómo escribir las tuyas.
2020

content/docs/testing-recipes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ Common testing patterns for React components.
1414
1515
On this page, we will primarily use function components. However, these testing strategies don't depend on implementation details, and work just as well for class components too.
1616

17-
- [Setup/Teardown ](#setup--teardown)
17+
- [Setup/Teardown](#setup--teardown)
1818
- [`act()`](#act)
19+
- [Rendering](#rendering)
1920
- [Data Fetching](#data-fetching)
2021
- [Mocking Modules](#mocking-modules)
2122
- [Events](#events)

content/docs/testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
id: testing
3-
title: Visión general de Pruebas
3+
title: Visión general de pruebas
44
permalink: docs/testing.html
55
redirect_from:
66
- "community/testing.html"
@@ -28,7 +28,7 @@ Diferentes respuestas pueden funcionar para diferentes equipos y diferentes prod
2828

2929
### Herramientas recomendadas {#tools}
3030

31-
**[Jest](https://facebook.github.io/jest/)** Es una biblioteca de JavaScript para ejecución de pruebas que permite acceder al DOM mediante [`jsdom`](/docs/testing-environments.html#mocking-a-rendering-surface). Aunque JSDOM solo se aproxima a como realmente los navegadores web trabajan, usualmente es suficiente para probar los componentes React. Jest brinda una gran velocidad de iteración combinada con potentes funcionalidades como simular [módulos](/docs/testing-environments.html#mocking-modules) y [temporizadores](/docs/testing-environments.html#mocking-timers) esto permite tener mayor control sobre como se ejecuta el código.
31+
**[Jest](https://facebook.github.io/jest/)** Es una biblioteca de JavaScript para ejecución de pruebas que permite acceder al DOM mediante [`jsdom`](/docs/testing-environments.html#mocking-a-rendering-surface). Aunque jsdom solo se aproxima a como realmente los navegadores web trabajan, usualmente es suficiente para probar componentes de React. Jest brinda una gran velocidad de iteración combinada con potentes funcionalidades como simular [módulos](/docs/testing-environments.html#mocking-modules) y [temporizadores](/docs/testing-environments.html#mocking-timers), esto permite tener mayor control sobre como se ejecuta el código.
3232

3333
**[Biblioteca de Pruebas para React](https://testing-library.com/react)** es una biblioteca de utilidades que te ayudan a probar componentes React sin depender de los detalles de su implementación. Este enfoque simplifica la refactorización y también lo empuja hacia las mejores prácticas de accesibilidad, aunque no proporciona una forma de renderizar "superficialmente" un componente sin sus hijos, Jest te permite hacerlo gracias a su funcionalidad para [simular](/docs/testing-recipes.html#mocking-modules).
3434

content/languages.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@
5959
translated_name: हिन्दी
6060
code: hi
6161
status: 0
62+
- name: Húngaro
63+
translated_name: magyar
64+
code: hu
65+
status: 0
6266
- name: Armenio
6367
translated_name: Հայերեն
6468
code: hy
@@ -174,7 +178,7 @@
174178
- name: Vietnamita
175179
translated_name: Tiếng Việt
176180
code: vi
177-
status: 0
181+
status: 1
178182
- name: Chino simplificado
179183
translated_name: 简体中文
180184
code: zh-hans

0 commit comments

Comments
 (0)