Make WordPress Core


Ignore:
Timestamp:
10/02/2018 07:50:48 PM (6 years ago)
Author:
pento
Message:

i18n: Improve consistency of translator comments.

Props ramonopoly.
Fixes #44998.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pluggable.php

    r43642 r43668  
    15551555                /* translators: %s: post title */
    15561556                $notify_message = sprintf( __( 'New comment on your post "%s"' ), $post->post_title ) . "\r\n";
    1557                 /* translators: 1: comment author, 2: comment author's IP address, 3: comment author's hostname */
     1557                /* translators: 1: comment author's name, 2: comment author's IP address, 3: comment author's hostname */
    15581558                $notify_message .= sprintf( __( 'Author: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
    15591559                /* translators: %s: comment author email */
     
    17251725                $notify_message  = sprintf( __( 'A new comment on the post "%s" is waiting for your approval' ), $post->post_title ) . "\r\n";
    17261726                $notify_message .= get_permalink( $comment->comment_post_ID ) . "\r\n\r\n";
    1727                 /* translators: 1: comment author name, 2: comment author's IP address, 3: comment author's hostname */
     1727                /* translators: 1: comment author's name, 2: comment author's IP address, 3: comment author's hostname */
    17281728                $notify_message .= sprintf( __( 'Author: %1$s (IP address: %2$s, %3$s)' ), $comment->comment_author, $comment->comment_author_IP, $comment_author_domain ) . "\r\n";
    17291729                /* translators: %s: comment author email */
Note: See TracChangeset for help on using the changeset viewer.