We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cdfb48 commit 1edc3b6Copy full SHA for 1edc3b6
templates/components/password_field.html
@@ -17,11 +17,13 @@
17
if (input.type === "password") {
18
input.type = "text";
19
button.innerHTML = `{{ icon.visibility_on() }}`;
20
- button.setAttribute('aria-label', 'Masquer');
+ //todo translate this
21
+ button.setAttribute('aria-label', 'Hide');
22
} else {
23
input.type = "password";
24
button.innerHTML = `{{ icon.visibility_off() }}`;
- button.setAttribute('aria-label', 'Afficher');
25
26
+ button.setAttribute('aria-label', 'Show');
27
}
28
29
</script>
0 commit comments