Changeset 45932 for trunk/src/wp-content/themes/twentyten/loop.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyten/loop.php
r45675 r45932 87 87 <?php 88 88 printf( 89 /* translators: 1: HTML tag attributes, 2: image count*/89 /* translators: 1: HTML tag attributes, 2: Image count. */ 90 90 _n( 'This gallery contains <a %1$s>%2$s photo</a>.', 'This gallery contains <a %1$s>%2$s photos</a>.', $total_images, 'twentyten' ), 91 /* translators: %s: post title*/91 /* translators: %s: Post title. */ 92 92 'href="' . esc_url( get_permalink() ) . '" title="' . esc_attr( sprintf( __( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) ) . '" rel="bookmark"', 93 93 number_format_i18n( $total_images ) … … 171 171 <span class="cat-links"> 172 172 <?php 173 /* translators: 1: CSS classes, 2: catgory list*/173 /* translators: 1: CSS classes, 2: Category list. */ 174 174 printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); 175 175 ?> … … 183 183 <span class="tag-links"> 184 184 <?php 185 /* translators: 1: CSS classes, 2: catgory list*/185 /* translators: 1: CSS classes, 2: Category list. */ 186 186 printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); 187 187 ?>
Note: See TracChangeset
for help on using the changeset viewer.