From 76fdc4d91e4538a98de241b0f915f49386e419fc Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 17 Nov 2009 20:54:38 +0000 Subject: [PATCH] Add translator comment. Props nbachiyski. fixes #10737 git-svn-id: https://develop.svn.wordpress.org/trunk@12201 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/general-template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 2b8fad3bad..cc361f7638 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -817,6 +817,7 @@ function wp_get_archives($args = '') { $afterafter = $after; foreach ( (array) $arcresults as $arcresult ) { $url = get_month_link( $arcresult->year, $arcresult->month ); + /* translators: 1: month name, 2: 4-digit year */ $text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year); if ( $show_post_count ) $after = ' ('.$arcresult->posts.')' . $afterafter; @@ -2045,4 +2046,4 @@ function get_the_generator( $type ) { return apply_filters( "get_the_generator_{$type}", $gen, $type ); } -?> +?> \ No newline at end of file