Ticket #21759: 21759.4.diff
File 21759.4.diff, 1.4 KB (added by , 13 years ago) |
---|
-
wp-content/themes/twentytwelve/functions.php
334 334 get_the_author() 335 335 ); 336 336 337 // Translators: 1 is category, 2 is tag, 3 is the date and 4is the author's name.337 // Translators: 1 is category, 2 is tag, 3 is the date and 5 is the author's name. 338 338 if ( $tag_list ) { 339 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s <span class="by-author"> by %4$s</span>.', 'twentytwelve' );339 $utility_text = __( 'This entry was posted in %1$s and tagged %2$s on %3$s%4$s by %5$s%6$s.', 'twentytwelve' ); 340 340 } elseif ( $categories_list ) { 341 $utility_text = __( 'This entry was posted in %1$s on %3$s <span class="by-author"> by %4$s</span>.', 'twentytwelve' );341 $utility_text = __( 'This entry was posted in %1$s on %3$s%4$s by %5$s%6$s.', 'twentytwelve' ); 342 342 } else { 343 $utility_text = __( 'This entry was posted on %3$s <span class="by-author"> by %4$s</span>.', 'twentytwelve' );343 $utility_text = __( 'This entry was posted on %3$s%4$s by %5$s%6$s.', 'twentytwelve' ); 344 344 } 345 345 346 346 printf( … … 348 348 $categories_list, 349 349 $tag_list, 350 350 $date, 351 $author 351 '<span class="by-author">', 352 $author, 353 '</span>' 352 354 ); 353 355 } 354 356 endif;