Make WordPress Core

Ticket #26156: pluggable-email.diff

File pluggable-email.diff, 2.3 KB (added by morganestes, 11 years ago)
  • wp-includes/pluggable.php

     
    10651065                        $notify_message  = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n";
    10661066                        /* translators: 1: comment author, 2: author IP, 3: author domain */
    10671067                        $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
    1068                         $notify_message .= sprintf( __('E-mail : %s'), $comment->comment_author_email ) . "\r\n";
     1068                        $notify_message .= sprintf( __('Email : %s'), $comment->comment_author_email ) . "\r\n";
    10691069                        $notify_message .= sprintf( __('URL    : %s'), $comment->comment_author_url ) . "\r\n";
    10701070                        $notify_message .= sprintf( __('Whois  : http://whois.arin.net/rest/ip/%s'), $comment->comment_author_IP ) . "\r\n";
    10711071                        $notify_message .= __('Comment: ') . "\r\n" . $comment->comment_content . "\r\n\r\n";
     
    11701170                        $notify_message  = sprintf( __('A new comment on the post "%s" is waiting for your approval'), $post->post_title ) . "\r\n";
    11711171                        $notify_message .= get_permalink($comment->comment_post_ID) . "\r\n\r\n";
    11721172                        $notify_message .= sprintf( __('Author : %1$s (IP: %2$s , %3$s)'), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
    1173                         $notify_message .= sprintf( __('E-mail : %s'), $comment->comment_author_email ) . "\r\n";
     1173                        $notify_message .= sprintf( __('Email : %s'), $comment->comment_author_email ) . "\r\n";
    11741174                        $notify_message .= sprintf( __('URL    : %s'), $comment->comment_author_url ) . "\r\n";
    11751175                        $notify_message .= sprintf( __('Whois  : http://whois.arin.net/rest/ip/%s'), $comment->comment_author_IP ) . "\r\n";
    11761176                        $notify_message .= __('Comment: ') . "\r\n" . $comment->comment_content . "\r\n\r\n";
     
    12431243
    12441244        $message  = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
    12451245        $message .= sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
    1246         $message .= sprintf(__('E-mail: %s'), $user->user_email) . "\r\n";
     1246        $message .= sprintf(__('Email: %s'), $user->user_email) . "\r\n";
    12471247
    12481248        @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
    12491249