From 7ff19e60128038f7db9e856d490538439d48a223 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 3 Feb 2012 00:11:01 +0000 Subject: [PATCH] Use existing string to properly translate month + year combo. see #19598. git-svn-id: https://develop.svn.wordpress.org/trunk@19819 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/class-wp-list-table.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index d55eb1c0ec..aa56a3e9cd 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -386,7 +386,8 @@ class WP_List_Table { printf( "\n", selected( $m, $year . $month, false ), esc_attr( $arc_row->year . $month ), - $wp_locale->get_month( $month ) . " $year" + /* translators: 1: month name, 2: 4-digit year */ + sprintf( __( '%1$s %2$d' ), $wp_locale->get_month( $month ), $year ) ); } ?>