Changeset 41704 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 10/03/2017 01:08:48 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r41686 r41704 1470 1470 /* translators: 1: Post title */ 1471 1471 $notify_message = sprintf( __( 'New trackback on your post "%s"' ), $post->post_title ) . "\r\n"; 1472 /* translators: 1: Trackback/pingback website name, 2: website IP , 3: website hostname */1473 $notify_message .= sprintf( __('Website: %1$s (IP : %2$s, %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1472 /* translators: 1: Trackback/pingback website name, 2: website IP address, 3: website hostname */ 1473 $notify_message .= sprintf( __('Website: %1$s (IP address: %2$s, %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1474 1474 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; 1475 1475 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; … … 1481 1481 /* translators: 1: Post title */ 1482 1482 $notify_message = sprintf( __( 'New pingback on your post "%s"' ), $post->post_title ) . "\r\n"; 1483 /* translators: 1: Trackback/pingback website name, 2: website IP , 3: website hostname */1484 $notify_message .= sprintf( __('Website: %1$s (IP : %2$s, %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1483 /* translators: 1: Trackback/pingback website name, 2: website IP address, 3: website hostname */ 1484 $notify_message .= sprintf( __('Website: %1$s (IP address: %2$s, %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1485 1485 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; 1486 1486 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; … … 1491 1491 default: // Comments 1492 1492 $notify_message = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n"; 1493 /* translators: 1: comment author, 2: author IP, 3: author domain*/1494 $notify_message .= sprintf( __( 'Author: %1$s (IP : %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1493 /* translators: 1: comment author, 2: comment author's IP address, 3: comment author's hostname */ 1494 $notify_message .= sprintf( __( 'Author: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1495 1495 $notify_message .= sprintf( __( 'Email: %s' ), $comment->comment_author_email ) . "\r\n"; 1496 1496 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; … … 1631 1631 $notify_message = sprintf( __('A new trackback on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1632 1632 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1633 /* translators: 1: Trackback/pingback website name, 2: website IP , 3: website hostname */1634 $notify_message .= sprintf( __( 'Website: %1$s (IP : %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1633 /* translators: 1: Trackback/pingback website name, 2: website IP address, 3: website hostname */ 1634 $notify_message .= sprintf( __( 'Website: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1635 1635 /* translators: 1: Trackback/pingback/comment author URL */ 1636 1636 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; … … 1641 1641 $notify_message = sprintf( __('A new pingback on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1642 1642 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1643 /* translators: 1: Trackback/pingback website name, 2: website IP , 3: website hostname */1644 $notify_message .= sprintf( __( 'Website: %1$s (IP : %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1643 /* translators: 1: Trackback/pingback website name, 2: website IP address, 3: website hostname */ 1644 $notify_message .= sprintf( __( 'Website: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1645 1645 /* translators: 1: Trackback/pingback/comment author URL */ 1646 1646 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; … … 1651 1651 $notify_message = sprintf( __('A new comment on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1652 1652 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1653 /* translators: 1: Comment author name, 2: comment author's IP , 3: comment author IP's hostname */1654 $notify_message .= sprintf( __( 'Author: %1$s (IP : %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1653 /* translators: 1: Comment author name, 2: comment author's IP address, 3: comment author's hostname */ 1654 $notify_message .= sprintf( __( 'Author: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1655 1655 /* translators: 1: Comment author URL */ 1656 1656 $notify_message .= sprintf( __( 'Email: %s' ), $comment->comment_author_email ) . "\r\n";
Note: See TracChangeset
for help on using the changeset viewer.