I18N: Add missing placeholders in some translator comments.

Follow-up to [49109].

See #42790.
Built from https://develop.svn.wordpress.org/trunk@49110


git-svn-id: http://core.svn.wordpress.org/trunk@48872 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-10-09 01:06:03 +00:00
parent d5ebe12f11
commit 5affd982a0
3 changed files with 6 additions and 6 deletions

View File

@ -113,7 +113,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php if ( $app_name ) : ?>
<p>
<?php
/* translators: Application Name */
/* translators: %s: Application name. */
printf( __( 'Would you like to give the application identifying itself as %s access to your account? You should only do this if you trust the app in question.' ), '<strong>' . esc_html( $app_name ) . '</strong>' );
?>
</p>
@ -180,7 +180,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php
if ( $success_url ) {
printf(
/* translators: The URL the user is being redirected to. */
/* translators: %s: The URL the user is being redirected to. */
__( 'You will be sent to %s' ),
'<strong><kbd>' . esc_html(
add_query_arg(
@ -204,7 +204,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
<?php
if ( $reject_url ) {
printf(
/* translators: The URL the user is being redirected to. */
/* translators: %s: The URL the user is being redirected to. */
__( 'You will be sent to %s' ),
'<strong><kbd>' . esc_html(
add_query_arg(

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6-alpha-49109';
$wp_version = '5.6-alpha-49110';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -685,7 +685,7 @@ switch ( $action ) {
/* translators: URL to the WordPress help section about admin email. */
$admin_email_help_url = __( 'https://wordpress.org/support/article/settings-general-screen/#email-address' );
/* translators: accessibility text */
/* translators: Accessibility text. */
$accessibility_text = sprintf( '<span class="screen-reader-text"> %s</span>', __( '(opens in a new tab)' ) );
printf(
@ -1379,7 +1379,7 @@ switch ( $action ) {
/* translators: 1: Website name, 2: Application name. */
$message = sprintf( 'Please log in to %1$s to authorize %2$s to connect to your account.', get_bloginfo( 'name', 'display' ), '<strong>' . esc_html( $query['app_name'] ) . '</strong>' );
} else {
/* translators: Website name. */
/* translators: %s: Website name. */
$message = sprintf( 'Please log in to %s to proceed with authorization.', get_bloginfo( 'name', 'display' ) );
}