Changeset 45609 for trunk/src/wp-content/themes/twentyten/functions.php
- Timestamp:
- 07/09/2019 01:08:47 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/functions.php
r45602 r45609 424 424 <div class="comment-author vcard"> 425 425 <?php echo get_avatar( $comment, 40 ); ?> 426 <?php printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?> 426 <?php 427 /* translators: %s: author display name */ 428 printf( __( '%s <span class="says">says:</span>', 'twentyten' ), sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); 429 ?> 427 430 </div><!-- .comment-author .vcard --> 428 431 <?php if ( $comment->comment_approved == '0' ) : ?> … … 589 592 function twentyten_posted_on() { 590 593 printf( 594 /* translators: 1: CSS classes, 2: date, 3: author display name */ 591 595 __( '<span class="%1$s">Posted on</span> %2$s <span class="meta-sep">by</span> %3$s', 'twentyten' ), 592 596 'meta-prep meta-prep-author', … … 600 604 '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 601 605 get_author_posts_url( get_the_author_meta( 'ID' ) ), 606 /* translators: %s: author display name */ 602 607 esc_attr( sprintf( __( 'View all posts by %s', 'twentyten' ), get_the_author() ) ), 603 608 get_the_author() … … 617 622 $tag_list = get_the_tag_list( '', ', ' ); 618 623 if ( $tag_list && ! is_wp_error( $tag_list ) ) { 624 /* translators: 1: category name, 2: tag name, 3: post permalink, 4: post title */ 619 625 $posted_in = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); 620 626 } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { 627 /* translators: 1: category name, 3: post permalink, 4: post title */ 621 628 $posted_in = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); 622 629 } else { 630 /* translators: 3: post permalink, 4: post title */ 623 631 $posted_in = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyten' ); 624 632 }
Note: See TracChangeset
for help on using the changeset viewer.