Skip to content

Commit ae79319

Browse files
updated text and buttons
1 parent 8061849 commit ae79319

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/welcome/admin.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -997,11 +997,11 @@ const Blocks = props => {
997997

998998
<div className="s-blocks">
999999
<h2>{ __( 'Blocks', i18n ) }</h2>
1000-
<p className="s-settings-subtitle">{ __( 'You can enable, hide and disable Stackable blocks. Hiding the blocks hides them from the editor. Disabling the blocks prevent them from being loaded for faster performance.', i18n ) }</p>
1000+
<p className="s-settings-subtitle">{ __( 'Here you can enable, hide and disable Stackable blocks. Hiding blocks will prevent new blocks from being added in the Block Editor. Disabling blocks will prevent them from being registered at all. When using block variations or design library patterns, disabled blocks will be substituted with the relevant core blocks.', i18n ) }</p>
10011001
<div className="s-settings-header">
1002-
<button onClick={ enableAllBlocks } className="button button-large button-link">{ __( 'Enable All', i18n ) }</button>
1003-
<button onClick={ hideAllBlocks } className="button button-large button-link">{ __( 'Hide All', i18n ) }</button>
1004-
<button onClick={ disableAllBlocks } className="button button-large button-link">{ __( 'Disable All', i18n ) }</button>
1002+
<Button variation="secondary" onClick={ enableAllBlocks }>{ __( 'Enable All', i18n ) }</Button>
1003+
<Button variation="secondary" onClick={ hideAllBlocks }>{ __( 'Hide All', i18n ) }</Button>
1004+
<Button variation="secondary" onClick={ disableAllBlocks }>{ __( 'Disable All', i18n ) }</Button>
10051005
</div>
10061006
{ BLOCK_CATEROGIES.map( ( {
10071007
id, label, Icon,

0 commit comments

Comments
 (0)