diff --git a/wp-content/themes/twentyeleven/archive.php b/wp-content/themes/twentyeleven/archive.php index 22873b67e..13390e229 100644 --- a/wp-content/themes/twentyeleven/archive.php +++ b/wp-content/themes/twentyeleven/archive.php @@ -24,9 +24,9 @@ get_header(); ?> ' . get_the_date() . '' ); ?> - ' . get_the_date( 'F Y' ) . '' ); ?> + ' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyeleven' ) ) . '' ); ?> - ' . get_the_date( 'Y' ) . '' ); ?> + ' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentyeleven' ) ) . '' ); ?> diff --git a/wp-content/themes/twentyten/archive.php b/wp-content/themes/twentyten/archive.php index 0707e1864..3899f0ecd 100644 --- a/wp-content/themes/twentyten/archive.php +++ b/wp-content/themes/twentyten/archive.php @@ -32,9 +32,9 @@ get_header(); ?> %s', 'twentyten' ), get_the_date() ); ?> - %s', 'twentyten' ), get_the_date( 'F Y' ) ); ?> + %s', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); ?> - %s', 'twentyten' ), get_the_date( 'Y' ) ); ?> + %s', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); ?>