Changeset 14803
- Timestamp:
- 05/22/2010 01:48:38 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r14781 r14803 1019 1019 1020 1020 if ('comment' == $comment_type) { 1021 $notify_message = sprintf( __( 'New comment on your post “%s”' ), $post->post_title ) . "\r\n";1021 $notify_message = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n"; 1022 1022 /* translators: 1: comment author, 2: author IP, 3: author domain */ 1023 1023 $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1030 1030 $subject = sprintf( __('[%1$s] Comment: "%2$s"'), $blogname, $post->post_title ); 1031 1031 } elseif ('trackback' == $comment_type) { 1032 $notify_message = sprintf( __( 'New trackback on your post ”%s”' ), $post->post_title ) . "\r\n";1032 $notify_message = sprintf( __( 'New trackback on your post "%s"' ), $post->post_title ) . "\r\n"; 1033 1033 /* translators: 1: website name, 2: author IP, 3: author domain */ 1034 1034 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1039 1039 $subject = sprintf( __('[%1$s] Trackback: "%2$s"'), $blogname, $post->post_title ); 1040 1040 } elseif ('pingback' == $comment_type) { 1041 $notify_message = sprintf( __( 'New pingback on your post ”%s”' ), $post->post_title ) . "\r\n";1041 $notify_message = sprintf( __( 'New pingback on your post "%s"' ), $post->post_title ) . "\r\n"; 1042 1042 /* translators: 1: comment author, 2: author IP, 3: author domain */ 1043 1043 $notify_message .= sprintf( __('Website: %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1112 1112 { 1113 1113 case 'trackback': 1114 $notify_message = sprintf( __('A new trackback on the post ”%s”is waiting for your approval'), $post->post_title ) . "\r\n";1114 $notify_message = sprintf( __('A new trackback on the post"%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1115 1115 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1116 1116 $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1119 1119 break; 1120 1120 case 'pingback': 1121 $notify_message = sprintf( __('A new pingback on the post ”%s”is waiting for your approval'), $post->post_title ) . "\r\n";1121 $notify_message = sprintf( __('A new pingback on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1122 1122 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1123 1123 $notify_message .= sprintf( __('Website : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n"; … … 1126 1126 break; 1127 1127 default: //Comments 1128 $notify_message = sprintf( __('A new comment on the post ”%s”is waiting for your approval'), $post->post_title ) . "\r\n";1128 $notify_message = sprintf( __('A new comment on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n"; 1129 1129 $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n"; 1130 1130 $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.