From 868fbb07268b2fa2974f8f4b721c88e0b182abf4 Mon Sep 17 00:00:00 2001 From: JURAMOUSE <57018610+JURAMOUSE@users.noreply.github.com> Date: Mon, 23 Dec 2019 10:46:03 +0400 Subject: [PATCH] russian translate (#37546) --- .../convert-json-data-to-html.russian.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md b/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md index d77349e641..eb575dfbd1 100644 --- a/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md +++ b/curriculum/challenges/russian/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.russian.md @@ -13,8 +13,8 @@ localeTitle: Преобразование данных JSON в HTML ## Instructions
-Add a forEach method to loop over the JSON data and create the HTML elements to display it. -Here is some example JSON +Добавьте метод forEach для цикличного прохода по JSON и создайте HTML элементы для отображения информации. +Вот пример JSON ```json [ @@ -35,11 +35,11 @@ Here is some example JSON ```yml tests: - - text: Your code should store the data in the html variable + - text: Ваш код должен храниться информацию в переменной html testString: assert(code.match(/html\s+?(\+=|=\shtml\s\+)/g)); - - text: Your code should use a forEach method to loop over the JSON data from the API. + - text: Ваш код должен использовать метод forEachдля цикличного прохождения над данными JSON из API. testString: assert(code.match(/json\.forEach/g)); - - text: Your code should wrap the key names in strong tags. + - text: Ваш код должен обернуть данные в strong теги. testString: assert(code.match(/.+<\/strong>/g)); ```