From bccd583d54f49d2112cc0367cdc1eea57b5c00de Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 29 Nov 2006 21:34:51 +0000 Subject: [PATCH] gettext date format strings in wp_get_archives. fixes #1540 git-svn-id: https://develop.svn.wordpress.org/trunk@4545 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/general-template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index c210ade366..d5d7e043c7 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -340,7 +340,7 @@ function wp_get_archives($args = '') { $afterafter = $after; foreach ( $arcresults as $arcresult ) { $url = get_month_link($arcresult->year, $arcresult->month); - $text = sprintf('%s %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 ) $after = ' ('.$arcresult->posts.')' . $afterafter; echo get_archives_link($url, $text, $format, $before, $after); @@ -364,7 +364,7 @@ function wp_get_archives($args = '') { $afterafter = $after; foreach ( $arcresults as $arcresult ) { $url = get_day_link($arcresult->year, $arcresult->month, $arcresult->dayofmonth); - $date = sprintf("%d-%02d-%02d 00:00:00", $arcresult->year, $arcresult->month, $arcresult->dayofmonth); + $date = sprintf(__('%1$d-%2$02d-%3$02d 00:00:00'), $arcresult->year, $arcresult->month, $arcresult->dayofmonth); $text = mysql2date($archive_day_date_format, $date); if ($show_post_count) $after = ' ('.$arcresult->posts.')'.$afterafter; @@ -384,7 +384,7 @@ function wp_get_archives($args = '') { $arc_week = get_weekstartend($arcresult->yyyymmdd, get_option('start_of_week')); $arc_week_start = date_i18n($archive_week_start_date_format, $arc_week['start']); $arc_week_end = date_i18n($archive_week_end_date_format, $arc_week['end']); - $url = sprintf('%s/%s%sm%s%s%sw%s%d', get_option('home'), '', '?', '=', $arc_year, '&', '=', $arcresult->week); + $url = sprintf(__('%1$s/%2$s%3$sm%4$s%5$s%6$sw%7$s%8$d'), get_option('home'), '', '?', '=', $arc_year, '&', '=', $arcresult->week); $text = $arc_week_start . $archive_week_separator . $arc_week_end; if ($show_post_count) $after = ' ('.$arcresult->posts.')'.$afterafter;