From f0fe39730781cf380a1531949a72096df1669545 Mon Sep 17 00:00:00 2001 From: Todd Martin <106564991+trmartin4@users.noreply.github.com> Date: Fri, 6 Sep 2024 09:20:41 -0400 Subject: [PATCH] Changed temp password reset phrase names to match translations (#10756) --- .../src/auth/components/update-temp-password.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/angular/src/auth/components/update-temp-password.component.ts b/libs/angular/src/auth/components/update-temp-password.component.ts index 78fb9b625b..b08c6313d6 100644 --- a/libs/angular/src/auth/components/update-temp-password.component.ts +++ b/libs/angular/src/auth/components/update-temp-password.component.ts @@ -101,11 +101,11 @@ export class UpdateTempPasswordComponent extends BaseChangePasswordComponent imp get masterPasswordWarningText(): string { if (this.reason == ForceSetPasswordReason.WeakMasterPassword) { - return this.i18nService.t("weakMasterPasswordWarning"); + return this.i18nService.t("updateWeakMasterPasswordWarning"); } else if (this.reason == ForceSetPasswordReason.TdeOffboarding) { return this.i18nService.t("tdeDisabledMasterPasswordRequired"); } else { - return this.i18nService.t("masterPasswordWarning"); + return this.i18nService.t("updateMasterPasswordWarning"); } }