Changeset 42827 for trunk/src/wp-includes/feed-atom-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-atom-comments.php
r42343 r42827 31 31 <?php 32 32 if ( is_singular() ) { 33 /* translators: Comments feed title. 1: 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() ) { … … 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. 1: Site name */39 /* translators: Comments feed title. %s: Site name */ 40 40 printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() ); 41 41 } … … 88 88 printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() ); 89 89 } else { 90 /* translators: Comment author title. 1: Comment author name */90 /* translators: Comment author title. %s: Comment author name */ 91 91 printf( ent2ncr( __( 'By: %s' ) ), get_comment_author_rss() ); 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.