Make WordPress Core


Ignore:
Timestamp:
07/06/2021 11:41:46 PM (5 years ago)
Author:
desrosj
Message:

Help/About: Update the About section for 5.8.

Add the images for About, Freedoms, and Privacy. Update the styles on all About section pages to match the About page style. Fix string issues, missing link wrapper, duplicate copy.

Also updates placeholder links on the page.

Props chanthaboune, kellychoffman, javiarce, ryokuhi, alanjacobmathew, desrosj, SergeyBiryukov, audrasjb.
Merges [51356] and [51359] to the 5.8 branch.
See #52775.

Location:
branches/5.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.8

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

    r51264 r51360  
    5151
    5252        <div class="about__section has-2-columns is-wider-left">
    53             <div class="column about__image has-subtle-background-color"></div>
     53            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     54                <img src="https://make.wordpress.org/core/files/2021/07/about-58-widgets-blocks.png" alt="" />
     55            </div>
    5456            <div class="column">
    5557                <h3>
     
    6163                        /* translators: %s: Widgets dev note link. */
    6264                        __( 'After months of hard work, the power of blocks has come to both the Block Widgets Editor and the Customizer. Now you can add blocks both in widget areas across your site and with live preview through the Customizer. This opens up new possibilities to create content: from no-code mini layouts to the vast library of core and third-party blocks. For our developers, you can find more details in the <a href="%s">Widgets dev note</a>.' ),
    63                         '#'
     65                        'https://make.wordpress.org/core/2021/06/29/block-based-widgets-editor-in-wordpress-5-8/'
    6466                    );
    6567                    ?>
     
    8587                </p>
    8688            </div>
    87             <div class="column about__image has-subtle-background-color"></div>
     89            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     90                <img src="https://make.wordpress.org/core/files/2021/07/about-58-patterns.png" alt="" />
     91            </div>
    8892        </div>
    8993
     
    9195
    9296        <div class="about__section has-2-columns is-wider-left">
    93             <div class="column about__image has-subtle-background-color"></div>
     97            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     98                <img src="https://make.wordpress.org/core/files/2021/07/about-58-template.png" alt="" />
     99            </div>
    94100            <div class="column">
    95101                <h3>
     
    113119
    114120        <div class="about__section has-2-columns is-wider-left">
    115             <div class="column about__image has-subtle-background-color"></div>
     121            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     122                <img src="https://make.wordpress.org/core/files/2021/07/about-58-list-view.png" alt="" />
     123            </div>
    116124            <div class="column">
    117125                <h3>
     
    139147                </p>
    140148            </div>
    141             <div class="column about__image has-subtle-background-color"></div>
     149            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     150                <img src="https://make.wordpress.org/core/files/2021/07/about-58-pattern-suggestions.png" alt="" />
     151            </div>
    142152        </div>
    143153
     
    145155
    146156        <div class="about__section has-2-columns is-wider-left">
    147             <div class="column about__image has-subtle-background-color"></div>
     157            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     158                <img src="https://make.wordpress.org/core/files/2021/07/about-58-duotone.png" alt="" />
     159            </div>
    148160            <div class="column">
    149161                <h3>
     
    164176                <?php _e( 'For Developers to Explore' ); ?>
    165177            </h2>
    166             <div class="column about__image has-subtle-background-color" style="margin:32px 0;height:360px;"></div>
     178            <div class="column about__image is-vertically-aligned-center is-edge-to-edge">
     179                <img src="https://make.wordpress.org/core/files/2021/07/about-58-theme-json.png" alt="" />
     180            </div>
    167181        </div>
    168182
     
    174188                <p>
    175189                    <?php
    176                     _e( 'Introducing the Global Styles and Global Settings APIs: control the editor settings, available customization tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works, check out this dev note.' );
     190                    printf(
     191                        /* translators: %s: Theme.json dev note link. */
     192                        __( 'Introducing the Global Styles and Global Settings APIs: control the editor settings, available customization tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works, <a href="%s">check out this dev note</a>.' ),
     193                        'https://make.wordpress.org/core/2021/06/25/introducing-theme-json-in-wordpress-5-8/'
     194                    );
    177195                    ?>
    178196                </p>
     
    214232                    <?php
    215233                    printf(
    216                         /* translators: %1$s: Link to 5.6's block dev notes. %2$s: Link to 5.7's block dev notes. %1$s: Link to 5.8's block dev notes. */
    217                         __( 'Expanding on previously implemented block supports in WordPress <a href="%1$s">5.6</a> and <a href="%2$s">5.7</a>, WordPress 5.8 introduces several new block <code>supports</code> flags and new options to customize your registered blocks. More information is available in the <a href="%3$s">block supports dev note</a>.' ),
     234                        /* translators: %1$s: Link to 5.6's block dev notes. %2$s: Link to 5.7's block dev notes. %3$s: Link to 5.8's block dev notes. */
     235                        __( 'Expanding on previously implemented block supports in WordPress <a href="%1$s">5.6</a> and <a href="%2$s">5.7</a>, WordPress 5.8 introduces several new block support flags and new options to customize your registered blocks. More information is available in the <a href="%3$s">block supports dev note</a>.' ),
    218236                        'https://make.wordpress.org/core/2020/11/18/block-supports-in-wordpress-5-6/',
    219237                        'https://make.wordpress.org/core/2021/02/24/changes-to-block-editor-components-and-blocks/',
     
    235253                        /* translators: %s: WordPress 5.8 Field Guide link. */
    236254                        __( 'Check out the latest version of the WordPress Field Guide. It highlights developer notes for each change you may want to be aware of. <a href="%s">WordPress 5.8 Field Guide.</a>' ),
    237                         '#'
     255                        'https://make.wordpress.org/core/2021/07/03/wordpress-5-8-field-guide/'
    238256                    );
    239257                    ?>
Note: See TracChangeset for help on using the changeset viewer.