Make WordPress Core


Ignore:
Timestamp:
07/09/2019 01:08:47 AM (7 years ago)
Author:
pento
Message:

Coding Standards: Add missing translator comments to the default themes.

All default themes now have translator comments for all strings with placeholders!

See #46732.

File:
1 edited

Legend:

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

    r43051 r45609  
    2929                        ?>
    3030                        <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>" class="imprint">
    31                                 <?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?>
     31                                <?php
     32                                /* translators: %s: WordPress */
     33                                printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' );
     34                                ?>
    3235                        </a>
    3336                </div><!-- .site-info -->
Note: See TracChangeset for help on using the changeset viewer.