Ticket #16441: archive.diff
File archive.diff, 878 bytes (added by , 14 years ago) |
---|
-
archive.php
32 32 <?php if ( is_day() ) : ?> 33 33 <?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?> 34 34 <?php elseif ( is_month() ) : ?> 35 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y') ); ?>35 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date(__('F Y', 'twentyten')) ); ?> 36 36 <?php elseif ( is_year() ) : ?> 37 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'Y') ); ?>37 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date(__('Y', 'twentyten')) ); ?> 38 38 <?php else : ?> 39 39 <?php _e( 'Blog Archives', 'twentyten' ); ?> 40 40 <?php endif; ?>