Make WordPress Core

Ticket #53225: 53225.diff

File 53225.diff, 2.0 KB (added by jeremy80, 4 years ago)
  • src/wp-admin/authorize-application.php

    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'; 
    165165                                <p>
    166166                                        <?php
    167167                                        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. */
    169169                                                _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>.',
    172172                                                        $blogs_count
    173173                                                ),
    174174                                                admin_url( 'my-sites.php' ),
  • src/wp-admin/user-edit.php

    diff --git a/src/wp-admin/user-edit.php b/src/wp-admin/user-edit.php
    index acac0c4c29..71e16072dc 100644
    a b endif; 
    745745                                        <p>
    746746                                                <?php
    747747                                                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. */
    749749                                                        _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>.',
    752752                                                                $blogs_count
    753753                                                        ),
    754754                                                        admin_url( 'my-sites.php' ),