Skip to content

Commit

Permalink
Merge pull request #586 from tomusborne/fix/text-domains
Browse files Browse the repository at this point in the history
Fix: Wrong text domains
  • Loading branch information
tomusborne authored Nov 8, 2023
2 parents ca2a7d6 + 852ea64 commit 0dabc63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/unit-control/unit-dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function UnitDropdown( { value, onChange, units = [], disabled }
<>
<DropdownMenu
className="gblocks-unit-control-units"
label={ __( 'Select a unit', 'generateblocks' ) }
label={ __( 'Select a unit', 'generatepress' ) }
icon={ null }
toggleProps={ {
children: value || String.fromCharCode( 0x2014 ),
Expand Down Expand Up @@ -49,7 +49,7 @@ export default function UnitDropdown( { value, onChange, units = [], disabled }
onClick={ () => {
window.open( 'https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units', '_blank' ).focus();
} }
label={ __( 'Learn more about units', 'generateblocks' ) }
label={ __( 'Learn more about units', 'generatepress' ) }
showTooltip={ true }
>
{ getIcon( 'info' ) }
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/go-pro/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const GoPro = () => {
</div>

<div className="generatepress-dashboard__section-description">
<p>{ __( 'Take GeneratePress to the next level with more options, professionally designed starter sites, and block-based theme building.', 'gp-premium' ) }</p>
<p>{ __( 'Take GeneratePress to the next level with more options, professionally designed starter sites, and block-based theme building.', 'generatepress' ) }</p>
</div>

<div className="generatepress-dashboard__section generatepress-dashboard__premium">
Expand Down

0 comments on commit 0dabc63

Please sign in to comment.