Skip to content

Commit

Permalink
Merge pull request #1221 from bluehost/fix/wonderblocks-incorrect-bra…
Browse files Browse the repository at this point in the history
…nd-name

Correct misbranded spelling of WonderBlocks and DOM ID dupe
  • Loading branch information
wpalani authored Jul 30, 2024
2 parents 8a18a63 + b7a69b8 commit f141b88
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/app/pages/settings/wonderBlocksSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ const WonderBlocksSettings = () => {

const getWonderBlocksNoticeTitle = () => {
return wonderBlocks
? __( 'Wonder Blocks Enabled', 'wp-plugin-bluehost' )
: __( 'Wonder Blocks Disabled', 'wp-plugin-bluehost' );
? __( 'WonderBlocks Enabled', 'wp-plugin-bluehost' )
: __( 'WonderBlocks Disabled', 'wp-plugin-bluehost' );
};
const getWonderBlocksNoticeText = () => {
return wonderBlocks
? __(
'Create new content to see Wonder Blocks in action.',
'Create new content to see WonderBlocks in action.',
'wp-plugin-bluehost'
)
: __(
'Wonder Blocks will no longer display.',
'WonderBlocks will no longer display.',
'wp-plugin-bluehost'
);
};
Expand Down Expand Up @@ -77,10 +77,10 @@ const WonderBlocksSettings = () => {
return (
<div className="nfd-flex nfd-flex-col nfd-gap-6">
<ToggleField
id="help-center-toggle"
label="Wonder Blocks"
id="wonderblocks-toggle"
label="WonderBlocks"
description={ __(
'Wonder Blocks provides a library of customizable block patterns and page templates.',
'WonderBlocks provides a library of customizable block patterns and page templates.',
'wp-plugin-bluehost'
) }
disabled={ wonderBlocksLocked }
Expand Down

0 comments on commit f141b88

Please sign in to comment.