diff --git a/src/components/admin/AdminUserDeletionDialog.tsx b/src/components/admin/AdminUserDeletionDialog.tsx index 446bbe17..028299a2 100644 --- a/src/components/admin/AdminUserDeletionDialog.tsx +++ b/src/components/admin/AdminUserDeletionDialog.tsx @@ -235,7 +235,7 @@ export function AdminUserDeletionDialog({
- MFA Verification Required + Multi-Factor Authentication Verification Required
This is a critical action that requires additional verification diff --git a/src/components/auth/MFARemovalDialog.tsx b/src/components/auth/MFARemovalDialog.tsx index c0f6aa87..a8fc54f3 100644 --- a/src/components/auth/MFARemovalDialog.tsx +++ b/src/components/auth/MFARemovalDialog.tsx @@ -45,8 +45,8 @@ export function MFARemovalDialog({ open, onOpenChange, factorId, onSuccess }: MF if (currentAal !== 'aal2') { toast({ - title: 'MFA Required', - description: 'Please verify your identity with MFA before making security changes', + title: 'Multi-Factor Authentication Required', + description: 'Please verify your identity with Multi-Factor Authentication before making security changes', variant: 'destructive' }); onOpenChange(false); @@ -161,8 +161,8 @@ export function MFARemovalDialog({ open, onOpenChange, factorId, onSuccess }: MF // Phase 2: Check if user's role requires MFA if (requiresMFA) { toast({ - title: 'MFA Required', - description: 'Your role requires two-factor authentication and it cannot be disabled', + title: 'Multi-Factor Authentication Required', + description: 'Your role requires Multi-Factor Authentication and it cannot be disabled', variant: 'destructive' }); handleClose(); @@ -182,8 +182,8 @@ export function MFARemovalDialog({ open, onOpenChange, factorId, onSuccess }: MF if (data?.error) throw new Error(data.error); toast({ - title: 'MFA Disabled', - description: 'Two-factor authentication has been disabled' + title: 'Multi-Factor Authentication Disabled', + description: 'Multi-Factor Authentication has been disabled' }); handleClose(); onSuccess(); @@ -204,14 +204,14 @@ export function MFARemovalDialog({ open, onOpenChange, factorId, onSuccess }: MF - Disable Two-Factor Authentication + Disable Multi-Factor Authentication
- Disabling MFA will make your account less secure. You'll need to verify your identity first. + Disabling Multi-Factor Authentication will make your account less secure. You'll need to verify your identity first. @@ -235,9 +235,9 @@ export function MFARemovalDialog({ open, onOpenChange, factorId, onSuccess }: MF {step === 'totp' && (
-

Step 2 of 3: Enter your current TOTP code

+

Step 2 of 3: Enter your current code

- +

Step 3 of 3: Final confirmation

- Are you sure you want to disable two-factor authentication? This will: + Are you sure you want to disable Multi-Factor Authentication? This will:

    -
  • Remove TOTP protection from your account
  • +
  • Remove Multi-Factor Authentication protection from your account
  • Send a security notification email
  • Log this action in your security history
@@ -285,7 +285,7 @@ export function MFARemovalDialog({ open, onOpenChange, factorId, onSuccess }: MF )} {step === 'confirm' && ( - {loading ? 'Disabling...' : 'Disable MFA'} + {loading ? 'Disabling...' : 'Disable Multi-Factor Authentication'} )} diff --git a/src/components/auth/MFARequiredAlert.tsx b/src/components/auth/MFARequiredAlert.tsx index 68ec602a..e5bd143d 100644 --- a/src/components/auth/MFARequiredAlert.tsx +++ b/src/components/auth/MFARequiredAlert.tsx @@ -30,18 +30,18 @@ export function MFARequiredAlert() { return ( - Two-Factor Authentication Required + Multi-Factor Authentication Required

{needsVerification - ? 'Please verify your identity with two-factor authentication to access this area.' - : 'Your role requires two-factor authentication to access this area.'} + ? 'Please verify your identity with Multi-Factor Authentication to access this area.' + : 'Your role requires Multi-Factor Authentication to access this area.'}

diff --git a/src/components/auth/MFAStepUpModal.tsx b/src/components/auth/MFAStepUpModal.tsx index a8133b58..daa7a668 100644 --- a/src/components/auth/MFAStepUpModal.tsx +++ b/src/components/auth/MFAStepUpModal.tsx @@ -19,7 +19,7 @@ export function MFAStepUpModal({ open, factorId, onSuccess, onCancel }: MFAStepU Additional Verification Required
- Your role requires two-factor authentication. Please verify your identity to continue. + Your role requires Multi-Factor Authentication. Please verify your identity to continue. diff --git a/src/components/auth/TOTPSetup.tsx b/src/components/auth/TOTPSetup.tsx index ccb0ead3..9cb7ab1f 100644 --- a/src/components/auth/TOTPSetup.tsx +++ b/src/components/auth/TOTPSetup.tsx @@ -131,10 +131,10 @@ export function TOTPSetup() { } handleSuccess( - 'TOTP Enabled', + 'Multi-Factor Authentication Enabled', isOAuthUser - ? 'Please verify with your authenticator code to continue.' - : 'Please sign in again to activate MFA protection.' + ? 'Please verify with your authenticator app to continue.' + : 'Please sign in again to activate Multi-Factor Authentication protection.' ); if (isOAuthUser) { @@ -249,7 +249,7 @@ export function TOTPSetup() { Cancel
@@ -262,7 +262,7 @@ export function TOTPSetup() { - Add an extra layer of security to your account with two-factor authentication. + Add an extra layer of security to your account with Multi-Factor Authentication. @@ -271,7 +271,7 @@ export function TOTPSetup() { - Two-factor authentication is enabled for your account. You'll be prompted for a verification code when signing in. + Multi-Factor Authentication is enabled for your account. You'll be prompted for a code from your authenticator app when signing in. @@ -280,7 +280,7 @@ export function TOTPSetup() { - Your role requires MFA. You cannot disable two-factor authentication. + Your role requires Multi-Factor Authentication. You cannot disable it. )} diff --git a/src/components/settings/PasswordUpdateDialog.tsx b/src/components/settings/PasswordUpdateDialog.tsx index e0ff3d28..e9c18eeb 100644 --- a/src/components/settings/PasswordUpdateDialog.tsx +++ b/src/components/settings/PasswordUpdateDialog.tsx @@ -463,7 +463,7 @@ export function PasswordUpdateDialog({ open, onOpenChange, onSuccess }: Password
- +
- Two-Factor Authentication + Multi-Factor Authentication
- Add an extra layer of security to your account with TOTP authentication + Add an extra layer of security to your account with Multi-Factor Authentication @@ -434,7 +434,7 @@ export function SecurityTab() { )} Last active: {format(new Date(session.refreshed_at || session.created_at), 'PPpp')} - {session.aal === 'aal2' && ' • MFA'} + {session.aal === 'aal2' && ' • Multi-Factor'}

{session.not_after && (