Changeset 45137
- Timestamp:
- 04/08/2019 06:16:41 AM (6 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-automatic-updater.php
r43598 r45137 905 905 $body[] = ''; 906 906 907 /* translators: %s: site title */908 $subject = sprintf( __( '[%s] There were failures during background updates' ), $site_title );907 /* translators: Background update failed notification email subject. %s: site title */ 908 $subject = sprintf( __( '[%s] Background Update Failed' ), $site_title ); 909 909 } else { 910 /* translators: %s: site title */911 $subject = sprintf( __( '[%s] Background updates have finished' ), $site_title );910 /* translators: Background update finished notification email subject. %s: site title */ 911 $subject = sprintf( __( '[%s] Background Update Finished' ), $site_title ); 912 912 } 913 913 -
trunk/src/wp-admin/user-new.php
r44895 r45137 123 123 %4$s' 124 124 ); 125 wp_mail( $new_user_email, sprintf( __( '[%s] Joining confirmation' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), sprintf( $message, get_option( 'blogname' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ), home_url( "/newbloguser/$newuser_key/" ) ) );125 wp_mail( $new_user_email, sprintf( __( '[%s] Joining Confirmation' ), wp_specialchars_decode( get_option( 'blogname' ) ) ), sprintf( $message, get_option( 'blogname' ), home_url(), wp_specialchars_decode( translate_user_role( $role['name'] ) ), home_url( "/newbloguser/$newuser_key/" ) ) ); 126 126 127 127 if ( $switched_locale ) { -
trunk/src/wp-includes/functions.php
r45111 r45137 6583 6583 'to' => $old_email, 6584 6584 /* translators: Site admin email change notification email subject. %s: Site title */ 6585 'subject' => __( '[%s] Notice of Admin Email Change' ),6585 'subject' => __( '[%s] Admin Email Changed' ), 6586 6586 'message' => $email_change_text, 6587 6587 'headers' => '', -
trunk/src/wp-includes/ms-functions.php
r45104 r45137 2646 2646 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 2647 2647 2648 wp_mail( $value, sprintf( __( '[%s] Ne w Network Admin Email Address' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content );2648 wp_mail( $value, sprintf( __( '[%s] Network Admin Email Change Request' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content ); 2649 2649 2650 2650 if ( $switched_locale ) { … … 2705 2705 'to' => $old_email, 2706 2706 /* translators: Network admin email change notification email subject. %s: Network title */ 2707 'subject' => __( '[%s] N otice of Network Admin Email Change' ),2707 'subject' => __( '[%s] Network Admin Email Changed' ), 2708 2708 'message' => $email_change_text, 2709 2709 'headers' => '', -
trunk/src/wp-includes/pluggable.php
r44826 r45137 1919 1919 $wp_new_user_notification_email_admin = array( 1920 1920 'to' => get_option( 'admin_email' ), 1921 /* translators: Password changenotification email subject. %s: Site title */1921 /* translators: New user registration notification email subject. %s: Site title */ 1922 1922 'subject' => __( '[%s] New User Registration' ), 1923 1923 'message' => $message, … … 1985 1985 $wp_new_user_notification_email = array( 1986 1986 'to' => $user->user_email, 1987 /* translators: Password changenotification 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' ), 1989 1989 'message' => $message, 1990 1990 'headers' => '', -
trunk/src/wp-includes/user.php
r45039 r45137 1971 1971 $pass_change_email = array( 1972 1972 'to' => $user['user_email'], 1973 /* translators: User password change notification email subject. %s: Site name */1974 'subject' => __( '[%s] Notice of Password Change' ),1973 /* translators: Password change notification email subject. %s: Site name */ 1974 'subject' => __( '[%s] Password Changed' ), 1975 1975 'message' => $pass_change_text, 1976 1976 'headers' => '', … … 2028 2028 $email_change_email = array( 2029 2029 'to' => $user['user_email'], 2030 /* translators: User email change notification email subject. %s: Site name */2031 'subject' => __( '[%s] Notice of Email Change' ),2030 /* translators: Email change notification email subject. %s: Site name */ 2031 'subject' => __( '[%s] Email Changed' ), 2032 2032 'message' => $email_change_text, 2033 2033 'headers' => '', … … 2810 2810 $content = str_replace( '###SITEURL###', home_url(), $content ); 2811 2811 2812 wp_mail( $_POST['email'], sprintf( __( '[%s] New Email Address' ), $sitename ), $content ); 2812 /* translators: New email address notification email subject. %s: Site name */ 2813 wp_mail( $_POST['email'], sprintf( __( '[%s] Email Change Request' ), $sitename ), $content ); 2813 2814 2814 2815 $_POST['email'] = $current_user->user_email; … … 3169 3170 3170 3171 $subject = sprintf( 3171 /* translators: %s: Site name. */3172 /* translators: Erasure request fulfilled notification email subject. %s: Site name. */ 3172 3173 __( '[%s] Erasure Request Fulfilled' ), 3173 3174 $email_data['sitename']
Note: See TracChangeset
for help on using the changeset viewer.