From ef81adda7b296e9cdee626c6282db982ba482165 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 3 Feb 2012 00:23:25 +0000 Subject: [PATCH] Translate the monthnum/month abbreviation construct in the Publish box. see #19598. git-svn-id: https://develop.svn.wordpress.org/trunk@19820 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index c496441b72..baaeba0a1b 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -589,7 +589,8 @@ function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 ) { $month .= "\t\t\t" . '\n"; + /* translators: 1: month number (01, 02, etc.), 2: month abbreviation */ + $month .= '>' . sprintf( __( '%1$s-%2$s' ), $monthnum, $wp_locale->get_month_abbrev( $wp_locale->get_month( $i ) ) ) . "\n"; } $month .= '';