Add translator comment. Props nbachiyski. fixes #10737
git-svn-id: http://svn.automattic.com/wordpress/trunk@12201 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4b8a5274af
commit
8085eddc56
|
@ -817,6 +817,7 @@ function wp_get_archives($args = '') {
|
||||||
$afterafter = $after;
|
$afterafter = $after;
|
||||||
foreach ( (array) $arcresults as $arcresult ) {
|
foreach ( (array) $arcresults as $arcresult ) {
|
||||||
$url = get_month_link( $arcresult->year, $arcresult->month );
|
$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);
|
$text = sprintf(__('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year);
|
||||||
if ( $show_post_count )
|
if ( $show_post_count )
|
||||||
$after = ' ('.$arcresult->posts.')' . $afterafter;
|
$after = ' ('.$arcresult->posts.')' . $afterafter;
|
||||||
|
|
Loading…
Reference in New Issue