diff --git a/archive.php b/archive.php index ea798ace..26add063 100644 --- a/archive.php +++ b/archive.php @@ -39,10 +39,10 @@ get_header(); ?> printf( __( 'Day: %s', '_s' ), '' . get_the_date() . '' ); elseif ( is_month() ) : - printf( __( 'Month: %s', '_s' ), '' . get_the_date( 'F Y' ) . '' ); + printf( __( 'Month: %s', '_s' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', '_s' ) . '' ); elseif ( is_year() ) : - printf( __( 'Year: %s', '_s' ), '' . get_the_date( 'Y' ) . '' ); + printf( __( 'Year: %s', '_s' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', '_s' ) . '' ); elseif ( is_tax( 'post_format', 'post-format-aside' ) ) : _e( 'Asides', '_s' );