diff --git a/wp-includes/version.php b/wp-includes/version.php
index dbe80d1b83..86bdace909 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
-$wp_version = '7.0-alpha-61367';
+$wp_version = '7.0-alpha-61368';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
diff --git a/wp-login.php b/wp-login.php
index 60d9c21f3d..429032a43a 100644
--- a/wp-login.php
+++ b/wp-login.php
@@ -1462,10 +1462,10 @@ switch ( $action ) {
if ( ! empty( $query['app_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' ), '' . esc_html( $query['app_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: %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' ) );
}
$errors->add( 'authorize_application', $message, 'message' );