web/flow: fix translate extract (cherry-pick #13208) (#13210)

web/flow: fix translate extract (#13208)

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Jens L. <jens@goauthentik.io>
This commit is contained in:
gcp-cherry-pick-bot[bot]
2025-02-24 11:59:29 +01:00
committed by GitHub
parent ed83c2b0b1
commit 78f997fbee
2 changed files with 4 additions and 4 deletions

View File

@ -269,7 +269,7 @@ export class InputPassword extends AKElement {
toggleElement.setAttribute(
"aria-label",
msg(masked ? Visibility.Reveal.label : Visibility.Mask.label),
masked ? Visibility.Reveal.label : Visibility.Mask.label,
);
const iconElement = toggleElement.querySelector("i")!;
@ -285,7 +285,7 @@ export class InputPassword extends AKElement {
return html`<button
${ref(this.toggleVisibilityRef)}
aria-label=${msg(label)}
aria-label=${label}
@click=${this.togglePasswordVisibility}
class="pf-c-button pf-m-control"
type="button"