diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-15 14:29:50 +0300 |
---|---|---|
committer | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-15 14:29:50 +0300 |
commit | 55ddd4454665a3c66e3d5b186bc79048468d36e7 (patch) | |
tree | 5391f1ae01bbcd484387bbc2373492ac9bc89dbc /files/ru/web/api/console | |
parent | 08dc1a1e60063705ccefc1eb4ef0a17d1ddf196b (diff) | |
download | translated-content-55ddd4454665a3c66e3d5b186bc79048468d36e7.tar.gz translated-content-55ddd4454665a3c66e3d5b186bc79048468d36e7.tar.bz2 translated-content-55ddd4454665a3c66e3d5b186bc79048468d36e7.zip |
Auto fixes
Diffstat (limited to 'files/ru/web/api/console')
-rw-r--r-- | files/ru/web/api/console/count/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/countreset/index.html | 6 | ||||
-rw-r--r-- | files/ru/web/api/console/debug/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/dirxml/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/error/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/log/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/table/index.html | 6 | ||||
-rw-r--r-- | files/ru/web/api/console/timeend/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/timelog/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/console/timestamp/index.html | 2 |
10 files changed, 14 insertions, 14 deletions
diff --git a/files/ru/web/api/console/count/index.html b/files/ru/web/api/console/count/index.html index c0c1011fae..32304c274f 100644 --- a/files/ru/web/api/console/count/index.html +++ b/files/ru/web/api/console/count/index.html @@ -75,7 +75,7 @@ console.count("alice");</pre> <dl> <dt><code>label</code></dt> - <dd>Строка. Если она передается, <code>count()</code> выводит такое число, которое сообветсвует количеству раз вызова данной функции с таким же точно <code>label</code>.</dd> + <dd>Строка. Если она передается, <code>count()</code> выводит такое число, которое соответствует количеству раз вызова данной функции с таким же точно <code>label</code>.</dd> </dl> <h2 id="Specifications">Specifications</h2> diff --git a/files/ru/web/api/console/countreset/index.html b/files/ru/web/api/console/countreset/index.html index b5bdb7e3b8..3725be4d9d 100644 --- a/files/ru/web/api/console/countreset/index.html +++ b/files/ru/web/api/console/countreset/index.html @@ -11,7 +11,7 @@ translation_of: Web/API/Console/countReset <p>Если аргумент <code>label</code> передан, то функция сбросит счетчик связанный с этим аргументом.</p> -<p>Если значение <code>label</code> опущено, то функция сбросит счетчик, заданый по умолчанию.</p> +<p>Если значение <code>label</code> опущено, то функция сбросит счетчик, заданий по умолчанию.</p> <h2 id="Синтаксис">Синтаксис</h2> @@ -24,7 +24,7 @@ translation_of: Web/API/Console/countReset <dt><code>label</code></dt> <dd>Строка.<br> Если аргумент label был передан, <code>countReset()</code> сбросит к 0 счетчик для этого label.<br> - Если нет, <code>count()</code> сбросит к 0 счетчик, заданый по умолчанию.</dd> + Если нет, <code>count()</code> сбросит к 0 счетчик, заданий по умолчанию.</dd> </dl> <h3 id="Возвращаемое_значение">Возвращаемое значение</h3> @@ -77,7 +77,7 @@ console.countReset();</pre> <p>Заметьте, что вызов console.counterReset() сбросил до 0 значение счетчика заданного по умолчанию.</p> -<p>Если мы присвоим переменную <code>user</code> как арумент <code>label</code> при первом вызове <code>count()</code>, и строку "alice" при втором:</p> +<p>Если мы присвоим переменную <code>user</code> как аргумент <code>label</code> при первом вызове <code>count()</code>, и строку "alice" при втором:</p> <pre class="brush: js">var user = ""; diff --git a/files/ru/web/api/console/debug/index.html b/files/ru/web/api/console/debug/index.html index 4bd3892b8d..cd9cbfc5f3 100644 --- a/files/ru/web/api/console/debug/index.html +++ b/files/ru/web/api/console/debug/index.html @@ -26,7 +26,7 @@ console.debug(<em>msg</em> [, <em>subst1</em>, ..., <em>substN</em>]); <dd>JavaScript-объекты, с помощью которых произойдёт замена подстановочных символов в <code>msg</code>. Это даст вам дополнительный контроль над форматом вывода. (см. {{SectionOnPage("/ru/docs/Web/API/Console", "Преобразование строк с использованием масок")}}).</dd> </dl> -<p>Читайте <a href="/ru/docs/Web/API/Console#Outputting_text_to_the_console">Вывод текста в консоль</a> в документаци {{domxref("console")}} для получения дополнительной информации.</p> +<p>Читайте <a href="/ru/docs/Web/API/Console#Outputting_text_to_the_console">Вывод текста в консоль</a> в документации {{domxref("console")}} для получения дополнительной информации.</p> <h2 id="Спецификации">Спецификации</h2> diff --git a/files/ru/web/api/console/dirxml/index.html b/files/ru/web/api/console/dirxml/index.html index 02856c1dc8..8428b59f03 100644 --- a/files/ru/web/api/console/dirxml/index.html +++ b/files/ru/web/api/console/dirxml/index.html @@ -11,7 +11,7 @@ translation_of: Web/API/Console/dirxml <p style="margin-bottom: 0cm; line-height: 100%;"></p> -<h2 id="Синтакис">Синтакис</h2> +<h2 id="Синтаксис">Синтаксис</h2> <pre class="syntaxbox">console.dirxml(<em>object</em>); </pre> diff --git a/files/ru/web/api/console/error/index.html b/files/ru/web/api/console/error/index.html index 419e2637ba..05e0c71be0 100644 --- a/files/ru/web/api/console/error/index.html +++ b/files/ru/web/api/console/error/index.html @@ -122,7 +122,7 @@ console.exception(<em>msg</em> [, <em>subst1</em>, ..., <em>substN</em>]); <th>Safari Mobile</th> </tr> <tr> - <td>Базовая поодержка</td> + <td>Базовая поддержка</td> <td>{{CompatVersionUnknown}}</td> <td>{{CompatVersionUnknown}}</td> <td>{{CompatGeckoMobile("2.0")}}</td> diff --git a/files/ru/web/api/console/log/index.html b/files/ru/web/api/console/log/index.html index ba29cd2002..aad40b455d 100644 --- a/files/ru/web/api/console/log/index.html +++ b/files/ru/web/api/console/log/index.html @@ -71,7 +71,7 @@ console.log(<em>msg</em> [, <em>subst1</em>, ..., <em>substN</em>]); <li><code>console.dir</code> выводит элемент как JSON-объект</li> </ul> -<p>А именно, <code>console.log</code> даёт специальное обращение к DOM-элементам, тогда как <code>console.dir</code> - нет. Это особенно полезно, когда нужно видеть полное представление DOM JS-объетов.</p> +<p>А именно, <code>console.log</code> даёт специальное обращение к DOM-элементам, тогда как <code>console.dir</code> - нет. Это особенно полезно, когда нужно видеть полное представление DOM JS-объектов.</p> <p>Больше информации об этой и других функциях в <a href="https://developers.google.com/chrome-developer-tools/docs/console-api#consoledirobject">Chrome Console API reference</a>.</p> diff --git a/files/ru/web/api/console/table/index.html b/files/ru/web/api/console/table/index.html index 7deea2beef..ac40661d70 100644 --- a/files/ru/web/api/console/table/index.html +++ b/files/ru/web/api/console/table/index.html @@ -66,7 +66,7 @@ var emily = new Person("Emily", "Jones"); console.table([john, jane, emily]);</pre> -<p>Обратите внимание, что если массив состоит из объектов, колонки таблицы будут озаглавленны названиями свойств объекта.</p> +<p>Обратите внимание, что если массив состоит из объектов, колонки таблицы будут озаглавлены названиями свойств объекта.</p> <p><img alt="Table displaying array of objects" src="https://mdn.mozillademos.org/files/8563/console-table-array-of-objects.png"></p> @@ -84,7 +84,7 @@ console.table(family);</pre> <h3 id="Ограничение_видимости_колонок">Ограничение видимости колонок</h3> -<p>По умолчанию, <code>console.table()</code> отображает все элементы в каждой строке. Вы можете использовать опциональный параметер <code>columns</code> чтобы указать набор отображаемых колонок:</p> +<p>По умолчанию, <code>console.table()</code> отображает все элементы в каждой строке. Вы можете использовать опциональный параметр <code>columns</code> чтобы указать набор отображаемых колонок:</p> <pre class="brush: js">// массив объектов, логируется только свойство firstName @@ -114,7 +114,7 @@ console.table([john, jane, emily], ["firstName"]);</pre> <dl> <dt><code>data</code></dt> - <dd>Данные для отображения. Могут быть представленны массивом или объектом.</dd> + <dd>Данные для отображения. Могут быть представлены массивом или объектом.</dd> <dt><code>columns</code></dt> <dd>Массив названий колонок, которые следует отобразить.</dd> </dl> diff --git a/files/ru/web/api/console/timeend/index.html b/files/ru/web/api/console/timeend/index.html index fd23031ed5..75773824ad 100644 --- a/files/ru/web/api/console/timeend/index.html +++ b/files/ru/web/api/console/timeend/index.html @@ -41,7 +41,7 @@ console.timeEnd("answer time");</pre> <p><img alt="timerresult.png" src="https://mdn.mozillademos.org/files/16741/timer_output.png"></p> -<p>Обратите внимение, что метка таймера отображается как при вызове <code>timeLog()</code>, так и завершении таймера. Кроме того, вызов timeEnd() выводит дополнительную информацию "timer ended", чтобы очевидно показать, что таймер больше не отслеживается.</p> +<p>Обратите внимание, что метка таймера отображается как при вызове <code>timeLog()</code>, так и завершении таймера. Кроме того, вызов timeEnd() выводит дополнительную информацию "timer ended", чтобы очевидно показать, что таймер больше не отслеживается.</p> <h2 id="Specification" name="Specification">Спецификация</h2> diff --git a/files/ru/web/api/console/timelog/index.html b/files/ru/web/api/console/timelog/index.html index 9b87553a7f..9c7139a97d 100644 --- a/files/ru/web/api/console/timelog/index.html +++ b/files/ru/web/api/console/timelog/index.html @@ -80,7 +80,7 @@ console.timeEnd("answer time"); <h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2> <div> -<div class="hidden">Таблица совместимости сгенерирована из структуированных данных. Для внесения вклада, пожалуйста, изучите репозитарий <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> с последующей отправкой пулл-реквестов.</div> +<div class="hidden">Таблица совместимости сгенерирована из структурированных данных. Для внесения вклада, пожалуйста, изучите репозиторий <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> с последующей отправкой пул-реквестов.</div> <p>{{Compat("api.Console.timeLog")}}</p> </div> diff --git a/files/ru/web/api/console/timestamp/index.html b/files/ru/web/api/console/timestamp/index.html index 9bd67bdc27..f0a8cafba6 100644 --- a/files/ru/web/api/console/timestamp/index.html +++ b/files/ru/web/api/console/timestamp/index.html @@ -8,7 +8,7 @@ translation_of: Web/API/Console/timeStamp --- <p>{{APIRef("Console API")}}{{Non-standard_header}}</p> -<p>Добавляет маркер в браузерные инструменты <a href="https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference">Performance</a> или <a href="https://developer.mozilla.org/en-US/docs/Tools/Performance/Waterfall">Waterfall</a>. Это помогает соотнести точку в вашем коде с другми записанными событиями.</p> +<p>Добавляет маркер в браузерные инструменты <a href="https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference">Performance</a> или <a href="https://developer.mozilla.org/en-US/docs/Tools/Performance/Waterfall">Waterfall</a>. Это помогает соотнести точку в вашем коде с другими записанными событиями.</p> |