- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-single.php
r45604 r45932 34 34 <footer class="entry-meta"> 35 35 <?php 36 /* translators: used between list items, there is a space after the comma*/36 /* translators: Used between list items, there is a space after the comma. */ 37 37 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 38 38 39 /* translators: used between list items, there is a space after the comma*/39 /* translators: Used between list items, there is a space after the comma. */ 40 40 $tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 41 41 if ( '' != $tag_list ) { 42 /* translators: 1: categories list, 2: tag list, 3: permalink, 4: post title, 5: author name, 6: author URL*/42 /* translators: 1: Categories list, 2: Tag list, 3: Permalink, 4: Post title, 5: Author name, 6: Author URL. */ 43 43 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); 44 44 } elseif ( '' != $categories_list ) { 45 /* translators: 1: categories list, 2: tag list, 3: permalink, 4: post title, 5: author name, 6: author URL*/45 /* translators: 1: Categories list, 2: Tag list, 3: Permalink, 4: Post title, 5: Author name, 6: Author URL. */ 46 46 $utility_text = __( 'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); 47 47 } else { 48 /* translators: 1: categories list, 2: tag list, 3: permalink, 4: post title, 5: author name, 6: author URL*/48 /* translators: 1: Categories list, 2: Tag list, 3: Permalink, 4: Post title, 5: Author name, 6: Author URL. */ 49 49 $utility_text = __( 'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); 50 50 } … … 73 73 <h2> 74 74 <?php 75 /* translators: %s: author name*/75 /* translators: %s: Author name. */ 76 76 printf( __( 'About %s', 'twentyeleven' ), get_the_author() ); 77 77 ?> … … 81 81 <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author"> 82 82 <?php 83 /* translators: %s: author name*/83 /* translators: %s: Author name. */ 84 84 printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'twentyeleven' ), get_the_author() ); 85 85 ?>
Note: See TracChangeset
for help on using the changeset viewer.