From b455d336e343163f86260060df9849c3e6f173b5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 9 Oct 2020 01:04:53 +0000 Subject: [PATCH] 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 --- src/wp-admin/authorize-application.php | 6 +++--- src/wp-login.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wp-admin/authorize-application.php b/src/wp-admin/authorize-application.php index dd60a349f6..cae92ec22a 100644 --- a/src/wp-admin/authorize-application.php +++ b/src/wp-admin/authorize-application.php @@ -113,7 +113,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';

' . esc_html( $app_name ) . '' ); ?>

@@ -180,7 +180,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; ' . esc_html( add_query_arg( @@ -204,7 +204,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; ' . esc_html( add_query_arg( diff --git a/src/wp-login.php b/src/wp-login.php index 0ad2c039a8..46700c975f 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -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( ' %s', __( '(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' ), '' . esc_html( $query['app_name'] ) . '' ); } else { - /* translators: Website name. */ + /* translators: %s: Website name. */ $message = sprintf( 'Please log in to %s to proceed with authorization.', get_bloginfo( 'name', 'display' ) ); }