The wp_title function doesn't return the month name in archives by month mode.
Cause: file "general-template.php" line 192
To have it fix, change:
$my_month = $wp_locale->get_month($m);
to
$my_month = $wp_locale->get_month(substr($m, 4));
Bug also reported at WordPress trac