Changeset 45204
- Timestamp:
- 04/15/2019 10:38:59 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-automatic-updater.php
r45165 r45204 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 title, 2: WordPress version number. */ 652 652 $subject = __( '[%1$s] Your site has updated to WordPress %2$s' ); 653 653 break; … … 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 title, 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 title. */ 663 663 $subject = __( '[%1$s] URGENT: Your site may be down due to a failed update' ); 664 664 break; … … 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 title */ 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 title */ 918 918 $subject = sprintf( __( '[%s] Background Update Finished' ), $site_title ); 919 919 } -
trunk/src/wp-admin/includes/file.php
r45167 r45204 2424 2424 $email_address, 2425 2425 sprintf( 2426 /* translators: Personal data export notification email subject. %s: Site title */ 2426 2427 __( '[%s] Personal Data Export' ), 2427 2428 $site_name -
trunk/src/wp-admin/includes/misc.php
r45180 r45204 1290 1290 $content = str_replace( '###SITEURL###', home_url(), $content ); 1291 1291 1292 /* translators: New admin email address notification email subject. %s: Site title */ 1292 1293 wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ), $content ); 1293 1294 -
trunk/src/wp-admin/user-new.php
r45140 r45204 123 123 %4$s' 124 124 ); 125 126 /* translators: Joining confirmation notification email subject. %s: Site title */ 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 -
trunk/src/wp-includes/ms-functions.php
r45137 r45204 2646 2646 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 2647 2647 2648 /* translators: Email change notification email subject. %s: Network title */ 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 -
trunk/src/wp-includes/pluggable.php
r45173 r45204 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: Site title, 2: Post title */ 1539 1539 $subject = sprintf( __( '[%1$s] Trackback: "%2$s"' ), $blogname, $post->post_title ); 1540 1540 break; … … 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: Site title, 2: Post title */ 1552 1552 $subject = sprintf( __( '[%1$s] Pingback: "%2$s"' ), $blogname, $post->post_title ); 1553 1553 break; … … 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: Site title, 2: Post title */ 1567 1567 $subject = sprintf( __( '[%1$s] Comment: "%2$s"' ), $blogname, $post->post_title ); 1568 1568 break; -
trunk/src/wp-includes/user.php
r45137 r45204 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 title, 2: Name of the confirmed action. */ 3089 3089 __( '[%1$s] Action Confirmed: %2$s' ), 3090 3090 $email_data['sitename'], … … 3498 3498 $content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content ); 3499 3499 3500 /* translators: Privacy data request subject. 1: Site name, 2: Name of the action */3500 /* translators: Confirm privacy data request notification email subject. 1: Site title, 2: Name of the action */ 3501 3501 $subject = sprintf( __( '[%1$s] Confirm Action: %2$s' ), $email_data['sitename'], $email_data['description'] ); 3502 3502 -
trunk/src/wp-login.php
r45175 r45204 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 title */ 399 399 $title = sprintf( __( '[%s] Password Reset' ), $site_name ); 400 400
Note: See TracChangeset
for help on using the changeset viewer.