Skip to content

Commit 5355444

Browse files
Translation: Hello world
1 parent c990157 commit 5355444

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

content/docs/hello-world.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ El más pequeño de los ejemplos de React se ve así:
1010

1111
```js
1212
ReactDOM.render(
13-
<h1>Hola, mundo!</h1>,
13+
<h1>Hello, world!</h1>,
1414
document.getElementById('root')
1515
);
1616
```
1717

18-
Este muestra un encabezado con el texto "Hola, mundo!" en la página.
18+
Este muestra un encabezado con el texto "Hello, world!" en la página.
1919

2020
[](codepen://hello-world)
2121

@@ -29,21 +29,20 @@ En esta guía, examinaremos los componentes básicos de las aplicaciones React:
2929
>
3030
>Esta guía está diseñada para personas que prefieren **aprender los conceptos paso a paso**. Si tu prefieres aprender haciendo, revisa nuestro [tutorial práctico](/tutorial/tutorial.html). Encontrarás que esta guía y el tutorial se complementan el uno al otro.
3131
32-
This is the first chapter in a step-by-step guide about main React concepts. You can find a list of all its chapters in the navigation sidebar. If you're reading this from a mobile device, you can access the navigation by pressing the button in the bottom right corner of your screen.
32+
Este es el primer capítulo en una guía paso a paso sobre los principales conceptos de React. Puedes encontrar una lista de todos los capítulos en la barra de navigación lateral. Si estás leyendo esto desde un dispositivo móvil, puedes acceder a la navegación presionando el botón en la esquina inferior derecha de tu pantalla.
3333

34-
Every chapter in this guide builds on the knowledge introduced in earlier chapters. **You can learn most of React by reading the “Main Concepts” guide chapters in the order they appear in the sidebar.** For example, [“Introducing JSX”](/docs/introducing-jsx.html) is the next chapter after this one.
34+
Cada capítulo en esta guía se construye en base al conocimiento presentado en capítulos anteriores. **Tu puedes aprender la mayoría de React leyendo la guía de conceptos "Conceptos Principales" en el orden que aparecen en la barra lateral.** Por ejemplo, ["Introducción a JSX”](/docs/introducing-jsx.html) es el siguiente capítulo después de este.
3535

36-
## Knowledge Level Assumptions
36+
## Suposiciones del nivel de conocimiento
3737

38-
React is a JavaScript library, and so we'll assume you have a basic understanding of the JavaScript language. **If you don't feel very confident, we recommend [going through a JavaScript tutorial](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript) to check your knowledge level** and enable you to follow along this guide without getting lost. It might take you between 30 minutes and an hour, but as a result you won't have to feel like you're learning both React and JavaScript at the same time.
38+
React es una biblioteca Javascript, y vamos a asumir que tienes un entendimiento básico del lenguaje Javascript. **Si no te sientes muy seguro, te recomendamos [hacer un tutorial de Javascript](https://developer.mozilla.org/es/docs/Web/JavaScript/Una_re-introducci%C3%B3n_a_JavaScript) para comprobar tu nivel de conocimiento** y permitirte seguir adelante con esta guía sin perderte. Te debería tomar entre 30 minutos y una hora, and so we'll assume you have a basic understanding of the JavaScript language. **If you don't feel very confident, we recommend [going through a JavaScript tutorial](https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript) to check your knowledge level** and enable you to follow along this guide without getting lost. It might take you between 30 minutes and an hour, pero como resultado, no tendrás que sentir que estás aprendiendo React y JavaScript al mismo tiempo.
3939

40-
>Note
40+
>Nota
4141
>
42-
>This guide occasionally uses some of the newer JavaScript syntax in the examples. If you haven't worked with JavaScript in the last few years, [these three points](https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c) should get you most of the way.
42+
> Esta guía ocasionalmente usa la nueva syntaxis de JavaScript en los ejemplos. Si no has trabajado con JavaScript en los últimos años, [estos tres puntos](https://gist.github.com/gaearon/683e676101005de0add59e8bb345340c) son un buen resumen.
4343
44+
## Empecemos!
4445

45-
## Let's Get Started!
46-
47-
Keep scrolling down, and you'll find the link to the [next chapter of this guide](/docs/introducing-jsx.html) right before the website footer.
46+
Sigue bajando, y encontraras el link al [siguiente capítulo de esta guía](/docs/introducing-jsx.html) justo antes del pie de la página.
4847

4948

0 commit comments

Comments
 (0)