Skip to content

Commit 4be6beb

Browse files
committed
fix: Revert translation strings for published posts and pages
1 parent 91f1909 commit 4be6beb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wp-admin/includes/dashboard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ function wp_dashboard_right_now() {
309309
if ( $num_posts && $num_posts->publish ) {
310310
if ( 'post' === $post_type ) {
311311
/* translators: %s: Number of posts. */
312-
$text = _n( '%s Published Post', '%s Published Posts', $num_posts->publish );
312+
$text = _n( '%s Published post', '%s Published posts', $num_posts->publish );
313313
} else {
314314
/* translators: %s: Number of pages. */
315-
$text = _n( '%s Published Page', '%s Published Pages', $num_posts->publish );
315+
$text = _n( '%s Published page', '%s Published pages', $num_posts->publish );
316316
}
317317

318318
$text = sprintf( $text, number_format_i18n( $num_posts->publish ) );

0 commit comments

Comments
 (0)