Changeset 14070 for trunk/wp-includes/pluggable.php
- Timestamp:
- 04/11/2010 10:41:54 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r13878 r14070 1034 1034 1035 1035 if ('comment' == $comment_type) { 1036 $notify_message = sprintf( __( 'New comment on your post "%s"'),$post->post_title ) . "\r\n";1036 $notify_message = sprintf( __( 'New comment on your post “%s”' ), $post->post_title ) . "\r\n"; 1037 1037 /* translators: 1: comment author, 2: author IP, 3: author domain */ 1038 1038 $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1045 1045 $subject = sprintf( __('[%1$s] Comment: "%2$s"'), $blogname, $post->post_title ); 1046 1046 } elseif ('trackback' == $comment_type) { 1047 $notify_message = sprintf( __( 'New trackback on your post "%s"'), $post->post_title ) . "\r\n";1047 $notify_message = sprintf( __( 'New trackback on your post ”%s”' ), $post->post_title ) . "\r\n"; 1048 1048 /* translators: 1: website name, 2: author IP, 3: author domain */ 1049 1049 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1054 1054 $subject = sprintf( __('[%1$s] Trackback: "%2$s"'), $blogname, $post->post_title ); 1055 1055 } elseif ('pingback' == $comment_type) { 1056 $notify_message = sprintf( __( 'New pingback on your post "%s"'), $post->post_title ) . "\r\n";1056 $notify_message = sprintf( __( 'New pingback on your post ”%s”' ), $post->post_title ) . "\r\n"; 1057 1057 /* translators: 1: comment author, 2: author IP, 3: author domain */ 1058 1058 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1127 1127 { 1128 1128 case 'trackback': 1129 $notify_message = sprintf( __('A new trackback on the post "%s"is waiting for your approval'), $post->post_title ) . "\r\n";1129 $notify_message = sprintf( __('A new trackback on the post ”%s” is waiting for your approval'), $post->post_title ) . "\r\n"; 1130 1130 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1131 1131 $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1134 1134 break; 1135 1135 case 'pingback': 1136 $notify_message = sprintf( __('A new pingback on the post "%s"is waiting for your approval'), $post->post_title ) . "\r\n";1136 $notify_message = sprintf( __('A new pingback on the post ”%s” is waiting for your approval'), $post->post_title ) . "\r\n"; 1137 1137 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1138 1138 $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1141 1141 break; 1142 1142 default: //Comments 1143 $notify_message = sprintf( __('A new comment on the post "%s"is waiting for your approval'), $post->post_title ) . "\r\n";1143 $notify_message = sprintf( __('A new comment on the post ”%s” is waiting for your approval'), $post->post_title ) . "\r\n"; 1144 1144 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1145 1145 $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
Note: See TracChangeset
for help on using the changeset viewer.