diff options
author | Kayquer <kayquerocha@gmail.com> | 2021-08-14 19:43:47 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-14 19:43:47 -0300 |
commit | e8757f8aeffd9e92abbb802f24aa9739c82914b8 (patch) | |
tree | 1ca71236d4e8be51adeda5974b53e376723a2617 /files/pt-br/web | |
parent | b5095fcb4ccf7d2a745db2573ef2b377d344d551 (diff) | |
download | translated-content-e8757f8aeffd9e92abbb802f24aa9739c82914b8.tar.gz translated-content-e8757f8aeffd9e92abbb802f24aa9739c82914b8.tar.bz2 translated-content-e8757f8aeffd9e92abbb802f24aa9739c82914b8.zip |
Update index.html (#2044)
Several HTML attributes had been translated to Portuguese like, name and value. JS events for click where translated too.
Diffstat (limited to 'files/pt-br/web')
-rw-r--r-- | files/pt-br/web/html/element/input/checkbox/index.html | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/files/pt-br/web/html/element/input/checkbox/index.html b/files/pt-br/web/html/element/input/checkbox/index.html index 155d8301b2..d2e7ed1f71 100644 --- a/files/pt-br/web/html/element/input/checkbox/index.html +++ b/files/pt-br/web/html/element/input/checkbox/index.html @@ -46,7 +46,7 @@ translation_of: Web/HTML/Element/input/checkbox <pre class="brush: html"><form> <div> - <input type = "checkbox" id = "subscribeNews" nome = "subscribe" value = "<code>newsletter</code>"> + <input type = "checkbox" id = "subscribeNews" name = "subscribe" value = "<code>newsletter</code>"> <label for = "subscribeNews"> Subscreva a newsletter? </ label> </ div> <div> @@ -77,11 +77,11 @@ translation_of: Web/HTML/Element/input/checkbox <pre class="brush: html"><fieldset> <legend> Escolha seus interesses </ legend> <div> - <input type = "checkbox" id = "codificação" name = "interesse" valor = "codificação"> + <input type = "checkbox" id = "codificação" name = "interesse" value = "codificação"> <label for = "coding"> Codificação </ label> </ div> <div> - <input type = "checkbox" id = "música" name = "interesse" valor = "música"> + <input type = "checkbox" id = "música" name = "interesse" value = "música"> <label for = "music"> Música </ label> </ div> </ fieldset></pre> @@ -97,11 +97,11 @@ translation_of: Web/HTML/Element/input/checkbox <pre class="brush: html"><fieldset> <legend> Escolha seus interesses </ legend> <div> - <input type = "checkbox" id = "codificação" nome = "interesse" valor = "codificação" checked> + <input type = "checkbox" id = "codificação" name = "interesse" value = "codificação" checked> <label for = "coding"> Codificação </ label> </ div> <div> - <input type = "checkbox" id = "música" name = "interesse" valor = "música"> + <input type = "checkbox" id = "música" name = "interesse" value = "música"> <label for = "music"> Música </ label> </ div> </ fieldset></pre> @@ -142,7 +142,7 @@ translation_of: Web/HTML/Element/input/checkbox }); for(var i = 0; i <ingredientes.length; i ++) { - ingredientes [i] .addEventListener ('clique', updateDisplay); + ingredientes [i] .addEventListener ('click', updateDisplay); } função updateDisplay () { @@ -185,29 +185,29 @@ translation_of: Web/HTML/Element/input/checkbox <fieldset> <legend> Escolha seus interesses </ legend> <div> - <input type = "checkbox" id = "codificação" name = "interesse" valor = "codificação"> + <input type = "checkbox" id = "codificação" name = "interesse" value = "codificação"> <label for = "coding"> Codificação </ label> </ div> <div> - <input type = "checkbox" id = "música" name = "interesse" valor = "música"> + <input type = "checkbox" id = "música" name = "interesse" value = "música"> <label for = "music"> Música </ label> </ div> <div> - <input type = "checkbox" id = "arte" name = "interesse" valor = "arte"> + <input type = "checkbox" id = "arte" name = "interesse" value = "arte"> <label for = "art"> Art </ label> </ div> <div> - <input type = "checkbox" id = "sports" nome = "interesse" valor = "esportes"> + <input type = "checkbox" id = "sports" name = "interesse" value = "esportes"> <label for = "sports"> Esportes </ label> </ div> <div> - <input type = "checkbox" id = "cozinhar" nome = "interesse" valor = "cozinhar"> + <input type = "checkbox" id = "cozinhar" name = "interesse" value = "cozinhar"> <label for = "cooking"> Cozinhando </ label> </ div> <div> - <input type = "checkbox" id = "outro" nome = "interesse" valor = "outro"> + <input type = "checkbox" id = "outro" name = "interesse" value = "outro"> <label for = "other"> Outro </ label> - <input type = "text" id = "otherValue" nome = "outro"> + <input type = "text" id = "otherValue" name = "outro"> </ div> <div> <button type = "submit"> Enviar formulário </ button> @@ -252,10 +252,10 @@ otherText.style.visibility = 'oculto'; otherCheckbox.onchange = function () { if (otherCheckbox.checked) { - otherText.style.visibility = 'visível'; + otherText.style.visibility = 'visible'; otherText.value = ''; } outro { - otherText.style.visibility = 'oculto'; + otherText.style.visibility = 'hidden'; } };</pre> |