Make WordPress Core


Ignore:
Timestamp:
04/08/2019 06:16:41 AM (6 years ago)
Author:
pento
Message:

Text Changes: Tweak the wording of email notification subjects.

This change brings more coherence between the subject lines of the various emails WordPress will send.

Props ramiy, pento.
Fixes #37940.

File:
1 edited

Legend:

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

    r44826 r45137  
    19191919            $wp_new_user_notification_email_admin = array(
    19201920                'to'      => get_option( 'admin_email' ),
    1921                 /* translators: Password change notification email subject. %s: Site title */
     1921                /* translators: New user registration notification email subject. %s: Site title */
    19221922                'subject' => __( '[%s] New User Registration' ),
    19231923                'message' => $message,
     
    19851985        $wp_new_user_notification_email = array(
    19861986            'to'      => $user->user_email,
    1987             /* translators: Password change notification email subject. %s: Site title */
    1988             'subject' => __( '[%s] Your username and password info' ),
     1987            /* translators: Login credentials notification email subject. %s: Site title */
     1988            'subject' => __( '[%s] Login Credentials' ),
    19891989            'message' => $message,
    19901990            'headers' => '',
Note: See TracChangeset for help on using the changeset viewer.