Make WordPress Core

Changeset 54792


Ignore:
Timestamp:
11/10/2022 04:21:48 PM (22 months ago)
Author:
audrasjb
Message:

Text Changes: Replace "Full site editing" with "Site Editor".

This changeset replaces the various occurrences of "Full site editing" with "Site Editor" as it is the new official name of the feature.
For more background about this change, see https://make.wordpress.org/updates/2022/11/04/site-editor-a-more-user-friendly-name/.

Props audrasjb, peterwilsoncc, poena, ocean90, Mamaduka, desrosj.
Fixes #57026.
Merges [54786], [54787], and [54788] to the 6.1 branch.

Location:
branches/6.1
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • branches/6.1

  • branches/6.1/src/wp-admin/about.php

    r54731 r54792  
    215215                    <?php
    216216                    printf(
    217                         /* translators: %s: Link to "full site editing" themes on WordPress.org. */
     217                        /* translators: %s: Link to Block Themes on WordPress.org. */
    218218                        __( 'The Themes Directory has <a href="%s">a filter for block themes</a>, and a pattern preview gives a better sense of what the theme might look like while exploring different themes and patterns.' ),
    219219                        esc_url( __( 'https://wordpress.org/themes/tags/full-site-editing/' ) )
  • branches/6.1/src/wp-admin/includes/theme.php

    r53455 r54792  
    300300 * @since 5.5.0 Added 'Wide Blocks' layout option.
    301301 * @since 5.8.1 Added 'Template Editing' feature.
     302 * @since 6.1.1 Replaced 'Full Site Editing' feature name with 'Site Editor'.
    302303 *
    303304 * @param bool $api Optional. Whether try to fetch tags from the WordPress.org API. Defaults to true.
     
    332333            'featured-images'       => __( 'Featured Images' ),
    333334            'footer-widgets'        => __( 'Footer Widgets' ),
    334             'full-site-editing'     => __( 'Full Site Editing' ),
     335            'full-site-editing'     => __( 'Site Editor' ),
    335336            'full-width-template'   => __( 'Full Width Template' ),
    336337            'post-formats'          => __( 'Post Formats' ),
  • branches/6.1/src/wp-admin/site-editor.php

    r54176 r54792  
    2121
    2222if ( ! ( current_theme_supports( 'block-template-parts' ) || wp_is_block_theme() ) ) {
    23     wp_die( __( 'The theme you are currently using is not compatible with Full Site Editing.' ) );
     23    wp_die( __( 'The theme you are currently using is not compatible with the Site Editor.' ) );
    2424}
    2525
  • branches/6.1/src/wp-content/themes/twentytwentytwo/readme.txt

    r54492 r54792  
    1212Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page.
    1313
    14 The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Full Site Editing features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks.
     14The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks.
    1515
    1616Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.
  • branches/6.1/src/wp-content/themes/twentytwentytwo/style.css

    r54492 r54792  
    44Author: the WordPress team
    55Author URI: https://wordpress.org/
    6 Description: Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Full Site Editing features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.
     6Description: Built on a solidly designed foundation, Twenty Twenty-Two embraces the idea that everyone deserves a truly unique website. The theme’s subtle styles are inspired by the diversity and versatility of birds: its typography is lightweight yet strong, its color palette is drawn from nature, and its layout elements sit gently on the page. The true richness of Twenty Twenty-Two lies in its opportunity for customization. The theme is built to take advantage of the Site Editor features introduced in WordPress 5.9, which means that colors, typography, and the layout of every single page on your site can be customized to suit your vision. It also includes dozens of block patterns, opening the door to a wide range of professionally designed layouts in just a few clicks. Whether you’re building a single-page website, a blog, a business website, or a portfolio, Twenty Twenty-Two will help you create a site that is uniquely yours.
    77Requires at least: 5.9
    88Tested up to: 6.1
  • branches/6.1/src/wp-includes/block-template.php

    r54319 r54792  
    4444 * @param string   $type      Sanitized filename without extension.
    4545 * @param string[] $templates A list of template candidates, in descending order of priority.
    46  * @return string The path to the Full Site Editing template canvas file, or the fallback PHP template.
     46 * @return string The path to the Site Editor template canvas file, or the fallback PHP template.
    4747 */
    4848function locate_block_template( $template, $type, array $templates ) {
  • branches/6.1/src/wp-includes/script-loader.php

    r54753 r54792  
    12881288            'blockThemeNotification'  => sprintf(
    12891289                /* translators: 1: Link to Site Editor documentation on HelpHub, 2: HTML button. */
    1290                 __( 'Hurray! Your theme supports Full Site Editing with blocks. <a href="%1$s">Tell me more</a>. %2$s' ),
     1290                __( 'Hurray! Your theme supports site editing with blocks. <a href="%1$s">Tell me more</a>. %2$s' ),
    12911291                __( 'https://wordpress.org/support/article/site-editor/' ),
    12921292                sprintf(
Note: See TracChangeset for help on using the changeset viewer.