Make WordPress Core

Changeset 26679


Ignore:
Timestamp:
12/05/2013 06:30:34 PM (11 years ago)
Author:
lancewillett
Message:

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

Location:
trunk/src/wp-content/themes/twentyfourteen
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/archive.php

    r26576 r26679  
    2929                    <?php
    3030                        if ( is_day() ) :
    31                             printf( __( 'Day: %s', 'twentyfourteen' ), get_the_date() );
     31                            printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() );
    3232
    3333                        elseif ( is_month() ) :
    34                             printf( __( 'Month: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
     34                            printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );
    3535
    3636                        elseif ( is_year() ) :
    37                             printf( __( 'Year: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
     37                            printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
    3838
    3939                        else :
  • trunk/src/wp-content/themes/twentyfourteen/taxonomy-post_format.php

    r26674 r26679  
    99 * @todo http://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings
    1010 * and remove plurals below.
    11  * 
     11 *
    1212 * @link http://codex.wordpress.org/Template_Hierarchy
    1313 *
Note: See TracChangeset for help on using the changeset viewer.