Changeset 45932 for trunk/src/wp-includes/feed-atom-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-atom-comments.php
r45590 r45932 31 31 <?php 32 32 if ( is_singular() ) { 33 /* translators: Comments feed title. %s: Post title */33 /* translators: Comments feed title. %s: Post title. */ 34 34 printf( ent2ncr( __( 'Comments on %s' ) ), get_the_title_rss() ); 35 35 } elseif ( is_search() ) { 36 /* translators: Comments feed title. 1: Site name, 2: Search query*/36 /* translators: Comments feed title. 1: Site title, 2: Search query. */ 37 37 printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() ); 38 38 } else { 39 /* translators: Comments feed title. %s: Site name*/39 /* translators: Comments feed title. %s: Site title. */ 40 40 printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() ); 41 41 } … … 81 81 /** This filter is documented in wp-includes/feed.php */ 82 82 $title = apply_filters( 'the_title_rss', $title ); 83 /* translators: Individual comment title. 1: Post title, 2: Comment author name */83 /* translators: Individual comment title. 1: Post title, 2: Comment author name. */ 84 84 printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() ); 85 85 } else { 86 /* translators: Comment author title. %s: Comment author name */86 /* translators: Comment author title. %s: Comment author name. */ 87 87 printf( ent2ncr( __( 'By: %s' ) ), get_comment_author_rss() ); 88 88 }
Note: See TracChangeset
for help on using the changeset viewer.