Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions packages/editor/src/components/collab-sidebar/comments.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
DropdownMenu,
} from '@wordpress/components';
import { published, moreVertical } from '@wordpress/icons';
import { __, _x, sprintf } from '@wordpress/i18n';
import { __, _x, _n, sprintf } from '@wordpress/i18n';
import { useSelect } from '@wordpress/data';
import { store as blockEditorStore } from '@wordpress/block-editor';

Expand Down Expand Up @@ -156,7 +156,11 @@ function Thread( {
>
{ sprintf(
// translators: %s: number of replies.
_x( '%s more replies', 'Show replies button' ),
_n(
'%s more reply',
'%s more replies',
thread?.reply?.length
),
thread?.reply?.length
) }
</Button>
Expand Down
Loading