Make WordPress Core

Changeset 57766


Ignore:
Timestamp:
03/05/2024 12:10:37 AM (15 months ago)
Author:
jorbin
Message:

UI-Copy: Use capital cased singular for Site Icon.

Follow up to [41749], [57713], and [57730].

Props johnbillion, audrasjb.
Fixes #60686.

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/options-general.php

    r57713 r57766  
    200200        <?php
    201201            /* translators: %s: Site Icon size in pixels. */
    202             printf( __( 'Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. They should be square and at least %s pixels.' ), '<code>512 &times; 512</code>' );
     202            printf( __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least %s pixels.' ), '<code>512 &times; 512</code>' );
    203203        ?>
    204204    </p>
  • trunk/src/wp-includes/class-wp-customize-manager.php

    r57730 r57766  
    52005200                    'description' => sprintf(
    52015201                        /* translators: %s: Site Icon size in pixels. */
    5202                         '<p>' . __( 'Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. They should be square and at least %s pixels.' ) . '</p>',
     5202                        '<p>' . __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least %s pixels.' ) . '</p>',
    52035203                        '<code>512 &times; 512</code>'
    52045204                    ),
  • trunk/src/wp-includes/customize/class-wp-customize-media-control.php

    r57687 r57766  
    246246                return array(
    247247                    'select'       => __( 'Select image' ),
    248                     'site_icon'    => __( 'Select site icon' ),
     248                    'site_icon'    => __( 'Select Site Icon' ),
    249249                    'change'       => __( 'Change image' ),
    250250                    'default'      => __( 'Default' ),
Note: See TracChangeset for help on using the changeset viewer.