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 91f1909 commit 4be6bebCopy full SHA for 4be6beb
src/wp-admin/includes/dashboard.php
@@ -309,10 +309,10 @@ function wp_dashboard_right_now() {
309
if ( $num_posts && $num_posts->publish ) {
310
if ( 'post' === $post_type ) {
311
/* translators: %s: Number of posts. */
312
- $text = _n( '%s Published Post', '%s Published Posts', $num_posts->publish );
+ $text = _n( '%s Published post', '%s Published posts', $num_posts->publish );
313
} else {
314
/* translators: %s: Number of pages. */
315
- $text = _n( '%s Published Page', '%s Published Pages', $num_posts->publish );
+ $text = _n( '%s Published page', '%s Published pages', $num_posts->publish );
316
}
317
318
$text = sprintf( $text, number_format_i18n( $num_posts->publish ) );
0 commit comments