mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 19:46:21 +00:00
I18N: Improvements to and additions of translator comments for various email subject strings.
Props ramiy Fixes #46920 Built from https://develop.svn.wordpress.org/trunk@45204 git-svn-id: http://core.svn.wordpress.org/trunk@45013 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
60bf5fefff
commit
d4d1267847
@ -648,18 +648,18 @@ class WP_Automatic_Updater {
|
|||||||
|
|
||||||
switch ( $type ) {
|
switch ( $type ) {
|
||||||
case 'success': // We updated.
|
case 'success': // We updated.
|
||||||
/* translators: 1: Site name, 2: WordPress version number. */
|
/* translators: Site updated notification email subject. 1: Site title, 2: WordPress version number. */
|
||||||
$subject = __( '[%1$s] Your site has updated to WordPress %2$s' );
|
$subject = __( '[%1$s] Your site has updated to WordPress %2$s' );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'fail': // We tried to update but couldn't.
|
case 'fail': // We tried to update but couldn't.
|
||||||
case 'manual': // We can't update (and made no attempt).
|
case 'manual': // We can't update (and made no attempt).
|
||||||
/* translators: 1: Site name, 2: WordPress version number. */
|
/* translators: Updated available notification email subject. 1: Site title, 2: WordPress version number. */
|
||||||
$subject = __( '[%1$s] WordPress %2$s is available. Please update!' );
|
$subject = __( '[%1$s] WordPress %2$s is available. Please update!' );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'critical': // We tried to update, started to copy files, then things went wrong.
|
case 'critical': // We tried to update, started to copy files, then things went wrong.
|
||||||
/* translators: 1: Site name. */
|
/* translators: Site down notification email subject. 1: Site title. */
|
||||||
$subject = __( '[%1$s] URGENT: Your site may be down due to a failed update' );
|
$subject = __( '[%1$s] URGENT: Your site may be down due to a failed update' );
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -911,10 +911,10 @@ Thanks! -- The WordPress Team"
|
|||||||
);
|
);
|
||||||
$body[] = '';
|
$body[] = '';
|
||||||
|
|
||||||
/* translators: Background update failed notification email subject. %s: site title */
|
/* translators: Background update failed notification email subject. %s: Site title */
|
||||||
$subject = sprintf( __( '[%s] Background Update Failed' ), $site_title );
|
$subject = sprintf( __( '[%s] Background Update Failed' ), $site_title );
|
||||||
} else {
|
} else {
|
||||||
/* translators: Background update finished notification email subject. %s: site title */
|
/* translators: Background update finished notification email subject. %s: Site title */
|
||||||
$subject = sprintf( __( '[%s] Background Update Finished' ), $site_title );
|
$subject = sprintf( __( '[%s] Background Update Finished' ), $site_title );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2423,6 +2423,7 @@ All at ###SITENAME###
|
|||||||
$mail_success = wp_mail(
|
$mail_success = wp_mail(
|
||||||
$email_address,
|
$email_address,
|
||||||
sprintf(
|
sprintf(
|
||||||
|
/* translators: Personal data export notification email subject. %s: Site title */
|
||||||
__( '[%s] Personal Data Export' ),
|
__( '[%s] Personal Data Export' ),
|
||||||
$site_name
|
$site_name
|
||||||
),
|
),
|
||||||
|
@ -1289,6 +1289,7 @@ All at ###SITENAME###
|
|||||||
$content = str_replace( '###SITENAME###', wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), $content );
|
$content = str_replace( '###SITENAME###', wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ), $content );
|
||||||
$content = str_replace( '###SITEURL###', home_url(), $content );
|
$content = str_replace( '###SITEURL###', home_url(), $content );
|
||||||
|
|
||||||
|
/* translators: New admin email address notification email subject. %s: Site title */
|
||||||
wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ), $content );
|
wp_mail( $value, sprintf( __( '[%s] New Admin Email Address' ), wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES ) ), $content );
|
||||||
|
|
||||||
if ( $switched_locale ) {
|
if ( $switched_locale ) {
|
||||||
|
@ -122,6 +122,8 @@ You\'ve been invited to join \'%1$s\' at
|
|||||||
Please click the following link to confirm the invite:
|
Please click the following link to confirm the invite:
|
||||||
%4$s'
|
%4$s'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/* translators: Joining confirmation notification email subject. %s: Site title */
|
||||||
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/" ) ) );
|
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/" ) ) );
|
||||||
|
|
||||||
if ( $switched_locale ) {
|
if ( $switched_locale ) {
|
||||||
|
@ -2645,6 +2645,7 @@ All at ###SITENAME###
|
|||||||
$content = str_replace( '###SITENAME###', wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ), $content );
|
$content = str_replace( '###SITENAME###', wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ), $content );
|
||||||
$content = str_replace( '###SITEURL###', network_home_url(), $content );
|
$content = str_replace( '###SITEURL###', network_home_url(), $content );
|
||||||
|
|
||||||
|
/* translators: Email change notification email subject. %s: Network title */
|
||||||
wp_mail( $value, sprintf( __( '[%s] Network Admin Email Change Request' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content );
|
wp_mail( $value, sprintf( __( '[%s] Network Admin Email Change Request' ), wp_specialchars_decode( get_site_option( 'site_name' ), ENT_QUOTES ) ), $content );
|
||||||
|
|
||||||
if ( $switched_locale ) {
|
if ( $switched_locale ) {
|
||||||
|
@ -1535,7 +1535,7 @@ if ( ! function_exists( 'wp_notify_postauthor' ) ) :
|
|||||||
/* translators: %s: comment text */
|
/* translators: %s: comment text */
|
||||||
$notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
|
$notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
|
||||||
$notify_message .= __( 'You can see all trackbacks on this post here:' ) . "\r\n";
|
$notify_message .= __( 'You can see all trackbacks on this post here:' ) . "\r\n";
|
||||||
/* translators: 1: blog name, 2: post title */
|
/* translators: Trackback notification email subject. 1: Site title, 2: Post title */
|
||||||
$subject = sprintf( __( '[%1$s] Trackback: "%2$s"' ), $blogname, $post->post_title );
|
$subject = sprintf( __( '[%1$s] Trackback: "%2$s"' ), $blogname, $post->post_title );
|
||||||
break;
|
break;
|
||||||
case 'pingback':
|
case 'pingback':
|
||||||
@ -1548,7 +1548,7 @@ if ( ! function_exists( 'wp_notify_postauthor' ) ) :
|
|||||||
/* translators: %s: comment text */
|
/* translators: %s: comment text */
|
||||||
$notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
|
$notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
|
||||||
$notify_message .= __( 'You can see all pingbacks on this post here:' ) . "\r\n";
|
$notify_message .= __( 'You can see all pingbacks on this post here:' ) . "\r\n";
|
||||||
/* translators: 1: blog name, 2: post title */
|
/* translators: Pingback notification email subject. 1: Site title, 2: Post title */
|
||||||
$subject = sprintf( __( '[%1$s] Pingback: "%2$s"' ), $blogname, $post->post_title );
|
$subject = sprintf( __( '[%1$s] Pingback: "%2$s"' ), $blogname, $post->post_title );
|
||||||
break;
|
break;
|
||||||
default: // Comments
|
default: // Comments
|
||||||
@ -1563,7 +1563,7 @@ if ( ! function_exists( 'wp_notify_postauthor' ) ) :
|
|||||||
/* translators: %s: comment text */
|
/* translators: %s: comment text */
|
||||||
$notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
|
$notify_message .= sprintf( __( 'Comment: %s' ), "\r\n" . $comment_content ) . "\r\n\r\n";
|
||||||
$notify_message .= __( 'You can see all comments on this post here:' ) . "\r\n";
|
$notify_message .= __( 'You can see all comments on this post here:' ) . "\r\n";
|
||||||
/* translators: 1: blog name, 2: post title */
|
/* translators: Comment notification email subject. 1: Site title, 2: Post title */
|
||||||
$subject = sprintf( __( '[%1$s] Comment: "%2$s"' ), $blogname, $post->post_title );
|
$subject = sprintf( __( '[%1$s] Comment: "%2$s"' ), $blogname, $post->post_title );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -3085,7 +3085,7 @@ All at ###SITENAME###
|
|||||||
$content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
|
$content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
|
||||||
|
|
||||||
$subject = sprintf(
|
$subject = sprintf(
|
||||||
/* translators: 1: Site name. 2: Name of the confirmed action. */
|
/* translators: Privacy data request confirmed notification email subject. 1: Site title, 2: Name of the confirmed action. */
|
||||||
__( '[%1$s] Action Confirmed: %2$s' ),
|
__( '[%1$s] Action Confirmed: %2$s' ),
|
||||||
$email_data['sitename'],
|
$email_data['sitename'],
|
||||||
$action_description
|
$action_description
|
||||||
@ -3497,7 +3497,7 @@ All at ###SITENAME###
|
|||||||
$content = str_replace( '###SITENAME###', $email_data['sitename'], $content );
|
$content = str_replace( '###SITENAME###', $email_data['sitename'], $content );
|
||||||
$content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
|
$content = str_replace( '###SITEURL###', esc_url_raw( $email_data['siteurl'] ), $content );
|
||||||
|
|
||||||
/* translators: Privacy data request subject. 1: Site name, 2: Name of the action */
|
/* translators: Confirm privacy data request notification email subject. 1: Site title, 2: Name of the action */
|
||||||
$subject = sprintf( __( '[%1$s] Confirm Action: %2$s' ), $email_data['sitename'], $email_data['description'] );
|
$subject = sprintf( __( '[%1$s] Confirm Action: %2$s' ), $email_data['sitename'], $email_data['description'] );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.2-beta3-45203';
|
$wp_version = '5.2-beta3-45204';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
@ -395,7 +395,7 @@ function retrieve_password() {
|
|||||||
$message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n";
|
$message .= __( 'To reset your password, visit the following address:' ) . "\r\n\r\n";
|
||||||
$message .= '<' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . ">\r\n";
|
$message .= '<' . network_site_url( "wp-login.php?action=rp&key=$key&login=" . rawurlencode( $user_login ), 'login' ) . ">\r\n";
|
||||||
|
|
||||||
/* translators: Password reset email subject. %s: Site name */
|
/* translators: Password reset notification email subject. %s: Site title */
|
||||||
$title = sprintf( __( '[%s] Password Reset' ), $site_name );
|
$title = sprintf( __( '[%s] Password Reset' ), $site_name );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user