From 7e69c85e16352fd387f60801adb3b0e668f8a1bb Mon Sep 17 00:00:00 2001 From: Carlos Alfaro Date: Sun, 3 Feb 2019 09:03:59 -0800 Subject: [PATCH] Updated test text to Spanish (#19690) --- .../create-a-media-query.spanish.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md b/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md index 9db65221b3..b658430964 100644 --- a/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md +++ b/curriculum/challenges/spanish/01-responsive-web-design/responsive-web-design-principles/create-a-media-query.spanish.md @@ -18,9 +18,9 @@ localeTitle: Crear una consulta de medios ```yml tests: - text: Su elemento p debe tener el font-size de font-size de 10 px cuando la height del dispositivo sea menor o igual a 800 px. - testString: 'assert($("p").css("font-size") == "10px", "Your p element should have the font-size of 10px when the device height is less than or equal to 800px.");' + testString: 'assert($("p").css("font-size") == "10px", "Su elemento p debe tener el font-size de font-size de 10 px cuando la height del dispositivo sea menor o igual a 800 px.");' - text: Declare una consulta @media para dispositivos con una height menor o igual a 800px. - testString: 'assert(code.match(/@media\s*?\(\s*?max-height\s*?:\s*?800px\s*?\)/g), "Declare a @media query for devices with a height less than or equal to 800px.");' + testString: 'assert(code.match(/@media\s*?\(\s*?max-height\s*?:\s*?800px\s*?\)/g), "Declare una consulta @media para dispositivos con una height menor o igual a 800px.");' ```