From 6f45efef44c50f78558ea91fedaa5b45a40e1132 Mon Sep 17 00:00:00 2001 From: camperbot Date: Sun, 5 Feb 2023 16:47:28 +0530 Subject: [PATCH] chore(i18n,learn): processed translations (#49241) --- ...project-with-external-packages-from-npm.md | 2 +- ...e-of-any-node.js-project-or-npm-package.md | 8 ++++---- ...he-latest-minor-version-of-a-dependency.md | 4 ++-- ...he-latest-patch-version-of-a-dependency.md | 4 ++-- .../5efc4f528d6a74d05e68af74.md | 2 +- ...ad-operator-to-evaluate-arrays-in-place.md | 2 +- ...project-with-external-packages-from-npm.md | 2 +- ...e-of-any-node.js-project-or-npm-package.md | 8 ++++---- ...he-latest-minor-version-of-a-dependency.md | 4 ++-- ...he-latest-patch-version-of-a-dependency.md | 4 ++-- .../6148da157cc0bd0d06df5c0a.md | 2 +- .../5dfa22d1b521be39a3de7be0.md | 2 +- .../5dfa30b9eacea3f48c6300ad.md | 20 +++++++++---------- .../5ef9b03c81a63668521804d2.md | 2 +- .../5ef9b03c81a63668521804e5.md | 2 +- .../5efc4f528d6a74d05e68af74.md | 4 ++-- .../615f7de4487b64919bb4aa5e.md | 2 +- 17 files changed, 37 insertions(+), 37 deletions(-) diff --git a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md index 85801e47d04..913ee97aaee 100644 --- a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md +++ b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md @@ -22,7 +22,7 @@ Nesta seção, pacotes de que seu projeto necessita são armazenados usando o se # --instructions-- -Add version `1.1.0` of the `@freecodecamp/example` package to the `dependencies` field of your `package.json` file. +Adicione a versão `1.1.0` do pacote `@freecodecamp/example` ao campo `dependencies` do arquivo `package.json`. **Observação:** `@freecodecamp/example` é um pacote falso usado como ferramenta de aprendizagem. diff --git a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md index 2e663204ce9..072d3ecdd07 100644 --- a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md +++ b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md @@ -22,9 +22,9 @@ Se você usa o Replit, siga estas etapas para configurar o projeto: Quando terminar, certifique-se de que uma demonstração funcional do seu projeto está hospedada em algum lugar público. Em seguida, envie o URL para a solução no campo Solution Link. -O arquivo `package.json` é o centro de qualquer projeto do Node.js ou pacote do npm. It stores information about your project, similar to how the `head` section of an HTML document describes the content of a webpage. Ele consiste em um único objeto JSON, onde as informações são armazenadas em pares de chave-valor. There are only two required fields; `name` and `version`, but it’s good practice to provide additional information about your project that could be useful to future users or maintainers. +O arquivo `package.json` é o centro de qualquer projeto do Node.js ou pacote do npm. Ele armazena informações sobre seu projeto, de modo semelhante ao que a seção `head` de um documento HTML usa para descrever o conteúdo de uma página da web. Ele consiste em um único objeto JSON, onde as informações são armazenadas em pares de chave-valor. Existem apenas dois campos obrigatórios: `name` e `version`. Porém, é uma boa prática fornecer informações adicionais sobre o seu projeto que possam ser úteis para futuros usuários ou mantenedores. -If you look at the file tree of your project, you will find the `package.json` file on the top level of the tree. Este é o arquivo que você vai melhorar nos próximos desafios. +Se você olhar a árvore de arquivos do projeto, você encontrará o arquivo `package.json` no nível superior da árvore. Este é o arquivo que você vai melhorar nos próximos desafios. Uma das informações mais comuns neste arquivo é o campo `author`. Especifica quem criou o projeto e pode consistir em uma string ou um objeto com detalhes de contato ou outros. Um objeto é recomendado para projetos maiores, mas uma string simples como o exemplo a seguir já servirá para este projeto. @@ -34,13 +34,13 @@ Uma das informações mais comuns neste arquivo é o campo `author`. Especifica # --instructions-- -Add your name as the `author` of the project in the `package.json` file. +Adicione seu nome como o `author` do projeto no arquivo `package.json`. **Observação:** lembre-se de que você está escrevendo JSON. Então, todos os nomes de campos devem usar aspas duplas (") e ser separados por uma vírgula (,). # --hints-- -`package.json` should have a valid "author" key +O `package.json` deve ter uma chave "author" válida ```js (getUserInput) => diff --git a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md index 9216c7e8706..b0af8f11949 100644 --- a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md +++ b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md @@ -10,13 +10,13 @@ dashedName: use-the-caret-character-to-use-the-latest-minor-version-of-a-depende Da mesma forma que o til, que aprendemos no último desafio e que permite que o npm instale o último PATCH de uma dependência, o circunflexo (`^`) permite que o npm instale atualizações futuras também. A diferença é que o circunflexo permitirá tanto atualizações MINOR quanto PATCHes. -Your current version of `@freecodecamp/example` should be `~1.2.13` which allows npm to install to the latest `1.2.x` version. If you were to use the caret (^) as a version prefix instead, npm would be allowed to update to any `1.x.x` version. +Sua versão atual de `@freecodecamp/example` deve ser `~1.2.13`, o que permitirá que o npm instale a versão `1.2.x` mais recente. Se você usasse o circunflexo (^) como um prefixo de versão, o npm teria permissão para atualizar para qualquer versão `1.x.x`. ```json "package": "^1.3.8" ``` -This would allow updates to any `1.x.x` version of the package. +Isso permitiria atualizações para qualquer versão `1.x.x` do pacote. # --instructions-- diff --git a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md index 7aeffe26ce2..b2e893df58d 100644 --- a/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md +++ b/curriculum/challenges/portuguese/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md @@ -10,7 +10,7 @@ dashedName: use-the-tilde-character-to-always-use-the-latest-patch-version-of-a- No último desafio, você disse ao npm para incluir apenas uma versão específica de um pacote. Essa é uma maneira útil de congelar suas dependências, caso você precise garantir que diferentes partes do seu projeto permaneçam compatíveis entre si. Mas, na maioria dos casos de uso, você não quer perder as correções de erros, já que elas geralmente incluem correções de segurança importantes e (esperamos que) não quebrem nada ao fazer isso. -Para permitir que uma dependência do npm atualize para a última versão de PATCH, você pode prefixar a versão da dependência com o caractere de til (`~`). Here's an example of how to allow updates to any `1.3.x` version. +Para permitir que uma dependência do npm atualize para a última versão de PATCH, você pode prefixar a versão da dependência com o caractere de til (`~`). Aqui está um exemplo de como permitir atualizações para qualquer versão `1.3.x`. ```json "package": "~1.3.8" @@ -18,7 +18,7 @@ Para permitir que uma dependência do npm atualize para a última versão de PAT # --instructions-- -In the package.json file, your current rule for how npm may upgrade `@freecodecamp/example` is to use a specific version (`1.2.13`). But now, you want to allow the latest `1.2.x` version. +No arquivo package.json, a regra atual de como o npm pode atualizar `@freecodecamp/example` é usar uma versão específica (`1.2.13`). Mas agora, você deseja permitir a última versão de `1.2.x`. Use o til (`~`) para prefixar a versão de `@freecodecamp/example` nas dependências e permitir que o npm atualize o pacote para qualquer nova versão _patch_. diff --git a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md index 4cc0ebfd91a..88a23f6f517 100644 --- a/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md +++ b/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md @@ -9,7 +9,7 @@ dashedName: step-56 Existe outra maneira de associar o texto de um elemento `input` com o elemento em si. Você pode colocar o texto dentro de um elemento `label` e adicionar um atributo `for` com o mesmo valor que o atributo `id` do elemento `input`. -Associate the text `Loving` with the checkbox by nesting only the text `Loving` in a `label` element and giving it an appropriate `for` attribute. +Associe o texto `Loving` com a caixa de seleção inserindo apenas o texto `Loving` em um elemento `label` e dando a ele um atributo `for` apropriado. # --hints-- diff --git a/curriculum/challenges/ukrainian/02-javascript-algorithms-and-data-structures/es6/use-the-spread-operator-to-evaluate-arrays-in-place.md b/curriculum/challenges/ukrainian/02-javascript-algorithms-and-data-structures/es6/use-the-spread-operator-to-evaluate-arrays-in-place.md index cb8b352e45f..6baf9972470 100644 --- a/curriculum/challenges/ukrainian/02-javascript-algorithms-and-data-structures/es6/use-the-spread-operator-to-evaluate-arrays-in-place.md +++ b/curriculum/challenges/ukrainian/02-javascript-algorithms-and-data-structures/es6/use-the-spread-operator-to-evaluate-arrays-in-place.md @@ -28,7 +28,7 @@ const maximus = Math.max(...arr); `maximus` матиме значення `89`. -`...arr` повертає запакований масив. Іншими словами, це *розширює* масив. Однак оператор розширення працює лише на місці, наприклад, в аргументі функції чи літералі масиву. Наступний код не буде працювати: +`...arr` повертає розпакований масив. Іншими словами, це *розширює* масив. Однак оператор розширення працює лише на місці, наприклад, в аргументі функції чи літералі масиву. Наступний код не буде працювати: ```js const spreaded = ...arr; diff --git a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md index 675c42f6f82..4a6507ba713 100644 --- a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md +++ b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm.md @@ -22,7 +22,7 @@ dashedName: expand-your-project-with-external-packages-from-npm # --instructions-- -Add version `1.1.0` of the `@freecodecamp/example` package to the `dependencies` field of your `package.json` file. +Додайте версію `1.1.0` пакета `@freecodecamp/example` до поля `dependencies` свого файлу `package.json`. **Примітка:** `@freecodecamp/example` є фальшивим пакетом, який використовується як навчальний інструмент. diff --git a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md index ddcd836a9e6..7bb395d7f58 100644 --- a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md +++ b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/how-to-use-package.json-the-core-of-any-node.js-project-or-npm-package.md @@ -22,9 +22,9 @@ dashedName: how-to-use-package-json-the-core-of-any-node-js-project-or-npm-packa Після завершення переконайтеся, що демоверсія проєкту розміщена у відкритому доступі. Потім введіть URL-адресу проєкту в полі «Посилання на рішення». -Файл `package.json` є центром будь-якого проєкту Node.js або пакету npm. It stores information about your project, similar to how the `head` section of an HTML document describes the content of a webpage. Він складається з одного об'єкту JSON, де зберігається інформація у парах ключ-значення. There are only two required fields; `name` and `version`, but it’s good practice to provide additional information about your project that could be useful to future users or maintainers. +Файл `package.json` є центром будь-якого проєкту Node.js або пакету npm. У ньому зберігається інформація про ваш проєкт, схоже до того, як розділ `head` HTML-документу описує вміст вебсторінки. Він складається з одного об'єкту JSON, де зберігається інформація у парах ключ-значення. Існує лише два обов'язкові поля: `name` та `version`, але краще надавати додаткову інформацію про свій проєкт, яка може бути корисною для майбутніх користувачів або спеціалістів. -If you look at the file tree of your project, you will find the `package.json` file on the top level of the tree. Ви будете покращувати цей файл у наступних завданнях. +Якщо глянути на дерево файлів вашого проєкту, то файл `package.json` буде зверху. Ви будете покращувати цей файл у наступних завданнях. Одним із найважливішого у цьому файлі є поле `author`. Воно вказує на те, хто створив проєкт, і може складатися з рядка або об'єкта з контактом чи іншими деталями. Об’єкт рекомендований для масштабніших проєктів, а простий рядок (як у прикладі) зійде для цього проєкту. @@ -34,13 +34,13 @@ If you look at the file tree of your project, you will find the `package.json` f # --instructions-- -Add your name as the `author` of the project in the `package.json` file. +Додайте своє ім'я як `author` проєкту у файл `package.json`. **Примітка:** пам'ятайте, що ви пишете JSON, тому всі назви полів повинні використовувати подвійні лапки (") і бути розділені комою (,). # --hints-- -`package.json` should have a valid "author" key +`package.json` повинен мати дійсний ключ «author» ```js (getUserInput) => diff --git a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md index 3f1b7ab69d8..dc655924b65 100644 --- a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md +++ b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-caret-character-to-use-the-latest-minor-version-of-a-dependency.md @@ -10,13 +10,13 @@ dashedName: use-the-caret-character-to-use-the-latest-minor-version-of-a-depende Подібно до символу тильда, про який ми дізналися в останньому завданні та який дозволяє npm встановити найновіший PATCH для залежності, символ карет (`^`) також дозволяє npm встановлювати майбутні оновлення. Відмінність полягає в тому, що символ карет дозволяє оновлення і MINOR, і PATCH. -Your current version of `@freecodecamp/example` should be `~1.2.13` which allows npm to install to the latest `1.2.x` version. If you were to use the caret (^) as a version prefix instead, npm would be allowed to update to any `1.x.x` version. +Поточною версією `@freecodecamp/example` повинна бути `~1.2.13`, що дозволяє npm встановлювати останню версію `1.2.x`. Якби ви використали символ (^) як префікс версії, npm було б дозволено оновлюватись до будь-якої версії `1.x.x`. ```json "package": "^1.3.8" ``` -This would allow updates to any `1.x.x` version of the package. +Це дозволить оновлюватися до будь-якої `1.x.x` версії пакету. # --instructions-- diff --git a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md index 8e138ea901b..9f370861886 100644 --- a/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md +++ b/curriculum/challenges/ukrainian/05-back-end-development-and-apis/managing-packages-with-npm/use-the-tilde-character-to-always-use-the-latest-patch-version-of-a-dependency.md @@ -10,7 +10,7 @@ dashedName: use-the-tilde-character-to-always-use-the-latest-patch-version-of-a- В останньому завданні ви сказали npm включати тільки конкретну версію пакету. Це корисний спосіб призупинити блокування своїх залежностей, якщо вам потрібно переконатися, що різні частини проєкту залишаються сумісними між собою. Але в більшості випадків не варто пропускати виправлення помилок, оскільки вони часто містять важливі патчі безпеки і (як можна сподіватися) нічого при цьому не порушують. -Щоб npm-залежність оновилася до останньої версії PATCH, можна встановити префікс версії залежностей з символом тильди (`~`). Here's an example of how to allow updates to any `1.3.x` version. +Щоб npm-залежність оновилася до останньої версії PATCH, можна встановити префікс версії залежностей з символом тильди (`~`). Ось приклад того, як дозволити оновлення до будь-якої версії `1.3.x`. ```json "package": "~1.3.8" @@ -18,7 +18,7 @@ dashedName: use-the-tilde-character-to-always-use-the-latest-patch-version-of-a- # --instructions-- -In the package.json file, your current rule for how npm may upgrade `@freecodecamp/example` is to use a specific version (`1.2.13`). But now, you want to allow the latest `1.2.x` version. +У файлі package.json вашим поточним правилом для оновлення `@freecodecamp/example` є використання конкретної версії (`1.2.13`). Але тепер потрібна остання версія `1.2.x`. Використайте символ тильда (`~`), щоб встановити префікс версії `@freecodecamp/example` у своїх залежностях і дозволити npm оновлення до будь-якої версії _патч_. diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md index b994ea2fcd3..87c32a17ee0 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6148da157cc0bd0d06df5c0a.md @@ -7,7 +7,7 @@ dashedName: step-57 # --description-- -To align the input boxes with each other, create a new ruleset that targets all `input` and `label` elements within an `.info` element and set the `display` property to `inline-block`. +Щоб вирівняти всі поля для вводу, створіть новий набір правил, який націлює всі елементи `input` та `label` в межах елемента `.info` і встановіть властивість `display` на `inline-block`. Також вирівняйте текст елемента `label` за правим краєм. diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md index e7e9c9cfe00..c0e7a491ccb 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa22d1b521be39a3de7be0.md @@ -9,7 +9,7 @@ dashedName: step-12 У попередньому кроці ви перетворили слова `link to cat pictures` на посилання, розмістивши їх між початковим та кінцевим теґами прив’язки (`a`). Ви можете зробити те саме зі словами всередині елемента, наприклад елемента `p`. -У тексті свого елемента `p` перетворіть слова `cat photos` на посилання `https://freecatphotoapp.com`, додавши початковий та кінцевий теґи прив'язки (`a`) навколо цих слів. +У тексті свого елемента `p` перетворіть слова `cat photos` на посилання до `https://freecatphotoapp.com`, додавши початковий та кінцевий теґи прив'язки (`a`) навколо цих слів. # --hints-- diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa30b9eacea3f48c6300ad.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa30b9eacea3f48c6300ad.md index 2945d50e527..2381737baf9 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa30b9eacea3f48c6300ad.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfa30b9eacea3f48c6300ad.md @@ -7,13 +7,13 @@ dashedName: step-15 # --description-- -In previous steps you used an anchor element to turn text into a link. Other types of content can also be turned into a link by wrapping it in anchor tags. +У попередніх кроках ви використовували елемент прив’язки, щоб перетворити текст на посилання. Інші типи вмісту також можна перетворити на посилання, загорнувши їх в теги прив’язки. -Turn the image into a link by surrounding it with necessary element tags. Use `https://freecatphotoapp.com` as the anchor's `href` attribute value. +Перетворіть зображення на посилання, оточивши його необхідними теґами елементів. Використайте `https://freecatphotoapp.com` як значення атрибута `href` елемента прив'язки. # --hints-- -You should have an `img` element with an `src` value of `https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg`. You may have accidentally deleted it. +Ви повинні мати елемент `img` з `src` зі значенням `https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg`. Можливо, ви випадково видалили його. ```js assert( @@ -23,37 +23,37 @@ assert( ); ``` -Your anchor (`a`) element should have an opening tag. Opening tags have this syntax: ``. +Ваш елемент прив'язки (`a`) повинен мати початковий теґ. Початкові теґи мають такий синтаксис: ``. ```js assert(document.querySelectorAll('a').length >= 2); ``` -You should only add one opening anchor (`a`) tag. Please remove any extras. +Ви повинні додати лише один початковий теґ прив'язки (`a`). Будь ласка, видаліть всі зайві. ```js assert(document.querySelectorAll('a').length === 2); ``` -Your anchor (`a`) element should have a closing tag. Closing tags have a `/` just after the `<` character. +Ваш елемент прив'язки (`a`) повинен мати кінцевий теґ. Кінцеві теґи мають `/` відразу після символу `<`. ```js assert(code.match(/<\/a>/g).length >= 2); ``` -You should only add one closing anchor (`a`) tag. Please remove any extras. +Ви повинні додати лише один кінцевий теґ прив'язки (`a`). Будь ласка, видаліть всі зайві. ```js assert(code.match(/<\/a>/g).length === 2); ``` -Your anchor (`a`) element does not have an `href` attribute. Check that there is a space after the opening tag's name and/or there are spaces before all attribute names. +Ваш елемент прив'язки (`a`) не має атрибута `href`. Перевірте, чи є пробіл після назви початкового теґа та/або є пробіли перед усіма назвами атрибутів. ```js assert(document.querySelector('a').hasAttribute('href')); ``` -Your anchor (`a`) element should link to `https://freecatphotoapp.com`. You have either omitted the URL or have a typo. +Ваш елемент прив'язки (`a`) повинен посилати на `https://freecatphotoapp.com`. Ви або не написали URL-адресу, або маєте друкарську помилку. ```js assert( @@ -62,7 +62,7 @@ assert( ); ``` -Your `img` element should be nested within the anchor (`a`) element. The entire `img` element should be inside the opening and closing tags of the anchor (`a`) element. +Ваш елемент `img` повинен бути вкладеним в межах елемента прив'язки (`a`). Весь елемент `img` повинен бути всередині початкового та кінцевого теґів елемента прив'язки (`a`). ```js assert(document.querySelector('img').parentNode.nodeName === 'A'); diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d2.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d2.md index 90f9c1607cc..dd28a3fffbe 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d2.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804d2.md @@ -55,7 +55,7 @@ assert.deepStrictEqual( ); ``` -You should only have one `ol` element. +Ви повинні мати лише один елемент `ol`. ```js assert([...document.querySelectorAll('ol')].length == 1); diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e5.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e5.md index 25c71fb4d87..3ba904dbaf3 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e5.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5ef9b03c81a63668521804e5.md @@ -22,7 +22,7 @@ assert( ); ``` -Your first radio button, with the `id` set to `indoor`, should have the `checked` attribute. +Ваша радіокнопка з `id`, встановленим на `indoor`, повинна мати атрибут `checked`. ```js assert($('input[type="radio"]')[0].hasAttribute('checked')); diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md index 2b2ca737eff..b99cd7a18d7 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5efc4f528d6a74d05e68af74.md @@ -9,7 +9,7 @@ dashedName: step-56 Існує інший спосіб пов’язати текст елемента `input` з самим елементом. Ви можете вкласти текст в елемент `label` та додати атрибут `for` з таким самим значенням, що й атрибут `id` елемента `input`. -Associate the text `Loving` with the checkbox by nesting only the text `Loving` in a `label` element and giving it an appropriate `for` attribute. +Пов'яжіть текст `Loving` з прапорцем, вклавши лише текст `Loving` в елемент `label` та надавши йому відповідний атрибут `for`. # --hints-- @@ -25,7 +25,7 @@ assert($('input[type="checkbox"]')[0]); assert.equal($('input[type="checkbox"]')[0].id, 'loving'); ``` -Текст `Loving` вже не повинен розташовуватися праворуч від вашого прапорця. Його слід загорнути в елемент `label`. Переконайтеся, що між двома елементами є пробіл. +Текст `Loving` більше не повинен розташовуватися праворуч від вашого прапорця. Його слід загорнути в елемент `label`. Переконайтеся, що між двома елементами є пробіл. ```js const checkboxInputElem = $('input[type="checkbox"]')[0]; diff --git a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f7de4487b64919bb4aa5e.md b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f7de4487b64919bb4aa5e.md index accd360ab7c..6f16fc3e973 100644 --- a/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f7de4487b64919bb4aa5e.md +++ b/curriculum/challenges/ukrainian/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f7de4487b64919bb4aa5e.md @@ -7,7 +7,7 @@ dashedName: step-53 # --description-- -Після останнього `.divider` створіть новий елемент `p` з текстом `Cholesterol 0mg 0%`. Обгорніть текст `Cholesterol` в елемент `span` та надайте цьому елементу `span` атрибут `class` зі значенням `bold`. Обгорніть текст `0%` в інший елемент `span` з `class` зі значенням `bold`. Finally, nest the `Cholesterol` and `0mg` `span` elements inside an additional `span` element for alignment. +Після останнього `.divider` створіть новий елемент `p` з текстом `Cholesterol 0mg 0%`. Обгорніть текст `Cholesterol` в елемент `span` та надайте цьому елементу `span` атрибут `class` зі значенням `bold`. Обгорніть текст `0%` в інший елемент `span` з `class` зі значенням `bold`. Вкінці вкладіть елементи `span` (`Cholesterol` та `0mg`) в додатковий елемент `span` для вирівнювання. # --hints--