diff --git a/packages/suite/src/views/onboarding/steps/RecoveryStep/index.tsx b/packages/suite/src/views/onboarding/steps/RecoveryStep/index.tsx
index 06a4e18682..063edf82d6 100644
--- a/packages/suite/src/views/onboarding/steps/RecoveryStep/index.tsx
+++ b/packages/suite/src/views/onboarding/steps/RecoveryStep/index.tsx
@@ -2,10 +2,12 @@ import { Translation, TranslationKey } from '@suite/intl';
import { isDeviceWithButtonOnlyNoTouchscreen } from '@suite-common/suite-utils';
import { selectSelectedDevice } from '@suite-common/wallet-core';
import { DeviceModelInternal } from '@trezor/device-utils';
+import { HELP_CENTER_ADVANCED_RECOVERY_URL } from '@trezor/urls';
import { goToNextStep, updateAnalytics } from 'src/actions/onboarding/onboardingActions';
import { OnboardingCard } from 'src/components/onboarding/OnboardingCard/OnboardingCard';
import { SelectRecoveryType, SelectRecoveryWord, SelectWordCount } from 'src/components/recovery';
+import { TrezorLink } from 'src/components/suite';
import { useDispatch, useRecovery, useSelector } from 'src/hooks/suite';
import { isStandardRecoveryDisabled } from 'src/utils/suite/recovery';
@@ -18,6 +20,7 @@ export const RecoveryStep = () => {
const {
status,
error,
+ wordsCount,
wordRequestInputType,
setWordsCount,
setAdvancedRecovery,
@@ -95,7 +98,22 @@ export const RecoveryStep = () => {
return (
}
- description={}
+ description={
+ deviceModelInternal === DeviceModelInternal.T1B1 && wordsCount === 24 ? (
+ (
+
+ {chunks}
+
+ ),
+ }}
+ />
+ ) : (
+
+ )
+ }
>
diff --git a/suite/intl/src/messages.ts b/suite/intl/src/messages.ts
index c1f31a8bc9..1ebf3e7c65 100644
--- a/suite/intl/src/messages.ts
+++ b/suite/intl/src/messages.ts
@@ -2869,6 +2869,13 @@ export const messages = defineMessages({
'There are two methods of recovery for T1B1. This is a short explanation text.',
id: 'TR_RECOVERY_TYPES_DESCRIPTION',
},
+ TR_RECOVERY_TYPES_DESCRIPTION_24_T1B1_ONLY: {
+ defaultMessage:
+ 'Standard recovery is sufficiently secure and more efficient. Choose advanced recovery if you prefer entering your wallet backup on your Trezor’s screen for ultimate security. To learn more, visit our guide.',
+ description:
+ 'The updated recovery types description for T1B1 with standard or advanced recovery for 24 words backup. It is a short explanation text.',
+ id: 'TR_RECOVERY_TYPES_DESCRIPTION_24_T1B1_ONLY',
+ },
TR_RETRY: {
defaultMessage: 'Retry',
description: 'Retry button',