I18N: Add missing placeholders in some translator comments.

Follow-up to [49109].

See #42790.

git-svn-id: https://develop.svn.wordpress.org/trunk@49110 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-10-09 01:04:53 +00:00
parent 1856d0fe2a
commit b455d336e3
2 changed files with 5 additions and 5 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

@ -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' ) );
}