Changeset 45932 for trunk/src/wp-includes/feed-rss2-comments.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-rss2-comments.php
r45590 r45932 36 36 <?php 37 37 if ( is_singular() ) { 38 /* translators: Comments feed title. %s: 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() ) { 41 /* translators: Comments feed title. 1: Site name, 2: Search query*/41 /* translators: Comments feed title. 1: Site title, 2: Search query. */ 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. %s: Site name*/44 /* translators: Comments feed title. %s: Site title. */ 45 45 printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() ); 46 46 } … … 84 84 /** This filter is documented in wp-includes/feed.php */ 85 85 $title = apply_filters( 'the_title_rss', $title ); 86 /* translators: Individual comment title. 1: Post title, 2: Comment author name */86 /* translators: Individual comment title. 1: Post title, 2: Comment author name. */ 87 87 printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() ); 88 88 } else { 89 /* translators: Comment author title. %s: Comment author name */89 /* translators: Comment author title. %s: Comment author name. */ 90 90 printf( ent2ncr( __( 'By: %s' ) ), get_comment_author_rss() ); 91 91 }
Note: See TracChangeset
for help on using the changeset viewer.