aboutsummaryrefslogtreecommitdiff
path: root/files/ru/learn
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-18 20:28:37 +0300
committerGitHub <noreply@github.com>2021-10-18 20:28:37 +0300
commit05564d56aa54eb11cbdc3684e1b4a843a3b9196c (patch)
treea3fc1bf9cbc05337af99495d6892ee886236b279 /files/ru/learn
parent8bd9f80b24f0312c6138cfaa125eebb8f3aa7a3e (diff)
downloadtranslated-content-05564d56aa54eb11cbdc3684e1b4a843a3b9196c.tar.gz
translated-content-05564d56aa54eb11cbdc3684e1b4a843a3b9196c.tar.bz2
translated-content-05564d56aa54eb11cbdc3684e1b4a843a3b9196c.zip
[RU] Fix live samples (#2767)
Diffstat (limited to 'files/ru/learn')
-rw-r--r--files/ru/learn/css/first_steps/how_css_works/index.html2
-rw-r--r--files/ru/learn/forms/how_to_structure_a_web_form/index.html2
-rw-r--r--files/ru/learn/forms/sending_forms_through_javascript/index.html2
-rw-r--r--files/ru/learn/javascript/asynchronous/introducing/index.html2
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
&lt;input id="username" type="text" name="username"&gt;
&lt;/div&gt;</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', () =&gt; {
<pre class="brush: html notranslate">&lt;<span class="pl-ent">button</span>&gt;Нажми меня&lt;/<span class="pl-ent">button</span>&gt;</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>