- 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-featured.php
r45604 r45932 33 33 <footer class="entry-meta"> 34 34 <?php 35 /* translators: used between list items, there is a space after the comma*/35 /* translators: Used between list items, there is a space after the comma. */ 36 36 $tag_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 37 37 if ( '' != $tag_list ) { 38 /* translators: 1: category list, 2: tag list, 3: post permalink, 4: post title*/38 /* translators: 1: Category list, 2: Tag list, 3: Post permalink, 4: Post title. */ 39 39 $utility_text = __( '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>.', 'twentyeleven' ); 40 40 } else { 41 /* translators: 1: category list, 3: post permalink, 4: post title*/41 /* translators: 1: Category list, 3: Post permalink, 4: Post title. */ 42 42 $utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'twentyeleven' ); 43 43 } 44 44 printf( 45 45 $utility_text, 46 /* translators: used between list items, there is a space after the comma*/46 /* translators: Used between list items, there is a space after the comma. */ 47 47 get_the_category_list( __( ', ', 'twentyeleven' ) ), 48 48 $tag_list,
Note: See TracChangeset
for help on using the changeset viewer.