- 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-gallery.php
r45675 r45932 47 47 <?php 48 48 printf( 49 /* translators: 1: link attributes, 2: number of photos*/49 /* translators: 1: Link attributes, 2: Number of photos. */ 50 50 _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyeleven' ), 51 /* translators: %s: Post title */51 /* translators: %s: Post title. */ 52 52 'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyeleven' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"', 53 53 number_format_i18n( $total_images ) … … 72 72 <?php $show_sep = false; ?> 73 73 <?php 74 /* translators: used between list items, there is a space after the comma*/74 /* translators: Used between list items, there is a space after the comma. */ 75 75 $categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) ); 76 76 if ( $categories_list ) : … … 78 78 <span class="cat-links"> 79 79 <?php 80 /* translators: 1: CSS classes, 2: list of categories*/80 /* translators: 1: CSS classes, 2: List of categories. */ 81 81 printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); 82 82 $show_sep = true; … … 85 85 <?php endif; // End if categories ?> 86 86 <?php 87 /* translators: used between list items, there is a space after the comma*/87 /* translators: Used between list items, there is a space after the comma. */ 88 88 $tags_list = get_the_tag_list( '', __( ', ', 'twentyeleven' ) ); 89 89 if ( $tags_list ) : … … 94 94 <span class="tag-links"> 95 95 <?php 96 /* translators: 1: CSS classes, 2: list of tags*/96 /* translators: 1: CSS classes, 2: List of tags. */ 97 97 printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); 98 98 $show_sep = true;
Note: See TracChangeset
for help on using the changeset viewer.