Make WordPress Core

Changeset 50932


Ignore:
Timestamp:
05/19/2021 06:16:12 PM (4 years ago)
Author:
SergeyBiryukov
Message:

App Passwords: Use "sites" terminology instead of "blogs" in application passwords help text.

Follow-up to [49270].

Props jeremy80, johnbillion, audrasjb.
Fixes #53225.

Location:
trunk/src/wp-admin
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/authorize-application.php

    r50916 r50932  
    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                        ),
  • trunk/src/wp-admin/user-edit.php

    r50412 r50932  
    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                            ),
Note: See TracChangeset for help on using the changeset viewer.