Ticket #46920: 46920.3.patch
File 46920.3.patch, 7.7 KB (added by , 6 years ago) |
---|
-
wp-admin/includes/class-wp-automatic-updater.php
648 648 649 649 switch ( $type ) { 650 650 case 'success': // We updated. 651 /* translators: 1: Site name, 2: WordPress version number. */651 /* translators: Site updated notification email subject. 1: Site name, 2: WordPress version number. */ 652 652 $subject = __( '[%1$s] Your site has updated to WordPress %2$s' ); 653 653 break; 654 654 655 655 case 'fail': // We tried to update but couldn't. 656 656 case 'manual': // We can't update (and made no attempt). 657 /* translators: 1: Site name, 2: WordPress version number. */657 /* translators: Updated available notification email subject. 1: Site name, 2: WordPress version number. */ 658 658 $subject = __( '[%1$s] WordPress %2$s is available. Please update!' ); 659 659 break; 660 660 661 661 case 'critical': // We tried to update, started to copy files, then things went wrong. 662 /* translators: 1: Site name. */662 /* translators: Site down notification email subject. 1: Site name. */ 663 663 $subject = __( '[%1$s] URGENT: Your site may be down due to a failed update' ); 664 664 break; 665 665 … … 911 911 ); 912 912 $body[] = ''; 913 913 914 /* translators: Background update failed notification email subject. %s: site title */914 /* translators: Background update failed notification email subject. %s: Site name */ 915 915 $subject = sprintf( __( '[%s] Background Update Failed' ), $site_title ); 916 916 } else { 917 /* translators: Background update finished notification email subject. %s: site title */917 /* translators: Background update finished notification email subject. %s: Site name */ 918 918 $subject = sprintf( __( '[%s] Background Update Finished' ), $site_title ); 919 919 } 920 920 -
wp-admin/includes/file.php
2423 2423 $mail_success = wp_mail( 2424 2424 $email_address, 2425 2425 sprintf( 2426 /* translators: Personal data export notification email subject. %s: Site name */ 2426 2427 __( '[%s] Personal Data Export' ), 2427 2428 $site_name 2428 2429 ), -
wp-admin/includes/misc.php
1289 1289 $content = str_replace( '###SITENAME###', wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), $content ); 1290 1290 $content = str_replace( '###SITEURL###', home_url(), $content ); 1291 1291 1292 /* translators: New admin email address notification email subject. %s: Site name */ 1292 1293 wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ), $content ); 1293 1294 1294 1295 if ( $switched_locale ) { -
wp-admin/user-new.php
122 122 Please click the following link to confirm the invite: 123 123 %4$s' 124 124 ); 125 126 /* translators: Joining confirmation notification email subject. %s: Site name */ 125 127 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 128 127 129 if ( $switched_locale ) { -
wp-includes/ms-functions.php
2645 2645 $content = str_replace( '###SITENAME###', wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ), $content ); 2646 2646 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 2647 2647 2648 /* translators: Email change notification email subject. %s: Site name */ 2648 2649 wp_mail( $value, sprintf( __( '[%s] Network Admin Email Change Request' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content ); 2649 2650 2650 2651 if ( $switched_locale ) { -
wp-includes/pluggable.php
1535 1535 /* translators: %s: comment text */ 1536 1536 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; 1537 1537 $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: blog name, 2: post title */ 1539 1539 $subject = sprintf( __( '[%1$s] Trackback: "%2$s"' ), $blogname, $post->post_title ); 1540 1540 break; 1541 1541 case 'pingback': … … 1548 1548 /* translators: %s: comment text */ 1549 1549 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; 1550 1550 $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: blog name, 2: post title */ 1552 1552 $subject = sprintf( __( '[%1$s] Pingback: "%2$s"' ), $blogname, $post->post_title ); 1553 1553 break; 1554 1554 default: // Comments … … 1563 1563 /* translators: %s: comment text */ 1564 1564 $notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n"; 1565 1565 $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: blog name, 2: post title */ 1567 1567 $subject = sprintf( __( '[%1$s] Comment: "%2$s"' ), $blogname, $post->post_title ); 1568 1568 break; 1569 1569 } -
wp-includes/user.php
3085 3085 $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content ); 3086 3086 3087 3087 $subject = sprintf( 3088 /* translators: 1: Site name. 2: Name of the confirmed action. */3088 /* translators: Privacy data request confirmed notification email subject. 1: Site name. 2: Name of the confirmed action. */ 3089 3089 __( '[%1$s] Action Confirmed: %2$s' ), 3090 3090 $email_data['sitename'], 3091 3091 $action_description … … 3497 3497 $content = str_replace( '###SITENAME###', $email_data['sitename'], $content ); 3498 3498 $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content ); 3499 3499 3500 /* translators: Privacy data requestsubject. 1: Site name, 2: Name of the action */3500 /* translators: Confirm privacy data request notification email subject. 1: Site name, 2: Name of the action */ 3501 3501 $subject = sprintf( __( '[%1$s] Confirm Action: %2$s' ), $email_data['sitename'], $email_data['description'] ); 3502 3502 3503 3503 /** -
wp-login.php
395 395 $message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n"; 396 396 $message .= '<' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . ">\r\n"; 397 397 398 /* translators: Password reset email subject. %s: Site name */398 /* translators: Password reset notification email subject. %s: Site name */ 399 399 $title = sprintf( __( '[%s] Password Reset' ), $site_name ); 400 400 401 401 /**