From 132097032e68eb789e6d3b207b28283e7b908182 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 10 Nov 2011 18:37:20 +0000 Subject: [PATCH] Make date formats for transation. Props SergeyBiryukov, settle. fixes #16441 git-svn-id: http://svn.automattic.com/wordpress/trunk@19241 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyeleven/archive.php | 4 ++-- wp-content/themes/twentyten/archive.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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' ) ) ); ?>