From 96beaa51d3315dd0b33bf202edb24835fcbccb95 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 19 May 2021 18:17:56 +0000 Subject: [PATCH] App Passwords: Use "sites" terminology instead of "blogs" in application passwords help text. Follow-up to [49270]. Props jeremy80, johnbillion, audrasjb. Fixes #53225. Built from https://develop.svn.wordpress.org/trunk@50932 git-svn-id: http://core.svn.wordpress.org/trunk@50541 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/authorize-application.php | 6 +++--- wp-admin/user-edit.php | 6 +++--- wp-includes/version.php | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-admin/authorize-application.php b/wp-admin/authorize-application.php index b2027250f5..0708830282 100644 --- a/wp-admin/authorize-application.php +++ b/wp-admin/authorize-application.php @@ -165,10 +165,10 @@ require_once ABSPATH . 'wp-admin/admin-header.php';

the %2$s blog in this installation that you have permissions on.', - 'This will grant access to all %2$s blogs in this installation that you have permissions on.', + 'This will grant access to the %2$s site in this installation that you have permissions on.', + 'This will grant access to all %2$s sites in this installation that you have permissions on.', $blogs_count ), admin_url( 'my-sites.php' ), diff --git a/wp-admin/user-edit.php b/wp-admin/user-edit.php index acac0c4c29..71e16072dc 100644 --- a/wp-admin/user-edit.php +++ b/wp-admin/user-edit.php @@ -745,10 +745,10 @@ endif;

the %2$s blog in this installation that you have permissions on.', - 'Application passwords grant access to all %2$s blogs in this installation that you have permissions on.', + 'Application passwords grant access to the %2$s site in this installation that you have permissions on.', + 'Application passwords grant access to all %2$s sites in this installation that you have permissions on.', $blogs_count ), admin_url( 'my-sites.php' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 2fc8f8c119..2cd840a9a1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50931'; +$wp_version = '5.8-alpha-50932'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.