Changeset 51157
- Timestamp:
- 06/15/2021 03:37:13 PM (4 years ago)
- Location:
- trunk/src/wp-content/themes
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/404.php
r45932 r51157 43 43 44 44 <?php 45 /* translators: % 1$s: Smilie. */46 $archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. % 1$s', 'twentyeleven' ), convert_smilies( ':)' ) ) . '</p>';45 /* translators: %s: Smilie. */ 46 $archive_content = '<p>' . sprintf( __( 'Try looking in the monthly archives. %s', 'twentyeleven' ), convert_smilies( ':)' ) ) . '</p>'; 47 47 the_widget( 48 48 'WP_Widget_Archives', -
trunk/src/wp-content/themes/twentyeleven/comments.php
r47122 r51157 40 40 } else { 41 41 printf( 42 /* translators: %1$s: The number of comments. %2$s: The post title. */42 /* translators: 1: The number of comments, 2: The post title. */ 43 43 _n( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ), 44 44 number_format_i18n( get_comments_number() ), -
trunk/src/wp-content/themes/twentyten/comments.php
r47122 r51157 43 43 } else { 44 44 printf( 45 /* translators: %1$s: The number of comments. %2$s: The post title. */45 /* translators: 1: The number of comments, 2: The post title. */ 46 46 _n( '%1$s Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ), 47 47 number_format_i18n( get_comments_number() ), -
trunk/src/wp-content/themes/twentythirteen/comments.php
r47122 r51157 32 32 } else { 33 33 printf( 34 /* translators: %1$s: The number of comments. %2$s: The post title. */34 /* translators: 1: The number of comments, 2: The post title. */ 35 35 _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ), 36 36 number_format_i18n( get_comments_number() ), -
trunk/src/wp-content/themes/twentytwelve/comments.php
r47122 r51157 38 38 } else { 39 39 printf( 40 /* translators: %1$s: The number of comments. %2$s: The post title. */40 /* translators: 1: The number of comments, 2: The post title. */ 41 41 _n( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentytwelve' ), 42 42 number_format_i18n( get_comments_number() ),
Note: See TracChangeset
for help on using the changeset viewer.