Skip to content

Commit

Permalink
i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
getdave committed Aug 21, 2023
1 parent 59c2aa1 commit fc8d727
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const ListViewBlockRenameUI = forwardRef(
onCancel();

// Must be assertive to immediately announce change.
speak( 'Leaving block name edit mode', 'assertive' );
speak( __( 'Leaving block name edit mode' ), 'assertive' );
};

const handleSubmit = () => {
Expand All @@ -78,7 +78,7 @@ const ListViewBlockRenameUI = forwardRef(
};

useEffect( () => {
speak( 'Entering block name edit mode', 'assertive' );
speak( __( 'Entering block name edit mode' ), 'assertive' );
}, [] );

return (
Expand Down

0 comments on commit fc8d727

Please sign in to comment.