Changeset 46445 for trunk/src/wp-content/themes/twentytwenty/footer.php
- Timestamp:
- 10/08/2019 07:05:53 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/footer.php
r46357 r46445 12 12 */ 13 13 14 ?> 14 ?> 15 15 <footer id="site-footer" role="contentinfo" class="header-footer-group"> 16 16 … … 21 21 <p class="footer-copyright">© 22 22 <?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' ) 28 26 ); 29 27 ?> … … 33 31 <p class="powered-by-wordpress"> 34 32 <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' ); ?> 38 34 </a> 39 </p><!-- . theme-credits -->35 </p><!-- .powered-by-wordpress --> 40 36 41 37 </div><!-- .footer-credits --> … … 44 40 <span class="to-the-top-long"> 45 41 <?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">↑</span>' );42 /* translators: %s: HTML character for up arrow */ 43 printf( __( 'To the top %s', 'twentytwenty' ), '<span class="arrow">↑</span>' ); 48 44 ?> 49 </span> 45 </span><!-- .to-the-top-long --> 50 46 <span class="to-the-top-short"> 51 47 <?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">↑</span>' );48 /* translators: %s: HTML character for up arrow */ 49 printf( __( 'Up %s', 'twentytwenty' ), '<span class="arrow">↑</span>' ); 54 50 ?> 55 </span> 56 </a> 51 </span><!-- .to-the-top-short --> 52 </a><!-- .to-the-top --> 57 53 58 54 </div><!-- .section-inner -->
Note: See TracChangeset
for help on using the changeset viewer.