Skip to content

Commit

Permalink
Fix change I missed during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
louwie17 committed Oct 31, 2024
1 parent 58150ef commit 5e91b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dataviews/src/dataforms-layouts/panel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
Dropdown,
Button,
} from '@wordpress/components';
import { sprintf, __ } from '@wordpress/i18n';
import { sprintf, __, _x } from '@wordpress/i18n';
import { useState, useMemo, useContext } from '@wordpress/element';
import { closeSmall } from '@wordpress/icons';

Expand Down Expand Up @@ -121,7 +121,7 @@ export default function FormPanelField< Item >( {
aria-expanded={ isOpen }
aria-label={ sprintf(
// translators: %s: Field name.
__( 'Edit %s' ),
_x( 'Edit %s', 'field' ),
fieldDefinition.label
) }
onClick={ onToggle }
Expand Down

0 comments on commit 5e91b52

Please sign in to comment.