Make WordPress Core

Changeset 59850


Ignore:
Timestamp:
02/20/2025 11:14:28 PM (3 months ago)
Author:
audrasjb
Message:

Administration: Capitalize "Edit Site" strings for consistency.

This changeset brings more consistency by capitalizing the "Edit Site" strings located in the Toolbar and on the Site Editor screen.

Props bronsonquick, sabernhardt, audrasjb, peterwilsoncc, adamsilverstein.
Fixes #62971.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/site-editor.php

    r59794 r59850  
    266266    <?php // JavaScript is disabled. ?>
    267267    <div class="wrap hide-if-js site-editor-no-js">
    268         <h1 class="wp-heading-inline"><?php _e( 'Edit site' ); ?></h1>
     268        <h1 class="wp-heading-inline"><?php _e( 'Edit Site' ); ?></h1>
    269269        <?php
    270270        /**
  • trunk/src/wp-includes/admin-bar.php

    r59425 r59850  
    454454
    455455/**
    456  * Adds the "Edit site" link to the Toolbar.
     456 * Adds the "Edit Site" link to the Toolbar.
    457457 *
    458458 * @since 5.9.0
     
    480480        array(
    481481            'id'    => 'site-editor',
    482             'title' => __( 'Edit site' ),
     482            'title' => __( 'Edit Site' ),
    483483            'href'  => add_query_arg(
    484484                array(
Note: See TracChangeset for help on using the changeset viewer.