Make WordPress Core


Ignore:
Timestamp:
07/06/2021 06:37:16 PM (4 years ago)
Author:
ryelle
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.

Props chanthaboune, kellychoffman, javiarce, ryokuhi, alanjacobmathew, desrosj.
See #52775.

File:
1 edited

Legend:

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

    r51264 r51356  
    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>
     
    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                        '#'
     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/',
Note: See TracChangeset for help on using the changeset viewer.