Changeset 45204 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 04/15/2019 10:38:59 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r45173 r45204 1536 1536 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; 1537 1537 $notify_message .= __( 'You can see all trackbacks on this post here:' ) . "\r\n"; 1538 /* translators: 1: blog name, 2: post title */1538 /* translators: Trackback notification email subject. 1: Site title, 2: Post title */ 1539 1539 $subject = sprintf( __( '[%1$s] Trackback: "%2$s"' ), $blogname, $post->post_title ); 1540 1540 break; … … 1549 1549 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; 1550 1550 $notify_message .= __( 'You can see all pingbacks on this post here:' ) . "\r\n"; 1551 /* translators: 1: blog name, 2: post title */1551 /* translators: Pingback notification email subject. 1: Site title, 2: Post title */ 1552 1552 $subject = sprintf( __( '[%1$s] Pingback: "%2$s"' ), $blogname, $post->post_title ); 1553 1553 break; … … 1564 1564 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; 1565 1565 $notify_message .= __( 'You can see all comments on this post here:' ) . "\r\n"; 1566 /* translators: 1: blog name, 2: post title */1566 /* translators: Comment notification email subject. 1: Site title, 2: Post title */ 1567 1567 $subject = sprintf( __( '[%1$s] Comment: "%2$s"' ), $blogname, $post->post_title ); 1568 1568 break;
Note: See TracChangeset
for help on using the changeset viewer.