Changeset 13724
- Timestamp:
- 03/16/2010 11:11:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/functions.php
r13720 r13724 22 22 'url' => '%s/images/headers/berries.jpg', 23 23 'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg', 24 'description' => __( 'Berries' )24 'description' => __( 'Berries', 'twentyten' ) 25 25 ), 26 26 'cherryblossom' => array ( 27 27 'url' => '%s/images/headers/cherryblossoms.jpg', 28 28 'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg', 29 'description' => __( 'Cherry Blossoms' )29 'description' => __( 'Cherry Blossoms', 'twentyten' ) 30 30 ), 31 31 'concave' => array ( 32 32 'url' => '%s/images/headers/concave.jpg', 33 33 'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg', 34 'description' => __( 'Concave' )34 'description' => __( 'Concave', 'twentyten' ) 35 35 ), 36 36 'fern' => array ( 37 37 'url' => '%s/images/headers/fern.jpg', 38 38 'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg', 39 'description' => __( 'Fern' )39 'description' => __( 'Fern', 'twentyten' ) 40 40 ), 41 41 'forestfloor' => array ( 42 42 'url' => '%s/images/headers/forestfloor.jpg', 43 43 'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg', 44 'description' => __( 'Forest Floor' )44 'description' => __( 'Forest Floor', 'twentyten' ) 45 45 ), 46 46 'inkwell' => array ( 47 47 'url' => '%s/images/headers/inkwell.jpg', 48 48 'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg', 49 'description' => __( 'Ink Well' )49 'description' => __( 'Inkwell', 'twentyten' ) 50 50 ), 51 51 'path' => array ( 52 52 'url' => '%s/images/headers/path.jpg', 53 53 'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg', 54 'description' => __( 'Path' )54 'description' => __( 'Path', 'twentyten' ) 55 55 ), 56 56 'sunset' => array ( 57 57 'url' => '%s/images/headers/sunset.jpg', 58 58 'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg', 59 'description' => __( 'Sunset' )59 'description' => __( 'Sunset', 'twentyten' ) 60 60 ) 61 61 ) ); … … 134 134 if ( ! function_exists( 'twentyten_excerpt_more' ) ) : 135 135 function twentyten_excerpt_more( $more ) { 136 return ' … <a href="'. get_permalink() . '">' . 'Continue reading <span class="meta-nav">→</span>'. '</a>';136 return ' … <a href="'. get_permalink() . '">' . __('Continue reading <span class="meta-nav">→</span>', 'twentyten') . '</a>'; 137 137 } 138 138 endif; … … 149 149 <div class="comment-author vcard"> 150 150 <?php echo get_avatar( $comment, 40 ); ?> 151 <?php printf( __( '<cite class="fn">%s</cite> <span class="says">says:</span>' ), get_comment_author_link() ); ?>151 <?php printf( __( '<cite class="fn">%s</cite> <span class="says">says:</span>', 'twentyten' ), get_comment_author_link() ); ?> 152 152 </div> 153 153 <?php if ( $comment->comment_approved == '0' ) : ?> … … 156 156 <?php endif; ?> 157 157 158 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( __( '%1$s at %2$s' ), get_comment_date(),get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ),' ','' ); ?></div>158 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ),' ','' ); ?></div> 159 159 160 160 <div class="comment-body"><?php comment_text(); ?></div>
Note: See TracChangeset
for help on using the changeset viewer.