We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b058141 commit a50d231Copy full SHA for a50d231
packages/editor/src/components/post-card-panel/index.js
@@ -88,9 +88,9 @@ export default function PostCardPanel( {
88
let title = __( 'No title' );
89
if ( labels?.name && postIds.length > 1 ) {
90
title = sprintf(
91
- // translators: %i number of selected items %s: Name of the plural post type e.g: "Posts".
92
- __( '%i %s' ),
93
- postId.length,
+ // translators: %1$d number of selected items %2$s: Name of the plural post type e.g: "Posts".
+ __( '%1$d %2$s' ),
+ postIds.length,
94
labels?.name
95
);
96
} else if ( postTitle ) {
0 commit comments