Ticket #21759: 21759.3.diff
File 21759.3.diff, 1.2 KB (added by , 13 years ago) |
---|
-
wp-content/themes/twentytwelve/functions.php
336 336 337 337 // Translators: 1 is category, 2 is tag, 3 is the date and 4 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 by %4$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 by %4$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 by %4$s.', 'twentytwelve' ); 344 344 } 345 345 346 346 printf( 347 347 $utility_text, 348 348 $categories_list, 349 349 $tag_list, 350 $date ,351 $author 350 $date . '<span class="by-author"> ', 351 $author . '</span>' 352 352 ); 353 353 } 354 354 endif;