1046 | | if ('comment' == $comment_type) { |
1047 | | $notify_message = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n"; |
1048 | | /* translators: 1: comment author, 2: author IP, 3: author domain */ |
1049 | | $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; |
1050 | | $notify_message .= sprintf( __('E-mail : %s'), $comment->comment_author_email ) . "\r\n"; |
1051 | | $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n"; |
1052 | | $notify_message .= sprintf( __('Whois : http://whois.arin.net/rest/ip/%s'), $comment->comment_author_IP ) . "\r\n"; |
1053 | | $notify_message .= __('Comment: ') . "\r\n" . $comment->comment_content . "\r\n\r\n"; |
1054 | | $notify_message .= __('You can see all comments on this post here: ') . "\r\n"; |
1055 | | /* translators: 1: blog name, 2: post title */ |
1056 | | $subject = sprintf( __('[%1$s] Comment: "%2$s"'), $blogname, $post->post_title ); |
1057 | | } elseif ('trackback' == $comment_type) { |
1058 | | $notify_message = sprintf( __( 'New trackback on your post "%s"' ), $post->post_title ) . "\r\n"; |
1059 | | /* translators: 1: website name, 2: author IP, 3: author domain */ |
1060 | | $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; |
1061 | | $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n"; |
1062 | | $notify_message .= __('Excerpt: ') . "\r\n" . $comment->comment_content . "\r\n\r\n"; |
1063 | | $notify_message .= __('You can see all trackbacks on this post here: ') . "\r\n"; |
1064 | | /* translators: 1: blog name, 2: post title */ |
1065 | | $subject = sprintf( __('[%1$s] Trackback: "%2$s"'), $blogname, $post->post_title ); |
1066 | | } elseif ('pingback' == $comment_type) { |
1067 | | $notify_message = sprintf( __( 'New pingback on your post "%s"' ), $post->post_title ) . "\r\n"; |
1068 | | /* translators: 1: comment author, 2: author IP, 3: author domain */ |
1069 | | $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; |
1070 | | $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n"; |
1071 | | $notify_message .= __('Excerpt: ') . "\r\n" . sprintf('[...] %s [...]', $comment->comment_content ) . "\r\n\r\n"; |
1072 | | $notify_message .= __('You can see all pingbacks on this post here: ') . "\r\n"; |
1073 | | /* translators: 1: blog name, 2: post title */ |
1074 | | $subject = sprintf( __('[%1$s] Pingback: "%2$s"'), $blogname, $post->post_title ); |
| 1046 | switch ( $comment_type ) { |
| 1047 | case 'trackback': |
| 1048 | $notify_message = sprintf( __( 'New trackback on your post "%s"' ), $post->post_title ) . "\r\n"; |
| 1049 | /* translators: 1: website name, 2: author IP, 3: author domain */ |
| 1050 | $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; |
| 1051 | $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n"; |
| 1052 | $notify_message .= __('Excerpt: ') . "\r\n" . $comment->comment_content . "\r\n\r\n"; |
| 1053 | $notify_message .= __('You can see all trackbacks on this post here: ') . "\r\n"; |
| 1054 | /* translators: 1: blog name, 2: post title */ |
| 1055 | $subject = sprintf( __('[%1$s] Trackback: "%2$s"'), $blogname, $post->post_title ); |
| 1056 | break; |
| 1057 | case 'pingback': |
| 1058 | $notify_message = sprintf( __( 'New pingback on your post "%s"' ), $post->post_title ) . "\r\n"; |
| 1059 | /* translators: 1: comment author, 2: author IP, 3: author domain */ |
| 1060 | $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; |
| 1061 | $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n"; |
| 1062 | $notify_message .= __('Excerpt: ') . "\r\n" . sprintf('[...] %s [...]', $comment->comment_content ) . "\r\n\r\n"; |
| 1063 | $notify_message .= __('You can see all pingbacks on this post here: ') . "\r\n"; |
| 1064 | /* translators: 1: blog name, 2: post title */ |
| 1065 | $subject = sprintf( __('[%1$s] Pingback: "%2$s"'), $blogname, $post->post_title ); |
| 1066 | break; |
| 1067 | default: // Comments |
| 1068 | $notify_message = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n"; |
| 1069 | /* translators: 1: comment author, 2: author IP, 3: author domain */ |
| 1070 | $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; |
| 1071 | $notify_message .= sprintf( __('E-mail : %s'), $comment->comment_author_email ) . "\r\n"; |
| 1072 | $notify_message .= sprintf( __('URL : %s'), $comment->comment_author_url ) . "\r\n"; |
| 1073 | $notify_message .= sprintf( __('Whois : http://whois.arin.net/rest/ip/%s'), $comment->comment_author_IP ) . "\r\n"; |
| 1074 | $notify_message .= __('Comment: ') . "\r\n" . $comment->comment_content . "\r\n\r\n"; |
| 1075 | $notify_message .= __('You can see all comments on this post here: ') . "\r\n"; |
| 1076 | /* translators: 1: blog name, 2: post title */ |
| 1077 | $subject = sprintf( __('[%1$s] Comment: "%2$s"'), $blogname, $post->post_title ); |
| 1078 | break; |