Make WordPress Core

Ticket #26367: 26367.patch

File 26367.patch, 881 bytes (added by Frank Klein, 12 years ago)
  • wp-content/themes/twentyfourteen/archive.php

     
    3131                                                        printf( __( 'Day: %s', 'twentyfourteen' ), get_the_date() );
    3232
    3333                                                elseif ( is_month() ) :
    34                                                         printf( __( 'Month: %s', 'twentyfourteen' ), get_the_date( 'F Y' ) );
     34                                                        printf( __( 'Month: %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( 'Y' ) );
     37                                                        printf( __( 'Year: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );
    3838
    3939                                                else :
    4040                                                        _e( 'Archives', 'twentyfourteen' );