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 7505416 commit 464ff61
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/block-editor/src/components/block-compare/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ function BlockCompare( {
return (
<div className="block-editor-block-compare__wrapper">
<BlockView
title={ __( 'Current' ) }
title={
/* translators: Current block HTML before conversion, for comparisons. */
__( 'Current' )
}
className="block-editor-block-compare__current"
action={ onKeep }
actionText={ __( 'Convert to HTML' ) }
Expand All @@ -70,7 +73,7 @@ function BlockCompare( {
/>

<BlockView
title={ __( 'After Conversion' ) }
title={ __( 'After conversion' ) }
className="block-editor-block-compare__converted"
action={ onConvert }
actionText={ convertButtonText }
Expand Down

0 comments on commit 464ff61

Please sign in to comment.