Make WordPress Core

Changeset 58675

Timestamp:
07/04/2024 10:30:14 PM (5 weeks ago)
Author:
peterwilsoncc
Message:

Help/About: Update performance improvements string.

Updates the performance improvements string with the finalized percentage improvement in the editor and to improve styling and language consistency.

Reviewed by ryelle.
Merges [58671] to the 6.6 branch.

Props ryelle, annezazu, peterwilsoncc.
Fixes #61320.

Location:
branches/6.6
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/6.6

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

    r58620 r58675  
    125125                    <?php
    126126                    printf(
    127                         /* translators: %s: code-formatted "data-wp-on-async", %%: escaped percent sign, leave as %%. */
    128                         __( '6.6 includes important updates like removing redundant WP_Theme_JSON calls, disabling autoload for large options, eliminating unnecessary polyfill dependencies, lazy loading post embeds, introducing the %s directive, and a 40%% reduction in template loading time in the editor.' ),
     127                        /* translators: %1$s: code-formatted "WP_Theme_JSON", %2$s: code-formatted "data-wp-on-async", %%: escaped percent sign, leave as %%. */
     128                        __( 'WordPress 6.6 includes important updates like removing redundant %1$s calls, disabling autoload for large options, eliminating unnecessary polyfill dependencies, lazy loading post embeds, introducing the %2$s directive, and a 33%% reduction in template loading time in the editor.' ),
     129                        '<code>WP_Theme_JSON</code>',
    129130                        '<code>data-wp-on-async</code>'
    130131                    );
Note: See TracChangeset for help on using the changeset viewer.