export interface PrivacyLocalization { /** * Privacy page strings */ privacy: { /** * Privacy and security page title */ pageTitle: string; /** * Privacy page sub header for basic settings */ basicSettings: string; /** * Row title for password settings */ passwordTitle: string; /** * Row title for Multi factor authentication settings */ mfaTitle: string; /** * Row description for Multi factor authentication settings */ mfaDescription: string; /** * Text to be displayed inside MFA row if it's forced by vendor */ mfaRequired: string; /** * Text to be displayed as popup when hovering on Mfa required text */ mfaHelpMessage: string; /** * Text to be displayed if MFA is enabled */ mfaEnabled: string; /** * Text to be displayed if MFA is disabled */ mfaDisabled: string; /** * Text to be displayed if empty state is on the screen */ emptyStateText: string; /** * Text to be displayed on MFA Authenticator app card when enrolled */ mfaAuthenticatorApp: string; /** * Text to be displayed on MFA Authenticator app card when not enrolled */ mfaAddAuthenticatorApp: string; /** * Text to be displayed on MFA SMS card when enrolled */ mfaSMS: string; /** * Text to be displayed on MFA SMS card when not enrolled */ mfaAddSMS: string; /** * Text to be displayed on MFA platform card when enrolled */ mfaWebAuthnPlatform: string; /** * Text to be displayed on MFA platform card when disabled */ mfaWebAuthnPlatformDisabledTooltip: string; /** * Text to be displayed on MFA platfrom card when not enrolled */ mfaAddWebAuthnPlatform: string; /** * Text to be displayed on MFA security key card when enrolled */ mfaWebAuthnCrossPlatform: string; /** * Text to be displayed on MFA security key card when not enrolled */ mfaEmailDeviceTitle: string; /** * Text to be displayed on MFA email device card when allowed */ mfaAddWebAuthnCrossPlatform: string; mfaDeleteDevice: string; mfaDeviceEnabled: string; mfaSetup: string; passkeysTitle: string; passkeysSetUpDescription: string; setUpPasskeys: string; noPasskeysSetYet: string; disabledSetUpPasskeysTooltip: string; mfaSmsDisabledTooltip: string; smsTitle: string; setUpSms: string; noPhoneNumberSet: string; disabledSetUpSmsTooltip: string; editPhoneNumber: string; deletePhoneNumber: string; }; /** * Privacy page change password dialogs strings */ privacy_ChangePassword: { /** * Change password dialog title */ title: string; /** * Current password input label */ currentPasswordInputLabel: string; /** * Error to be displayed if current password is empty */ currentPasswordIsRequired: string; /** * New password input label */ newPasswordInputLabel: string; /** * Error to be displayed if new password is empty */ newPasswordIsRequired: string; /** * Confirm password input label */ confirmPasswordInputLabel: string; /** * String displayed as placeholder when confirm password field is empty */ confirmPasswordIsRequired: string; /** * Error displayed when passwords does not match */ confirmPasswordMustMatch: string; /** * Dialog change password submit button */ changePassword: string; /** * Dialog cancel button */ cancel: string; }; /** * Privacy page disable MFA dialogs strings */ privacy_DisableMfa: { /** * Disable mfa dialog title */ title: string; /** * Disable mfa dialog description message */ description: string; /** * Disable token input label */ tokenInputLabel: string; /** * Error displayed if code input is empty */ codeIsRequired: string; /** * Error displayed if code input length less than 6 characters */ codeLengthAtLeast6: string; /** * Disable token input placeholder */ tokenInputLabelPlaceholder: string; /** * Cancel button text */ cancel: string; /** * Disable mfa Submit button text */ disable: string; }; privacy_DisableMfaSms: { dialogTitle: string; disableTitle: string; disableDescription: string; cancel: string; disable: string; otcResend: string; otcResending: string; }; privacy_deleteSmsDialog: { dialogTitle: string; deleteSmsFirstDescription: string; deleteSmsSecondDescription: string; cancel: string; delete: string; }; privacy_DisableMfaAuthenticatorApp: { /** * Disable mfa dialog title */ dialogTitle: string; /** * Disable MFA Authenticator app dialog body title */ disableTitle: string; /** * Disable MFA Authenticator app dialog body description */ disableDescription: string; /** * Cancel button text */ cancel: string; /** * Disable mfa Submit button text */ disable: string; }; /** * Privacy page enable MFA dialogs strings */ privacy_EnableMfa: { /** * Enable Mfa dialog title */ title: string; /** * Enable Mfa dialog subtitle text */ subtitle: string; /** * Enable MFA dialog Description "before" authenticator link */ scanDescription1: string; /** * Enable MFA dialog Description "after" authenticator link */ scanDescription2: string; /** * Enable MFA dialog code input label */ codeInputLabel: string; /** * Enable MFA dialog code input placeholder */ codeInputPlaceholder: string; /** * Error displayed if code input is empty */ codeIsRequired: string; /** * Error displayed if code input length less than 6 characters */ codeLengthAtLeast6: string; /** * Recovery code title after successfully enable mfa */ recoveryCodeTitle: string; /** * Recovery code input label after successfully enable mfa */ recoveryCodeLabel: string; /** * Recovery code instructions after successfully enable mfa */ recoveryCodeInstructions: string; /** * Enable Mfa cancel button text */ cancel: string; /** * Enable Mfa verify mfa code button text to enable mfa */ verify: string; /** * Enable Mfa close button text after successfully enable mfa */ close: string; }; privacy_EnableMfaSms: { /** * Pre enroll MFA SMS dialog body title */ preEnrollTitle: string; /** * Pre enroll MFA SMS dialog body description */ preEnrollDescription: string; /** * Enable MFA SMS dialog phone input required error message */ phoneIsRequired: string; /** * Enable MFA SMS dialog phone input invalid error message */ phoneIsInvalid: string; /** * Enroll MFA SMS dialog body title */ enrollTitle: string; /** * Enroll MFA SMS dialog body description */ enrollDescription: string; cancel: string; confirm: string; otcResend: string; otcResending: string; }; privacy_EnableMfaAuthenticatorApp: { /** * Enroll MFA Authenticator app dialog body description */ enrollDescription: string; cancel: string; confirm: string; }; privacy_UserSessions: { /** * Login sessions table header text */ loginSessionsTitle: string; /** * Table column text to be display as 'Device' header */ deviceHeader: string; /** * Table column text to be display as 'Location' header */ locationHeader: string; /** * Table column text to be display as 'IP Address' header */ ipAddressHeader: string; /** * Table column text to be display as 'Time' header */ timeHeader: string; /** * Table current session chip */ currentSessionChip: string; /** * Table impersonated session chip */ impersonatedSessionChip: string; /** * Table logout column action text */ logout: string; /** * Table logout all button text */ logoutAllButtonText: string; /** * Logout all dialog title */ logoutAllDialogTitle: string; /** * Logout all dialog text */ logoutAllDialogText: string; /** * Logout all accept button text */ logoutAllDialogAcceptButton: string; }; privacy_deletePasskeysDialog: { title: string; description: string; cancel: string; delete: string; }; privacy_setUpSmsDialog: { setUpSmsTitle: string; preVerifySmsDescription: string; phoneIsRequired: string; phoneIsInvalid: string; verifyDescription: string; cancel: string; confirm: string; continue: string; otcResend: string; otcResending: string; successfullySetUpTitle: string; successfullySetUpDescription: string; phoneNumber: string; successfullyAddedTitle: string; successfullyAddedDescription: string; done: string; }; }