Changeset 32210
- Timestamp:
- 04/20/2015 03:35:31 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pluggable.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r32070 r32210 1425 1425 case 'trackback': 1426 1426 $notify_message = sprintf( __( 'New trackback on your post "%s"' ), $post->post_title ) . "\r\n"; 1427 /* translators: 1: website name, 2: author IP, 3: author domain*/1427 /* translators: 1: website name, 2: website IP, 3: website hostname */ 1428 1428 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s, %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1429 1429 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; … … 1435 1435 case 'pingback': 1436 1436 $notify_message = sprintf( __( 'New pingback on your post "%s"' ), $post->post_title ) . "\r\n"; 1437 /* translators: 1: comment author, 2: author IP, 3: author domain*/1437 /* translators: 1: website name, 2: website IP, 3: website hostname */ 1438 1438 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s, %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1439 1439 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; … … 1561 1561 $notify_message = sprintf( __('A new trackback on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1562 1562 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1563 /* translators: 1: website name, 2: website IP, 3: website hostname */ 1563 1564 $notify_message .= sprintf( __( 'Website: %1$s (IP: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1564 1565 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; … … 1568 1569 $notify_message = sprintf( __('A new pingback on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1569 1570 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1571 /* translators: 1: website name, 2: website IP, 3: website hostname */ 1570 1572 $notify_message .= sprintf( __( 'Website: %1$s (IP: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1571 1573 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n";
Note: See TracChangeset
for help on using the changeset viewer.