From e8757f8aeffd9e92abbb802f24aa9739c82914b8 Mon Sep 17 00:00:00 2001 From: Kayquer Date: Sat, 14 Aug 2021 19:43:47 -0300 Subject: Update index.html (#2044) Several HTML attributes had been translated to Portuguese like, name and value. JS events for click where translated too. --- .../web/html/element/input/checkbox/index.html | 30 +++++++++++----------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'files/pt-br/web') 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
<form>
   <div>
-    <input type = "checkbox" id = "subscribeNews" nome = "subscribe" value = "newsletter">
+    <input type = "checkbox" id = "subscribeNews" name = "subscribe" value = "newsletter">
     <label for = "subscribeNews"> Subscreva a newsletter? </ label>
   </ div>
   <div>
@@ -77,11 +77,11 @@ 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>
 </ fieldset>
@@ -97,11 +97,11 @@ translation_of: Web/HTML/Element/input/checkbox
<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>
@@ -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'; } };
-- cgit v1.2.3-54-g00ecf