From 458a087c14eba06d504f4641f0c3d3718e848724 Mon Sep 17 00:00:00 2001 From: Marco Quintella Date: Mon, 3 Jun 2019 17:13:13 -0300 Subject: [PATCH] Translation fixes (#34302) Changed the position of the substantives to fix the mistakes when translation English to Portuguese. Some small adjustments to the word choices in order to make the text more clear. --- .../make-dead-links-using-the-hash-symbol.portuguese.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/make-dead-links-using-the-hash-symbol.portuguese.md b/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/make-dead-links-using-the-hash-symbol.portuguese.md index 5341c82ec5..5043d4d6fa 100644 --- a/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/make-dead-links-using-the-hash-symbol.portuguese.md +++ b/curriculum/challenges/portuguese/01-responsive-web-design/basic-html-and-html5/make-dead-links-using-the-hash-symbol.portuguese.md @@ -7,17 +7,17 @@ localeTitle: Faça links mortos usando o símbolo Hash --- ## Description -
Às vezes você quer adicionar a elementos para o seu site antes que você sabe onde eles vão ligar. Isso também é útil quando você está alterando o comportamento de um link usando JavaScript , sobre o qual aprenderemos mais tarde.
+
Alguma vezes você irá adicionar elementos a em seu site antes mesmo de saber para onde eles irão ligar. Isso também é útil quando você está alterando o comportamento de um link usando JavaScript , o qual aprenderemos mais tarde.
## Instructions -
O valor atual do atributo href é um link que aponta para "http://freecatphotoapp.com". Substitua o valor do atributo href por um # , também conhecido como um símbolo de hash, para criar um link inativo. Por exemplo: href="#"
+
O valor atual do atributo href é um link que aponta para "http://freecatphotoapp.com". Substitua o valor do atributo href por um # , também conhecido como um símbolo de hash, para criar um link morto. Por exemplo: href="#"
## Tests
```yml tests: - - text: 'Sua a elemento deve ser um link morto com o valor do href atributo definido como "#".' + - text: 'Seu elemento a deve ser um link morto com o valor do atributo href definido como "#".' testString: 'assert($("a").attr("href") === "#", "Your a element should be a dead link with the value of the href attribute set to "#".");' ```