Skip to content

Commit

Permalink
fix: blockname typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Arukuen committed Oct 24, 2024
1 parent 56551e1 commit fadc1a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/welcome/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ const ToggleBlockDialog = ( {
<div className="s-toggle-block-dialog">
<div className="s-toggle-block-dialog-content">
{ isDisabled
? <p>{ __( 'Disabling' + { blockName } + 'will also disable the blocks that require it:', i18n ) }</p> // eslint-disable-line @wordpress/i18n-no-variables
: <p>{ __( 'Enabling' + { blockName } + 'will also enable its required innerblocks:', i18n ) }</p> // eslint-disable-line @wordpress/i18n-no-variables
? <p>{ __( 'Disabling ' + blockName + ' will also disable the blocks that require it:', i18n ) }</p> // eslint-disable-line @wordpress/i18n-no-variables
: <p>{ __( 'Enabling ' + blockName + ' will also enable its required innerblocks:', i18n ) }</p> // eslint-disable-line @wordpress/i18n-no-variables
}
<ul>
{ blockList.map( ( block, i ) => (
Expand Down

0 comments on commit fadc1a4

Please sign in to comment.