Make WordPress Core


Ignore:
Timestamp:
03/11/2018 04:43:59 PM (6 years ago)
Author:
SergeyBiryukov
Message:

I18N: Use the actual placeholder instead of a number in translator comments if the corresponding string does not use numbered placeholders.

Add missing translator comments in WP_Theme_Install_List_Table and wp_notify_postauthor().
Add missing commas in some translator comments.

Fixes #43523.

File:
1 edited

Legend:

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

    r42791 r42827  
    19531953            $pass_change_email = array(
    19541954                'to'      => $user['user_email'],
    1955                 /* translators: User password change notification email subject. 1: Site name */
     1955                /* translators: User password change notification email subject. %s: Site name */
    19561956                'subject' => __( '[%s] Notice of Password Change' ),
    19571957                'message' => $pass_change_text,
     
    20102010            $email_change_email = array(
    20112011                'to'      => $user['user_email'],
    2012                 /* translators: User email change notification email subject. 1: Site name */
     2012                /* translators: User email change notification email subject. %s: Site name */
    20132013                'subject' => __( '[%s] Notice of Email Change' ),
    20142014                'message' => $email_change_text,
Note: See TracChangeset for help on using the changeset viewer.