if ( is_day() ) {
/* translators: %s: Date. */
printf( __( ’Daily Archives: %s’, ’twentyten’ ), get_the_date() );
} elseif ( is_month() ) {
/* translators: %s: Date. */
printf( __( ’Monthly Archives: %s’, ’twentyten’ ), get_the_date( _x( ’F Y’, ’monthly archives date format’, ’twentyten’ ) ) );
} elseif ( is_year() ) {
/* translators: %s: Date. */
printf( __( ’Yearly Archives: %s’, ’twentyten’ ), get_the_date( _x( ’Y’, ’yearly archives date format’, ’twentyten’ ) ) );
} else {
_e( ’Blog Archives’, ’twentyten’ );
}
?>








