Ticket #46920: 46920.2.patch
File 46920.2.patch, 3.6 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 ) {