Skip to content

Commit

Permalink
i18n fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Feb 17, 2023
1 parent 05d3575 commit 08f7fe7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const BlockTransformationsMenu = ( {
);
const successNotice = sprintf(
/* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */
__( '%1$s transformed to %2$s' ),
__( '"%1$s" transformed to "%2$s"' ),
blockTitle,
selectedItem.label
);
Expand All @@ -82,7 +82,7 @@ const BlockTransformationsMenu = ( {
leftAlign={ true }
getAnchor={ getAnchor }
// translators: %s: block title e.g: "Paragraph".
title={ sprintf( __( 'Transform %s to' ), blockTitle ) }
title={ sprintf( __( 'Transform "%s" to' ), blockTitle ) }
/>
);
};
Expand Down

0 comments on commit 08f7fe7

Please sign in to comment.