Skip to content

Commit

Permalink
Fix sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
IanRamosC committed Nov 27, 2024
1 parent 1ea40ab commit f3dbbd5
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,13 @@ const LoadingStep = ( { type }: LoadingStepProps ) => {
'Getting things ready in the background — almost there!',
'jetpack-my-jetpack'
);
/* translators: %s: is an emoji 🎉 */
const connectionReadyTitle = __( 'Jetpack is connected %s', 'jetpack-my-jetpack' );
const connectionReadyTitle = sprintf(
/* translators: %s: is an emoji */
__( 'Jetpack is connected %s', 'jetpack-my-jetpack' ),
'🎉'
);
const connectionReadyDescription = __(
'Youre connected and ready to fly!',
'You’re connected and ready to fly!',
'jetpack-my-jetpack'
);

Expand All @@ -62,7 +65,7 @@ const LoadingStep = ( { type }: LoadingStepProps ) => {
<JetpackLogo />
</div>
<Text variant="title-medium" mb={ 1 }>
{ type === 'connecting' ? connectingTitle : sprintf( connectionReadyTitle, '🎉' ) }
{ type === 'connecting' ? connectingTitle : connectionReadyTitle }
</Text>
<Text variant="body-small">
{ type === 'connecting' ? connectingDescription : connectionReadyDescription }
Expand All @@ -82,7 +85,7 @@ const LoadingStep = ( { type }: LoadingStepProps ) => {
</Text>
<Text variant="body-small">
{ __(
'Were crunching the numbers to find the Jetpack tools that are the best match for your site.',
'Were crunching the numbers to find the Jetpack tools that are the best match for your site.',
'jetpack-my-jetpack'
) }
</Text>
Expand Down

0 comments on commit f3dbbd5

Please sign in to comment.