diff --git a/src/wp-admin/authorize-application.php b/src/wp-admin/authorize-application.php
index b2027250f5..0708830282 100644
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php'; |
165 | 165 | <p> |
166 | 166 | <?php |
167 | 167 | printf( |
168 | | /* translators: 1: URL to my-sites.php, 2: Number of blogs the user has. */ |
| 168 | /* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */ |
169 | 169 | _n( |
170 | | 'This will grant access to <a href="%1$s">the %2$s blog in this installation that you have permissions on</a>.', |
171 | | 'This will grant access to <a href="%1$s">all %2$s blogs in this installation that you have permissions on</a>.', |
| 170 | 'This will grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.', |
| 171 | 'This will grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.', |
172 | 172 | $blogs_count |
173 | 173 | ), |
174 | 174 | admin_url( 'my-sites.php' ), |
diff --git a/src/wp-admin/user-edit.php b/src/wp-admin/user-edit.php
index acac0c4c29..71e16072dc 100644
a
|
b
|
endif; |
745 | 745 | <p> |
746 | 746 | <?php |
747 | 747 | printf( |
748 | | /* translators: 1: URL to my-sites.php, 2: Number of blogs the user has. */ |
| 748 | /* translators: 1: URL to my-sites.php, 2: Number of sites the user has. */ |
749 | 749 | _n( |
750 | | 'Application passwords grant access to <a href="%1$s">the %2$s blog in this installation that you have permissions on</a>.', |
751 | | 'Application passwords grant access to <a href="%1$s">all %2$s blogs in this installation that you have permissions on</a>.', |
| 750 | 'Application passwords grant access to <a href="%1$s">the %2$s site in this installation that you have permissions on</a>.', |
| 751 | 'Application passwords grant access to <a href="%1$s">all %2$s sites in this installation that you have permissions on</a>.', |
752 | 752 | $blogs_count |
753 | 753 | ), |
754 | 754 | admin_url( 'my-sites.php' ), |