Ticket #1540: wp_archive-l10n.patch
| File wp_archive-l10n.patch, 913 bytes (added by , 20 years ago) |
|---|
-
template-functions-general.php
332 332 foreach ( $arcresults as $arcresult ) { 333 333 $url = get_month_link($arcresult->year, $arcresult->month); 334 334 if ( $show_post_count ) { 335 $text = sprintf( '%s %d', $wp_locale->get_month($arcresult->month), $arcresult->year);335 $text = sprintf(_('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year); 336 336 $after = ' ('.$arcresult->posts.')' . $afterafter; 337 337 } else { 338 $text = sprintf( '%s %d', $wp_locale->get_month($arcresult->month), $arcresult->year);338 $text = sprintf(_('%1$s %2$d'), $wp_locale->get_month($arcresult->month), $arcresult->year); 339 339 } 340 340 echo get_archives_link($url, $text, $format, $before, $after); 341 341 }