Skip to content

Commit ff032d9

Browse files
authored
translate installation (beta docs) (#508)
1 parent b474ad6 commit ff032d9

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

Diff for: beta/src/pages/learn/installation.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
2-
title: Installation
2+
title: Instalación
33
---
44

55
<Intro>
66

7-
React has been designed from the start for gradual adoption, and you can use as little or as much React as you need. Whether you want to get a taste of React, add some interactivity to an HTML page, or start a complex React-powered app, this section will help you get started.
7+
React se ha diseñado desde un inicio para una adopción gradual, así puedes usar tan poco o mucho de React como necesites. Ya sea que quieras probar de qué va React, agregar interactividad a una página HTML o crear una aplicación compleja con React, los enlaces de esta sección te ayudarán a comenzar.
88

99
</Intro>
1010

1111
<YouWillLearn isChapter={true}>
1212

13-
* [How to add React to an HTML page](/learn/add-react-to-a-website)
14-
* [How to start a standalone React project](/learn/start-a-new-react-project)
15-
* [How to set up your editor](/learn/editor-setup)
16-
* [How to install React Developer Tools](/learn/react-developer-tools)
13+
* [Cómo añadir React a una página HTML](/learn/add-react-to-a-website)
14+
* [Cómo iniciar un proyecto completo en React](/learn/start-a-new-react-project)
15+
* [Cómo configurar tu editor](/learn/editor-setup)
16+
* [Cómo instalar las Herramientas de Desarrollo de React](/learn/react-developer-tools)
1717

1818
</YouWillLearn>
1919

20-
## Try React {/*try-react*/}
20+
## Prueba React {/*try-react*/}
2121

22-
You don't need to install anything to play with React. Try editing this sandbox!
22+
No necesitas instalar nada para jugar con React. ¡Prueba editar este ejemplo de código!
2323

2424
<Sandpack>
2525

@@ -35,21 +35,21 @@ export default function App() {
3535

3636
</Sandpack>
3737

38-
We use sandboxes throughout these docs as teaching aids. Sandboxes can help familiarize you with how React works and help you decide if React is right for you. Outside of the React documentation, there are many online sandboxes that support React: for example, [CodeSandbox](https://codesandbox.io/s/new), [Stackblitz](https://stackblitz.com/fork/react), or [CodePen](
38+
Utilizamos ejemplos interactivos de código (*sandboxes*) a lo largo de esta documentación como ayuda a la enseñanza. Estos ejemplos te ayudan a familiarizarte con la forma en que React funciona y te ayudarán a decidir si React es lo adecuado para ti. Fuera de la documentación de React, también existen muchos *sandboxes* en línea que permiten usar React: por ejemplo, [CodeSandbox](https://codesandbox.io/s/new), [Stackblitz](https://stackblitz.com/fork/react), o [CodePen](
3939
https://codepen.io/pen/?template=wvdqJJm).
4040

41-
### Try React locally {/*try-react-locally*/}
41+
### Prueba React localmente {/*try-react-locally*/}
4242

43-
To try React locally on your computer, [download this HTML page](https://raw.githubusercontent.com/reactjs/reactjs.org/main/static/html/single-file-example.html). Open it in your editor and in your browser!
43+
Para probar React de forma local en tu computadora, [descarga esta página HTML](https://raw.githubusercontent.com/reactjs/reactjs.org/main/static/html/single-file-example.html). ¡Ábrela en tu editor y en tu navegador!
4444

45-
## Add React to a page {/*add-react-to-a-page*/}
45+
## Añade React a una página {/*add-react-to-a-page*/}
4646

47-
If you're working with an existing site and just need to add a little bit of React, you can [add React with a script tag.](/learn/add-react-to-a-website)
47+
Si estás trabajando con un sitio existente y solo necesitas añadir un poco de React, puedes [añadir React con una etiqueta script](/learn/add-react-to-a-website).
4848

49-
## Start a React project {/*start-a-react-project*/}
49+
## Iniciar un proyecto de React {/*start-a-react-project*/}
5050

51-
If you're ready to [start a standalone project](/learn/start-a-new-react-project) with React, you can set up a minimal toolchain for a pleasant developer experience. You can also start with a framework that makes a lot of decisions for you out of the box.
51+
Si estás listo para [iniciar un proyecto completamente](/learn/start-a-new-react-project) en React, puedes configurar una herramienta mínima que provea una agradable experiencia de desarrollo. También puedes comenzar con un framework que tome más decisiones por ti desde un inicio.
5252

53-
## Next steps {/*next-steps*/}
53+
## Próximos pasos {/*next-steps*/}
5454

55-
Where you start depends on how you like to learn, what you need to accomplish, and where you want to go next! Why not read [Thinking in React](/learn/thinking-in-react)--our introductory tutorial? Or you can jump to [Describing the UI](/learn/describing-the-ui) to play with more examples and learn each topic step by step. There is no wrong way to learn React!
55+
¡Por dónde comiences depende de cómo te gusta aprender, qué necesitas lograr y adónde quieres dirigirte luego! ¿Por qué no leer [Pensar en React](/learn/thinking-in-react)--nuestro tutorial introductorio? O puedes saltar a [Describir la IU](/learn/describing-the-ui) para jugar con más ejemplos y aprender cada tema paso a paso. ¡No hay una forma incorrecta de aprender React!

0 commit comments

Comments
 (0)