mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
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:
parent
d5ebe12f11
commit
5affd982a0
@ -113,7 +113,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||||||
<?php if ( $app_name ) : ?>
|
<?php if ( $app_name ) : ?>
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?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>' );
|
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>
|
</p>
|
||||||
@ -180,7 +180,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||||||
<?php
|
<?php
|
||||||
if ( $success_url ) {
|
if ( $success_url ) {
|
||||||
printf(
|
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' ),
|
__( 'You will be sent to %s' ),
|
||||||
'<strong><kbd>' . esc_html(
|
'<strong><kbd>' . esc_html(
|
||||||
add_query_arg(
|
add_query_arg(
|
||||||
@ -204,7 +204,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
|||||||
<?php
|
<?php
|
||||||
if ( $reject_url ) {
|
if ( $reject_url ) {
|
||||||
printf(
|
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' ),
|
__( 'You will be sent to %s' ),
|
||||||
'<strong><kbd>' . esc_html(
|
'<strong><kbd>' . esc_html(
|
||||||
add_query_arg(
|
add_query_arg(
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
@ -685,7 +685,7 @@ switch ( $action ) {
|
|||||||
/* translators: URL to the WordPress help section about admin email. */
|
/* translators: URL to the WordPress help section about admin email. */
|
||||||
$admin_email_help_url = __( 'https://wordpress.org/support/article/settings-general-screen/#email-address' );
|
$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)' ) );
|
$accessibility_text = sprintf( '<span class="screen-reader-text"> %s</span>', __( '(opens in a new tab)' ) );
|
||||||
|
|
||||||
printf(
|
printf(
|
||||||
@ -1379,7 +1379,7 @@ switch ( $action ) {
|
|||||||
/* translators: 1: Website name, 2: Application name. */
|
/* 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>' );
|
$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 {
|
} else {
|
||||||
/* translators: Website name. */
|
/* translators: %s: Website name. */
|
||||||
$message = sprintf( 'Please log in to %s to proceed with authorization.', get_bloginfo( 'name', 'display' ) );
|
$message = sprintf( 'Please log in to %s to proceed with authorization.', get_bloginfo( 'name', 'display' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user