Make WordPress Core

Changeset 46572


Ignore:
Timestamp:
10/22/2019 07:17:59 PM (5 years ago)
Author:
desrosj
Message:

Help/About: Update the 5.3 About page for RC2.

This includes numerous improvements:

  • Removes the jazzer name.
  • Ensures WordPress is translatable for consistency with other occurrences in Core.
  • Changes all instances of Block Editor to block editor to match the spelling best practices.
  • Updates the PHP 7.4 compatibility section with more suitable text.
  • Introduction in credits.php, freedoms.php, and privacy.php have been updated to be consistent with the About page.
  • Fixes the aria-current attribute in tab navigation.

Reviewed by SergeyBiryukov, desrosj.
Props SergeyBiryukov, audrasjb, desrosj, ryelle, afercia.
See #47708.

Location:
trunk/src/wp-admin
Files:
4 edited

Legend:

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

    r46556 r46572  
    1515list( $display_version ) = explode( '-', get_bloginfo( 'version' ) );
    1616
    17 $version_label = sprintf(
    18     /* translators: The current WordPress version number */
    19     __( 'WordPress %s' ),
    20     $display_version
    21 );
    22 
    2317include( ABSPATH . 'wp-admin/admin-header.php' );
    2418?>
    2519    <div class="wrap about-wrap full-width-layout">
     20
    2621        <div class="about__header">
    2722            <div class="about__header-title">
    28                 <h1 aria-label="<?php echo esc_attr( $version_label ); ?>">
     23                <h1>
    2924                    <span><?php echo $display_version; ?></span>
    30                     WordPress <?php /* @todo Does this need translation? */ ?>
     25                    <?php _e( 'WordPress' ); ?>
    3126                </h1>
    3227            </div>
     
    4742                    printf(
    4843                        /* translators: %s: The current WordPress version number. */
    49                         __( 'Introducing our most refined user experience with the improved Block Editor in WordPress %s &#147;Name&#148;!' ),
     44                        __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ),
    5045                        $display_version
    5146                    );
     
    6459        <div class="about__section is-feature">
    6560            <p>
    66                 <?php _e( '5.3 expands and refines the block editor introduced in WordPress 5.0 with new blocks, more intuitive interactions, and improved accessibility. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site. This release also introduces the Twenty Twenty theme giving the user more design flexibility and integration with the Block Editor. Creating beautiful web pages and advanced layouts has never been easier.' ); ?>
     61                <?php _e( '5.3 expands and refines the block editor introduced in WordPress 5.0 with new blocks, more intuitive interactions, and improved accessibility. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site. This release also introduces the Twenty Twenty theme giving the user more design flexibility and integration with the block editor. Creating beautiful web pages and advanced layouts has never been easier.' ); ?>
    6762            </p>
    6863        </div>
     
    8378
    8479                <p>
    85                     <?php _e( 'Accessibility improvements include the integration of block editor styles in the admin interface. These improved styles fix many accessibility issues: color contrast on form fields and buttons, consistency between editor and admin interfaces, new snackbar notices, standardizing to the default WordPress color scheme, and the introduction of Motion to make interacting with your blocks feel swift and natural. For people who use a keyboard to navigate the dashboard, the Block Editor now has a Navigation mode. This lets you jump from block to block without tabbing through every part of the block controls.' ); ?>
     80                    <?php _e( 'Accessibility improvements include the integration of block editor styles in the admin interface. These improved styles fix many accessibility issues: color contrast on form fields and buttons, consistency between editor and admin interfaces, new snackbar notices, standardizing to the default WordPress color scheme, and the introduction of Motion to make interacting with your blocks feel swift and natural. For people who use a keyboard to navigate the dashboard, the block editor now has a Navigation mode. This lets you jump from block to block without tabbing through every part of the block controls.' ); ?>
    8681                </p>
    8782            </div>
     
    9186            <div class="column is-vertically-aligned-center">
    9287                <h3><?php _e( 'Expanded Design Flexibility' ); ?></h3>
    93                 <p><?php _e( '&#147;Name&#148; adds even more robust tools for creating amazing designs.' ); ?></p>
     88                <p>
     89                    <?php
     90                    printf(
     91                        /* translators: %s: The current WordPress version number. */
     92                        __( 'WordPress %s adds even more robust tools for creating amazing designs.' ),
     93                        $display_version
     94                    );
     95                    ?>
     96                </p>
    9497                <ul>
    9598                    <li><?php _e( 'The new Group block lets you easily divide your page into colorful sections' ); ?></li>
     
    110113            <div class="column is-vertically-aligned-center">
    111114                <h3><?php _e( 'Introducing Twenty Twenty' ); ?></h3>
    112                 <p><?php _e( 'As the Block Editor celebrates its first birthday, we are proud that Twenty Twenty is designed with flexibility at its core. Show off your services or products with a combination of columns, groups, and media blocks. Set your content to wide or full alignment for dynamic and engaging layouts. Or let your thoughts be the star with a centered content column!' ); ?></p>
    113 
    114                 <p>
    115                 <?php
    116                     printf(
    117                         /* translators: 1: Link to the Inter font website. */
    118                         __( 'As befits a theme called Twenty Twenty, clarity and readability is also a big focus. The theme includes the typeface <a href="%1$s">Inter</a>, designed by Rasmus Andersson. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.' ),
     115                <p><?php _e( 'As the block editor celebrates its first birthday, we are proud that Twenty Twenty is designed with flexibility at its core. Show off your services or products with a combination of columns, groups, and media blocks. Set your content to wide or full alignment for dynamic and engaging layouts. Or let your thoughts be the star with a centered content column!' ); ?></p>
     116
     117                <p>
     118                    <?php
     119                    printf(
     120                        /* translators: %s: Link to the Inter font website. */
     121                        __( 'As befits a theme called Twenty Twenty, clarity and readability is also a big focus. The theme includes the typeface <a href="%s">Inter</a>, designed by Rasmus Andersson. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.' ),
    119122                        'https://rsms.me/inter/'
    120123                    );
     
    170173
    171174            <div class="column">
    172                 <h4><?php _e( 'Time/Date Component Fixes' ); ?></h4>
    173                 <p>
    174                 <?php
    175                     printf(
    176                         /* translators: 1: Link to the date/time developer notes. */
    177                         __( 'Developers can now work with <a href="%1$s">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.' ),
     175                <h4><?php _e( 'Date/Time Component Fixes' ); ?></h4>
     176                <p>
     177                    <?php
     178                    printf(
     179                        /* translators: %s: Link to the date/time developer notes. */
     180                        __( 'Developers can now work with <a href="%s">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.' ),
    178181                        'https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/'
    179182                    );
     
    184187                <h4><?php _e( 'PHP 7.4 Compatibility' ); ?></h4>
    185188                <p>
    186                 <?php
    187                     printf(
    188                         /* translators: 1: Link to the PHP 7 developer notes. */
    189                         __( 'The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href="%1$s">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test 5.3 with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings.' ),
     189                    <?php
     190                    printf(
     191                        /* translators: %s: Link to the PHP 7 developer notes. */
     192                        __( 'WordPress 5.3 aims to fully support PHP 7.4. This release contains <a href="%s">multiple changes</a> to remove deprecated functionality and ensure compatibility. WordPress continues to encourage all users to run the latest and greatest versions of PHP.' ),
    190193                        'https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/'
    191194                    );
  • trunk/src/wp-admin/credits.php

    r45932 r46572  
    1919<div class="wrap about-wrap full-width-layout">
    2020
    21 <h1>
    22     <?php
    23     printf(
    24         /* translators: %s: The current WordPress version number. */
    25         __( 'Welcome to WordPress&nbsp;%s' ),
    26         $display_version
    27     );
    28     ?>
    29 </h1>
     21    <div class="about__header">
     22        <div class="about__header-title">
     23            <h1>
     24                <span><?php echo $display_version; ?></span>
     25                <?php _e( 'WordPress' ); ?>
     26            </h1>
     27        </div>
    3028
    31 <p class="about-text">
    32     <?php
    33     printf(
    34         /* translators: %s: The current WordPress version number. */
    35         __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
    36         $display_version
    37     );
    38     ?>
    39 </p>
     29        <div class="about__header-badge wp-badge">
     30            <?php
     31            printf(
     32                /* translators: %s: The current WordPress version number. */
     33                __( 'Version %s' ),
     34                $display_version
     35            );
     36            ?>
     37        </div>
    4038
    41 <div class="wp-badge">
    42     <?php
    43     printf(
    44         /* translators: %s: The current WordPress version number. */
    45         __( 'Version %s' ),
    46         $display_version
    47     );
    48     ?>
    49 </div>
     39        <div class="about__header-text">
     40            <p>
     41                <?php
     42                printf(
     43                    /* translators: %s: The current WordPress version number. */
     44                    __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ),
     45                    $display_version
     46                );
     47                ?>
     48            </p>
     49        </div>
    5050
    51 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
    52     <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
    53     <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a>
    54     <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
    55     <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
    56 </nav>
     51        <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
     52            <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
     53            <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a>
     54            <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
     55            <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
     56        </nav>
     57    </div>
    5758
    58 <div class="about-wrap-content">
     59    <div class="about-wrap-content">
    5960<?php
    6061
     
    138139
    139140?>
    140 </div>
     141    </div>
    141142</div>
    142143<?php
  • trunk/src/wp-admin/freedoms.php

    r45932 r46572  
    2121
    2222include( ABSPATH . 'wp-admin/admin-header.php' );
    23 
    2423?>
    2524<div class="wrap about-wrap full-width-layout">
    2625
    27 <h1>
    28     <?php
    29     printf(
    30         /* translators: %s: The current WordPress version number. */
    31         __( 'Welcome to WordPress&nbsp;%s' ),
    32         $display_version
    33     );
    34     ?>
    35 </h1>
     26    <div class="about__header">
     27        <div class="about__header-title">
     28            <h1>
     29                <span><?php echo $display_version; ?></span>
     30                <?php _e( 'WordPress' ); ?>
     31            </h1>
     32        </div>
    3633
    37 <p class="about-text">
    38     <?php
    39     printf(
    40         /* translators: %s: The current WordPress version number. */
    41         __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
    42         $display_version
    43     );
    44     ?>
    45 </p>
     34        <div class="about__header-badge wp-badge">
     35            <?php
     36            printf(
     37                /* translators: %s: The current WordPress version number. */
     38                __( 'Version %s' ),
     39                $display_version
     40            );
     41            ?>
     42        </div>
    4643
    47 <div class="wp-badge">
    48     <?php
    49     printf(
    50         /* translators: %s: The current WordPress version number. */
    51         __( 'Version %s' ),
    52         $display_version
    53     );
    54     ?>
    55 </div>
     44        <div class="about__header-text">
     45            <p>
     46                <?php
     47                printf(
     48                    /* translators: %s: The current WordPress version number. */
     49                    __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ),
     50                    $display_version
     51                );
     52                ?>
     53            </p>
     54        </div>
    5655
    57 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
    58     <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
    59     <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
    60     <a href="freedoms.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Freedoms' ); ?></a>
    61     <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
    62 </nav>
    63 
    64 <div class="about-wrap-content">
    65     <div class="feature-section has-1-columns">
    66         <h2><?php _e( 'Freedoms' ); ?></h2>
    67         <p class="about-description">
    68         <?php
    69         printf(
    70             /* translators: %s: https://wordpress.org/about/license/ */
    71             __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ),
    72             __( 'https://wordpress.org/about/license/' )
    73         );
    74         ?>
    75         </p>
     56        <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
     57            <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
     58            <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
     59            <a href="freedoms.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Freedoms' ); ?></a>
     60            <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a>
     61        </nav>
    7662    </div>
    7763
    78     <div class="feature-section has-4-columns is-fullwidth">
    79         <div class="column">
    80             <div class="freedoms-image"></div>
    81             <h3><?php _e( 'The 1st Freedom' ); ?></h3>
    82             <p><?php _e( 'To run the program for any purpose.' ); ?></p>
     64    <div class="about-wrap-content">
     65        <div class="feature-section has-1-columns">
     66            <h2><?php _e( 'Freedoms' ); ?></h2>
     67            <p class="about-description">
     68            <?php
     69            printf(
     70                /* translators: %s: https://wordpress.org/about/license/ */
     71                __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ),
     72                __( 'https://wordpress.org/about/license/' )
     73            );
     74            ?>
     75            </p>
    8376        </div>
    84         <div class="column">
    85             <div class="freedoms-image"></div>
    86             <h3><?php _e( 'The 2nd Freedom' ); ?></h3>
    87             <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p>
     77
     78        <div class="feature-section has-4-columns is-fullwidth">
     79            <div class="column">
     80                <div class="freedoms-image"></div>
     81                <h3><?php _e( 'The 1st Freedom' ); ?></h3>
     82                <p><?php _e( 'To run the program for any purpose.' ); ?></p>
     83            </div>
     84            <div class="column">
     85                <div class="freedoms-image"></div>
     86                <h3><?php _e( 'The 2nd Freedom' ); ?></h3>
     87                <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p>
     88            </div>
     89            <div class="column">
     90                <div class="freedoms-image"></div>
     91                <h3><?php _e( 'The 3rd Freedom' ); ?></h3>
     92                <p><?php _e( 'To redistribute.' ); ?></p>
     93            </div>
     94            <div class="column">
     95                <div class="freedoms-image"></div>
     96                <h3><?php _e( 'The 4th Freedom' ); ?></h3>
     97                <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
     98            </div>
    8899        </div>
    89         <div class="column">
    90             <div class="freedoms-image"></div>
    91             <h3><?php _e( 'The 3rd Freedom' ); ?></h3>
    92             <p><?php _e( 'To redistribute.' ); ?></p>
    93         </div>
    94         <div class="column">
    95             <div class="freedoms-image"></div>
    96             <h3><?php _e( 'The 4th Freedom' ); ?></h3>
    97             <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>
     100
     101        <div class="feature-section has-1-columns">
     102            <p>
     103            <?php
     104            printf(
     105                /* translators: %s: https://wordpressfoundation.org/trademark-policy/ */
     106                __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ),
     107                'https://wordpressfoundation.org/trademark-policy/'
     108            );
     109            ?>
     110            </p>
     111
     112            <p>
     113            <?php
     114            $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' );
     115            $themes_url  = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' );
     116            printf(
     117                /* translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: https://wordpress.org/about/license/ */
     118                __( 'Every plugin and theme in WordPress.org&#8217;s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it&#8217;s GPL</a> first. If they don&#8217;t respect the WordPress license, we don&#8217;t recommend them.' ),
     119                $plugins_url,
     120                $themes_url,
     121                __( 'https://wordpress.org/about/license/' )
     122            );
     123            ?>
     124            </p>
     125
     126            <p><?php _e( 'Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p>
    98127        </div>
    99128    </div>
    100129
    101     <div class="feature-section has-1-columns">
    102         <p>
    103         <?php
    104         printf(
    105             /* translators: %s: https://wordpressfoundation.org/trademark-policy/ */
    106             __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We&#8217;re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ),
    107             'https://wordpressfoundation.org/trademark-policy/'
    108         );
    109         ?>
    110         </p>
    111 
    112         <p>
    113         <?php
    114         $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' );
    115         $themes_url  = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' );
    116         printf(
    117             /* translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: https://wordpress.org/about/license/ */
    118             __( 'Every plugin and theme in WordPress.org&#8217;s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it&#8217;s GPL</a> first. If they don&#8217;t respect the WordPress license, we don&#8217;t recommend them.' ),
    119             $plugins_url,
    120             $themes_url,
    121             __( 'https://wordpress.org/about/license/' )
    122         );
    123         ?>
    124         </p>
    125 
    126         <p><?php _e( 'Don&#8217;t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p>
    127     </div>
    128 </div>
    129 
    130130</div>
    131131<?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>
  • trunk/src/wp-admin/privacy.php

    r46355 r46572  
    1818<div class="wrap about-wrap full-width-layout">
    1919
    20 <h1>
    21     <?php
    22     printf(
    23         /* translators: %s: The current WordPress version number. */
    24         __( 'Welcome to WordPress&nbsp;%s' ),
    25         $display_version
    26     );
    27     ?>
    28 </h1>
     20    <div class="about__header">
     21        <div class="about__header-title">
     22            <h1>
     23                <span><?php echo $display_version; ?></span>
     24                <?php _e( 'WordPress' ); ?>
     25            </h1>
     26        </div>
    2927
    30 <p class="about-text">
    31     <?php
    32     printf(
    33         /* translators: %s: The current WordPress version number. */
    34         __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),
    35         $display_version
    36     );
    37     ?>
    38 </p>
     28        <div class="about__header-badge wp-badge">
     29            <?php
     30            printf(
     31                /* translators: %s: The current WordPress version number. */
     32                __( 'Version %s' ),
     33                $display_version
     34            );
     35            ?>
     36        </div>
    3937
    40 <div class="wp-badge">
    41     <?php
    42     printf(
    43         /* translators: %s: The current WordPress version number. */
    44         __( 'Version %s' ),
    45         $display_version
    46     );
    47     ?>
    48 </div>
     38        <div class="about__header-text">
     39            <p>
     40                <?php
     41                printf(
     42                    /* translators: %s: The current WordPress version number. */
     43                    __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ),
     44                    $display_version
     45                );
     46                ?>
     47            </p>
     48        </div>
    4949
    50 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
    51     <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
    52     <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
    53     <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
    54     <a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a>
    55 </nav>
     50        <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>">
     51            <a href="about.php" class="nav-tab"><?php _e( 'What&#8217;s New' ); ?></a>
     52            <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a>
     53            <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a>
     54            <a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a>
     55        </nav>
     56    </div>
    5657
    57 <div class="about-wrap-content">
    58     <p class="about-description"><?php _e( 'From time to time, your WordPress site may send data to WordPress.org &#8212; including, but not limited to &#8212; the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p>
     58    <div class="about-wrap-content">
     59        <p class="about-description"><?php _e( 'From time to time, your WordPress site may send data to WordPress.org &#8212; including, but not limited to &#8212; the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p>
    5960
    60     <p>
    61         <?php
    62         printf(
    63             /* translators: %s: https://wordpress.org/about/stats/ */
    64             __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ),
    65             __( 'https://wordpress.org/about/stats/' )
    66         );
    67         ?>
    68     </p>
     61        <p>
     62            <?php
     63            printf(
     64                /* translators: %s: https://wordpress.org/about/stats/ */
     65                __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ),
     66                __( 'https://wordpress.org/about/stats/' )
     67            );
     68            ?>
     69        </p>
    6970
    70     <p>
    71         <?php
    72         printf(
    73             /* translators: %s: https://wordpress.org/about/privacy/ */
    74             __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ),
    75             __( 'https://wordpress.org/about/privacy/' )
    76         );
    77         ?>
    78     </p>
    79 </div>
     71        <p>
     72            <?php
     73            printf(
     74                /* translators: %s: https://wordpress.org/about/privacy/ */
     75                __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ),
     76                __( 'https://wordpress.org/about/privacy/' )
     77            );
     78            ?>
     79        </p>
     80    </div>
    8081
    8182</div>
Note: See TracChangeset for help on using the changeset viewer.