From f9eefa18f08215362f795a5ef9754c5c9b7aa4f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Lasa?= <20603452+vowk1n@users.noreply.github.com> Date: Thu, 26 Mar 2020 18:23:03 +0000 Subject: [PATCH] Fixed Google translations and added Solution (#37488) Also modified the wording to be more cohesive with the rest of the documentation. --- ...nts-within-your-bootstrap-wells.spanish.md | 43 ++++++++++++++----- 1 file changed, 33 insertions(+), 10 deletions(-) diff --git a/curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.spanish.md b/curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.spanish.md index 4277a87c0f..88ea94cc59 100644 --- a/curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.spanish.md +++ b/curriculum/challenges/spanish/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.spanish.md @@ -7,22 +7,26 @@ localeTitle: Agrega elementos dentro de tus cajas de Bootstrap --- ## Descripción -
Ahora se tienen varios elementos div en cada columna de nuestra fila. Estos estan tan profundos como tendremos que ir. Ahora podemos añadir nuestros elementos button. Agrega tres elementos button dentro de cada uno de sus elementos well div.
- -## Instrucciones -
+
+Ya tenemos varios elementos div en cada columna de nuestra fila. No necesitamos ahondar más. Ahora podemos añadir nuestros elementos button. +Anida tres elementos button dentro de cada uno de sus elementos well div.
-## Pruebas +## Instrucciones +
+ +
+ +## Tests
```yml tests: - - text: Anida tres elementos de button dentro de cada uno de tus elementos div con clase well . + - text: Anida tres elementos button dentro de cada uno de tus elementos div con clase well. testString: 'assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, "Nest three button elements within each of your div elements with class well.");' - - text: Debes tener un total de 6 elementos de button . + - text: Deberías tener un total de 6 elementos button. testString: 'assert($("button") && $("button").length > 5, "You should have a total of 6 button elements.");' - - text: Asegúrese de que todos los elementos de sus button tengan etiquetas de cierre. + - text: Asegúrate de que todos los elementos de tus button tengan etiquetas de cierre. testString: 'assert(code.match(/<\/button>/g) && code.match(/ + + + + +
+
+ + + +
+
+ + ``` +