Skip to content

Commit

Permalink
Add translator context for Group as a verb
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewserong committed Mar 25, 2022
1 parent 57d0efe commit 9e5c213
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import { useDispatch, useSelect } from '@wordpress/data';
import { switchToBlockType } from '@wordpress/blocks';
import { ToolbarButton, ToolbarGroup } from '@wordpress/components';
import { group } from '@wordpress/icons';
import { __ } from '@wordpress/i18n';
import { _x } from '@wordpress/i18n';

/**
* Internal dependencies
*/
import { useConvertToGroupButtonProps } from '../convert-to-group-buttons';
import { store as blockEditorStore } from '../../store';

function BlockGroupToolbar( { label = __( 'Group' ) } ) {
function BlockGroupToolbar( { label = _x( 'Group', 'verb' ) } ) {
const {
blocksSelection,
clientIds,
Expand Down

0 comments on commit 9e5c213

Please sign in to comment.