Make WordPress Core


Ignore:
Timestamp:
10/08/2019 07:05:53 PM (6 years ago)
Author:
desrosj
Message:

Bundled Themes: Update Twenty Twenty.

This brings trunk's version of Twenty Twenty in-sync with GitHub.

For a complete list of changes since [46357], see https://github.com/WordPress/twentytwenty/compare/7157870...7246fd6.

Props anlino, ianbelanger, poena, williampatton, nielslange, acosmin, netweb, joyusly, luminuu, itowhid06, cbravobernal, intimez, glauberglauber, ocean90, amolv, briceduclos, aristath, mukesh27, garrett-eclipse, audrasjb, afercia, dianeco, utsav72640, mahesh901122, tobifjellner.
See #48110.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwenty/footer.php

    r46357 r46445  
    1212 */
    1313
    14 ?>     
     14?>
    1515            <footer id="site-footer" role="contentinfo" class="header-footer-group">
    1616
     
    2121                        <p class="footer-copyright">&copy;
    2222                            <?php
    23                             echo esc_html(
    24                                 date_i18n(
    25                                     /* Translators: Y = Format parameter for date() https://php.net/manual/en/function.date.php */
    26                                     _x( 'Y', 'Translators: Y = Current year', 'twentytwenty' )
    27                                 )
     23                            echo date_i18n(
     24                                /* translators: Copyright date format, see https://secure.php.net/date */
     25                                _x( 'Y', 'copyright date format', 'twentytwenty' )
    2826                            );
    2927                            ?>
     
    3331                        <p class="powered-by-wordpress">
    3432                            <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwenty' ) ); ?>">
    35                                 <?php
    36                                 _e( 'Powered by WordPress', 'twentytwenty' ); // phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction -- core trusts translations
    37                                 ?>
     33                                <?php _e( 'Powered by WordPress', 'twentytwenty' ); ?>
    3834                            </a>
    39                         </p><!-- .theme-credits -->
     35                        </p><!-- .powered-by-wordpress -->
    4036
    4137                    </div><!-- .footer-credits -->
     
    4440                        <span class="to-the-top-long">
    4541                            <?php
    46                             // Translators: %s = HTML character for an arrow.
    47                             printf( esc_html( _x( 'To the top %s', '%s = HTML character for an arrow', 'twentytwenty' ) ), '<span class="arrow">&uarr;</span>' );
     42                            /* translators: %s: HTML character for up arrow */
     43                            printf( __( 'To the top %s', 'twentytwenty' ), '<span class="arrow">&uarr;</span>' );
    4844                            ?>
    49                         </span>
     45                        </span><!-- .to-the-top-long -->
    5046                        <span class="to-the-top-short">
    5147                            <?php
    52                             // Translators: %s = HTML character for an arrow.
    53                             printf( esc_html( _x( 'Up %s', '%s = HTML character for an arrow', 'twentytwenty' ) ), '<span class="arrow">&uarr;</span>' );
     48                            /* translators: %s: HTML character for up arrow */
     49                            printf( __( 'Up %s', 'twentytwenty' ), '<span class="arrow">&uarr;</span>' );
    5450                            ?>
    55                         </span>
    56                     </a>
     51                        </span><!-- .to-the-top-short -->
     52                    </a><!-- .to-the-top -->
    5753
    5854                </div><!-- .section-inner -->
Note: See TracChangeset for help on using the changeset viewer.