From 803836db66be04f971550a29dd5c0cdff0367bc4 Mon Sep 17 00:00:00 2001 From: "Edwin J. Munguia" <11248069+edwinmunguia@users.noreply.github.com> Date: Sun, 24 Feb 2019 05:54:56 -0600 Subject: [PATCH] Translated remaining English text into Spanish (#23132) --- ...-superpowers-to-the-tweet-embed.spanish.md | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/curriculum/challenges/spanish/01-responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed.spanish.md index 0208e2deac..d32d02bd69 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/css-flexbox/add-flex-superpowers-to-the-tweet-embed.spanish.md @@ -3,40 +3,40 @@ id: 587d78ab367417b2b2512af1 title: Add Flex Superpowers to the Tweet Embed challengeType: 0 videoUrl: '' -localeTitle: Añadir los superpoderes de Flex al visualizador de Tweet +localeTitle: Añadir los superpoderes de Flex al visualizador del Tweet --- -## Description +## Descripción
A la derecha se encuentra un listado de tweets insertados que se utilizará como ejemplo práctico. Algunos de los elementos se verían mejor con un diseño diferente. En el último desafío se utilizó la propiedad display: flex . Aquí lo añadirá a algunas partes en el listado de tweets para comenzar a ajustar su posicionamiento.
-## Instructions +## Instrucciones
Agregue la propiedad css display: flex a los siguientes elementos. Tenga en cuenta que los selectores css ya están configurados: header, .profile-name y .follow-btn del encabezado, .follow-btn del encabezado, el h3 y el h4 del encabezado, el footer , y los .stats en la parte inferior de .stats .
-## Tests +## Pruebas
```yml tests: - - text: Su header debe tener una propiedad de display configurada para flexionar. - testString: 'assert($("header").css("display") == "flex", "Your header should have a display property set to flex.");' - - text: Su footer debe tener una propiedad de display configurada para flexionar. - testString: 'assert($("footer").css("display") == "flex", "Your footer should have a display property set to flex.");' - - text: Tu h3 debería tener una propiedad de display configurada para flexionar. - testString: 'assert($("h3").css("display") == "flex", "Your h3 should have a display property set to flex.");' - - text: Tu h4 debería tener una propiedad de display configurada para flexionar. - testString: 'assert($("h4").css("display") == "flex", "Your h4 should have a display property set to flex.");' - - text: Su .profile-name debe tener una propiedad de display configurada para flexionar. - testString: 'assert($(".profile-name").css("display") == "flex", "Your .profile-name should have a display property set to flex.");' - - text: Su .follow-btn debe tener una propiedad de display configurada para flexionar. - testString: 'assert($(".follow-btn").css("display") == "flex", "Your .follow-btn should have a display property set to flex.");' - - text: Sus .stats deben tener una propiedad de display configurada para flexionar. - testString: 'assert($(".stats").css("display") == "flex", "Your .stats should have a display property set to flex.");' + - text: Tu header debe tener la propiedad display configurada para flexionar. + testString: 'assert($("header").css("display") == "flex", "Tu header debería tener la propiedad display establecida como flex.");' + - text: Tu footer debe tener la propiedad display configurada para flexionar. + testString: 'assert($("footer").css("display") == "flex", "Tu footer debería tener la propiedad display establecidad como flex.");' + - text: Tu h3 debe tener la propiedad display configurada para flexionar. + testString: 'assert($("h3").css("display") == "flex", "Tu h3 debería tener la propiedad display establecida como flex.");' + - text: Tu h4 debe tener la propiedad display configurada para flexionar. + testString: 'assert($("h4").css("display") == "flex", "Tu h4 debería tener la propiedad display establecida como flex.");' + - text: Tu .profile-name debe tener la propiedad display configurada para flexionar. + testString: 'assert($(".profile-name").css("display") == "flex", "Tu .profile-name debería tener la propiedad display establecida como flex.");' + - text: Tu .follow-btn debe tener la propiedad display configurada para flexionar. + testString: 'assert($(".follow-btn").css("display") == "flex", "Tu .follow-btn debería tener la propiedad display establecida como flex.");' + - text: Tus .stats deben tener la propiedad display configurada para flexionar. + testString: 'assert($(".stats").css("display") == "flex", "Tus .stats deberían tener la propiedad display establecida como flex.");' ```
-## Challenge Seed +## Semilla del Desafío
@@ -108,11 +108,11 @@ tests:

@ossia

- +
-

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

+

Conozco muchas personas que está en búsqueda del truco que los ayudará a trabajar inteligentemente. Incluso si trabajas inteligentemente, aún tienes que trabajar duro.

1:32 PM - 12 Jan 2018
@@ -122,13 +122,13 @@ tests: 107 Retweets
- 431 Likes + 431 Me gusta
- + - +
@@ -140,10 +140,10 @@ tests:
-## Solution +## Solución
```js -// solution required +// solución requerida ```