diff --git a/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/test/translations.ts b/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/test/translations.ts index 04b8fe0561fab..0b3ccb1564c1c 100644 --- a/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/test/translations.ts +++ b/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/test/translations.ts @@ -19,8 +19,8 @@ describe( 'Translations', () => { const freeFlowTranslations = getLaunchpadTranslations( 'free' ); expect( freeFlowTranslations.flowName ).toEqual( 'Free Website' ); - expect( freeFlowTranslations.title ).toEqual( "Your new site's ready!" ); - expect( freeFlowTranslations.launchTitle ).toEqual( "Your new site's ready!" ); + expect( freeFlowTranslations.title ).toEqual( "Let's get ready to launch!" ); + expect( freeFlowTranslations.launchTitle ).toEqual( "Let's get ready to launch!" ); } ); } ); diff --git a/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/translations.tsx b/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/translations.tsx index db1f13b8547e8..fa021b31ac9f8 100644 --- a/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/translations.tsx +++ b/client/landing/stepper/declarative-flow/internals/steps-repository/launchpad/translations.tsx @@ -4,6 +4,8 @@ import { NEWSLETTER_FLOW, VIDEOPRESS_FLOW, FREE_FLOW, + WRITE_FLOW, + BUILD_FLOW, } from '@automattic/onboarding'; import { translate } from 'i18n-calypso'; import { TranslatedLaunchpadStrings } from './types'; @@ -34,17 +36,20 @@ export function getLaunchpadTranslations( flow: string | null ): TranslatedLaunc break; case FREE_FLOW: translatedStrings.flowName = translate( 'Free Website' ); - translatedStrings.title = translate( "Your new site's ready!" ); - translatedStrings.launchTitle = translate( "Your new site's ready!" ); - translatedStrings.subtitle = translate( - 'Launch it to the world. Or add some finishing touches. (You can come back to make changes any time.)' - ); + translatedStrings.title = translate( "Let's get ready to launch!" ); + translatedStrings.launchTitle = translate( "Let's get ready to launch!" ); + translatedStrings.subtitle = translate( "Here's what to do next." ); break; case VIDEOPRESS_FLOW: translatedStrings.flowName = translate( 'Video' ); translatedStrings.title = translate( 'Your site is almost ready!' ); translatedStrings.launchTitle = translate( 'Your site is almost ready!' ); break; + case WRITE_FLOW: + case BUILD_FLOW: + translatedStrings.title = translate( "Let's get ready to launch!" ); + translatedStrings.launchTitle = translate( "Let's get ready to launch!" ); + translatedStrings.subtitle = translate( "Here's what to do next." ); } return translatedStrings;