diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-18 20:28:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 20:28:37 +0300 |
commit | 05564d56aa54eb11cbdc3684e1b4a843a3b9196c (patch) | |
tree | a3fc1bf9cbc05337af99495d6892ee886236b279 /files/ru/learn/forms | |
parent | 8bd9f80b24f0312c6138cfaa125eebb8f3aa7a3e (diff) | |
download | translated-content-05564d56aa54eb11cbdc3684e1b4a843a3b9196c.tar.gz translated-content-05564d56aa54eb11cbdc3684e1b4a843a3b9196c.tar.bz2 translated-content-05564d56aa54eb11cbdc3684e1b4a843a3b9196c.zip |
[RU] Fix live samples (#2767)
Diffstat (limited to 'files/ru/learn/forms')
-rw-r--r-- | files/ru/learn/forms/how_to_structure_a_web_form/index.html | 2 | ||||
-rw-r--r-- | files/ru/learn/forms/sending_forms_through_javascript/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
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> |