Changeset 34297 for trunk/src/wp-admin/comment.php
- Timestamp:
- 09/18/2015 06:35:16 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/comment.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/comment.php
r34130 r34297 183 183 $parent_link = esc_url( get_comment_link( $parent ) ); 184 184 $name = get_comment_author( $parent ); 185 printf( ' | ' . __( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name ); 185 printf( 186 /* translators: comment link */ 187 ' | ' . __( 'In reply to %s.' ), 188 '<a href="' . $parent_link . '">' . $name . '</a>' 189 ); 186 190 } 187 191 ?>
Note: See TracChangeset
for help on using the changeset viewer.