From 00d6cc1e1b47701ad1e0c67528c62cc6e8d6815b Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 10 Nov 2011 18:37:20 +0000 Subject: [PATCH] Make date formats for transation. Props SergeyBiryukov, settle. fixes #16441 git-svn-id: https://develop.svn.wordpress.org/trunk@19241 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 22873b67ed..13390e2295 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 0707e18641..3899f0ecde 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' ) ) ); ?>