diff options
Diffstat (limited to 'files/ru/learn')
4 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/learn/css/first_steps/how_css_works/index.html b/files/ru/learn/css/first_steps/how_css_works/index.html index f972f1a700..b5d03c7cea 100644 --- a/files/ru/learn/css/first_steps/how_css_works/index.html +++ b/files/ru/learn/css/first_steps/how_css_works/index.html @@ -109,7 +109,7 @@ translation_of: Learn/CSS/First_steps/How_CSS_works <p>Новый результат:</p> -<p>{{EmbedLiveSample('Applying_CSS_to_the_DOM', '100%', 55)}}</p> +<p>{{EmbedLiveSample('Добавление_CSS_в_DOM', '100%', 55)}}</p> <p>В статье <a href="/ru/docs/Learn/CSS/Building_blocks/Debugging_CSS">Отладка CSS</a> мы будем использовать браузер DevTools для отладки CSS.</p> diff --git a/files/ru/learn/forms/how_to_structure_a_web_form/index.html b/files/ru/learn/forms/how_to_structure_a_web_form/index.html index 9cad80d3f5..35b2bcd2c4 100644 --- a/files/ru/learn/forms/how_to_structure_a_web_form/index.html +++ b/files/ru/learn/forms/how_to_structure_a_web_form/index.html @@ -149,7 +149,7 @@ original_slug: Learn/HTML/Forms/How_to_structure_an_HTML_form <input id="username" type="text" name="username"> </div></pre> -<p>{{EmbedLiveSample("Multiple_labels", 120, 120)}}</p> +<p>{{EmbedLiveSample("Несколько_лейблов", 120, 120)}}</p> <p>Параграф на первой строке примера описывает правило для обязательных элементов. Вначале необходимо убедиться, что вспомогательные технологии, такие как программы чтения с экрана, отображают или озвучивают их пользователю, прежде чем он найдёт требуемый элемент. Таким образом они будут знать, что означает звёздочка. Программа чтения с экрана будет произносить звёздочку как «звёздочку» или «обязательно», в зависимости от настроек программы чтения с экрана — в любом случае, первый абзац даёт понимание того, что будет означать звёздочка далее в форме.</p> diff --git a/files/ru/learn/forms/sending_forms_through_javascript/index.html b/files/ru/learn/forms/sending_forms_through_javascript/index.html index de31f823d8..fb58b4f06f 100644 --- a/files/ru/learn/forms/sending_forms_through_javascript/index.html +++ b/files/ru/learn/forms/sending_forms_through_javascript/index.html @@ -103,7 +103,7 @@ btn.addEventListener( 'click', function() { <p>Это результат:</p> -<p>{{EmbedLiveSample("Building_an_XMLHttpRequest_manually", "100%", 50)}}</p> +<p>{{EmbedLiveSample("Создание_XMLHttpRequest_вручную", "100%", 50)}}</p> <div class="note"> <p><strong>Note:</strong> This use of {{domxref("XMLHttpRequest")}} is subject to the {{glossary('same-origin policy')}} if you want to send data to a third party web site. For cross-origin requests, you'll need <a href="/en-US/docs/HTTP/Access_control_CORS">CORS and HTTP access control</a>.</p> diff --git a/files/ru/learn/javascript/asynchronous/introducing/index.html b/files/ru/learn/javascript/asynchronous/introducing/index.html index 9be0564c1d..2d457b6888 100644 --- a/files/ru/learn/javascript/asynchronous/introducing/index.html +++ b/files/ru/learn/javascript/asynchronous/introducing/index.html @@ -68,7 +68,7 @@ btn.addEventListener('click', () => { <pre class="brush: html notranslate"><<span class="pl-ent">button</span>>Нажми меня</<span class="pl-ent">button</span>></pre> </div> -<p>{{EmbedLiveSample('Synchronous_JavaScript', '100%', '70px')}}</p> +<p>{{EmbedLiveSample('Синхронный_JavaScript', '100%', '70px')}}</p> <div class="blockIndicator note"> <p><strong>Примечание</strong>: Важно помнить, что <code><a href="/en-US/docs/Web/API/Window/alert">alert()</a></code>, хоть и часто используется для демонстрации синхронных блокирующих операций, сильно не рекомендован к использованию в реальных приложениях.</p> |