Skip to content
Prev Previous commit
Add translators note
  • Loading branch information
ockham committed Jun 17, 2022
commit d48277eefd010ff0f8ddd76a94fee695a8393347
7 changes: 5 additions & 2 deletions packages/block-library/src/post-comments-form/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from '@wordpress/block-editor';
import { Button } from '@wordpress/components';
import { useEntityProp, store as coreStore } from '@wordpress/core-data';
import { __, sprintf } from '@wordpress/i18n';
import { __, _x, sprintf } from '@wordpress/i18n';
import { useSelect } from '@wordpress/data';

/**
Expand Down Expand Up @@ -75,7 +75,10 @@ export default function PostCommentsFormEdit( {
onClick={ () => setCommentStatus( 'open' ) }
variant="primary"
>
{ __( 'Enable comments' ) }
{ _x(
'Enable comments',
'action that affects the current post'
) }
</Button>,
];
showPlaceholder = false;
Expand Down