Changeset 42827 for trunk/src/wp-includes/feed-rss2-comments.php
- Timestamp:
- 03/11/2018 04:43:59 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rss2-comments.php
r42343 r42827 36 36 <?php 37 37 if ( is_singular() ) { 38 /* translators: Comments feed title. 1: Post title */38 /* translators: Comments feed title. %s: Post title */ 39 39 printf( ent2ncr( __( 'Comments on: %s' ) ), get_the_title_rss() ); 40 40 } elseif ( is_search() ) { … … 42 42 printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() ); 43 43 } else { 44 /* translators: Comments feed title. 1: Site name */44 /* translators: Comments feed title. %s: Site name */ 45 45 printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() ); 46 46 } … … 91 91 printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() ); 92 92 } else { 93 /* translators: Comment author title. 1: Comment author name */93 /* translators: Comment author title. %s: Comment author name */ 94 94 printf( ent2ncr( __( 'By: %s' ) ), get_comment_author_rss() ); 95 95 }
Note: See TracChangeset
for help on using the changeset viewer.