Twenty Fourteen: more string cleanup, and a pinking shear. See #26437.

git-svn-id: https://develop.svn.wordpress.org/trunk@26679 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-12-05 18:30:34 +00:00
parent 381c1f4211
commit cbbeae6145
2 changed files with 4 additions and 4 deletions

View File

@ -28,13 +28,13 @@ get_header(); ?>
<h1 class="page-title"> <h1 class="page-title">
<?php <?php
if ( is_day() ) : if ( is_day() ) :
printf( __( 'Day: %s', 'twentyfourteen' ), get_the_date() ); printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );
elseif ( is_month() ) : elseif ( is_month() ) :
printf( __( 'Month: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) ); printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
elseif ( is_year() ) : elseif ( is_year() ) :
printf( __( 'Year: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) ); printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
else : else :
_e( 'Archives', 'twentyfourteen' ); _e( 'Archives', 'twentyfourteen' );