Make WordPress Core


Ignore:
Timestamp:
04/15/2019 10:38:59 PM (6 years ago)
Author:
johnbillion
Message:

I18N: Improvements to and additions of translator comments for various email subject strings.

Props ramiy

Fixes #46920

File:
1 edited

Legend:

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

    r45173 r45204  
    15361536                $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
    15371537                $notify_message .= __( 'You can see all trackbacks on this post here:' ) . "\r\n";
    1538                 /* translators: 1: blog name, 2: post title */
     1538                /* translators: Trackback notification email subject. 1: Site title, 2: Post title */
    15391539                $subject = sprintf( __( '[%1$s] Trackback: "%2$s"' ), $blogname, $post->post_title );
    15401540                break;
     
    15491549                $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
    15501550                $notify_message .= __( 'You can see all pingbacks on this post here:' ) . "\r\n";
    1551                 /* translators: 1: blog name, 2: post title */
     1551                /* translators: Pingback notification email subject. 1: Site title, 2: Post title */
    15521552                $subject = sprintf( __( '[%1$s] Pingback: "%2$s"' ), $blogname, $post->post_title );
    15531553                break;
     
    15641564                $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
    15651565                $notify_message .= __( 'You can see all comments on this post here:' ) . "\r\n";
    1566                 /* translators: 1: blog name, 2: post title */
     1566                /* translators: Comment notification email subject. 1: Site title, 2: Post title */
    15671567                $subject = sprintf( __( '[%1$s] Comment: "%2$s"' ), $blogname, $post->post_title );
    15681568                break;
Note: See TracChangeset for help on using the changeset viewer.