Changeset 30015 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 10/24/2014 05:07:53 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r29789 r30015 1386 1386 /* translators: 1: website name, 2: author IP, 3: author domain */ 1387 1387 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1388 $notify_message .= sprintf( __( 'URL : %s'), $comment->comment_author_url ) . "\r\n";1389 $notify_message .= __('Excerpt: ') . "\r\n" . $comment->comment_content. "\r\n\r\n";1390 $notify_message .= __( 'You can see all trackbacks on this post here: ') . "\r\n";1388 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; 1389 $notify_message .= sprintf( __( 'Comment: %s' ), $comment->comment_content ) . "\r\n\r\n"; 1390 $notify_message .= __( 'You can see all trackbacks on this post here:' ) . "\r\n"; 1391 1391 /* translators: 1: blog name, 2: post title */ 1392 1392 $subject = sprintf( __('[%1$s] Trackback: "%2$s"'), $blogname, $post->post_title ); … … 1396 1396 /* translators: 1: comment author, 2: author IP, 3: author domain */ 1397 1397 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1398 $notify_message .= sprintf( __( 'URL : %s'), $comment->comment_author_url ) . "\r\n";1399 $notify_message .= __('Excerpt: ') . "\r\n" . sprintf('[...] %s [...]', $comment->comment_content ) . "\r\n\r\n";1400 $notify_message .= __( 'You can see all pingbacks on this post here: ') . "\r\n";1398 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; 1399 $notify_message .= sprintf( __( 'Comment: %s' ), $comment->comment_content ) . "\r\n\r\n"; 1400 $notify_message .= __( 'You can see all pingbacks on this post here:' ) . "\r\n"; 1401 1401 /* translators: 1: blog name, 2: post title */ 1402 1402 $subject = sprintf( __('[%1$s] Pingback: "%2$s"'), $blogname, $post->post_title ); … … 1405 1405 $notify_message = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n"; 1406 1406 /* translators: 1: comment author, 2: author IP, 3: author domain */ 1407 $notify_message .= sprintf( __( 'Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";1408 $notify_message .= sprintf( __( 'E-mail : %s'), $comment->comment_author_email ) . "\r\n";1409 $notify_message .= sprintf( __( 'URL : %s'), $comment->comment_author_url ) . "\r\n";1410 $notify_message .= sprintf( __( 'Whois : http://whois.arin.net/rest/ip/%s'), $comment->comment_author_IP) . "\r\n";1411 $notify_message .= __('Comment: ') . "\r\n" . $comment->comment_content. "\r\n\r\n";1412 $notify_message .= __( 'You can see all comments on this post here: ') . "\r\n";1407 $notify_message .= sprintf( __( 'Author: %1$s (IP: %2$s , %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; 1408 $notify_message .= sprintf( __( 'E-mail: %s' ), $comment->comment_author_email ) . "\r\n"; 1409 $notify_message .= sprintf( __( 'URL: %s' ), $comment->comment_author_url ) . "\r\n"; 1410 $notify_message .= sprintf( __( 'Whois: %s' ), "http://whois.arin.net/rest/ip/{$comment->comment_author_IP}" ) . "\r\n"; 1411 $notify_message .= sprintf( __('Comment: %s' ), $comment->comment_content ) . "\r\n\r\n"; 1412 $notify_message .= __( 'You can see all comments on this post here:' ) . "\r\n"; 1413 1413 /* translators: 1: blog name, 2: post title */ 1414 1414 $subject = sprintf( __('[%1$s] Comment: "%2$s"'), $blogname, $post->post_title );
Note: See TracChangeset
for help on using the changeset viewer.