Make WordPress Core


Ignore:
Timestamp:
07/05/2019 08:03:40 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Add missing translator comments.

Twentys Eleven, Sixteen, and Seventeen now have translator comments for all their strings.

Also, WPCS now doesn't show missing translator comment warnings for test files.

See #47632.

File:
1 edited

Legend:

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

    r43051 r45604  
    5959                ?>
    6060                <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentysixteen' ) ); ?>" class="imprint">
    61                     <?php printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' ); ?>
     61                    <?php
     62                    /* translators: %s: WordPress */
     63                    printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' );
     64                    ?>
    6265                </a>
    6366            </div><!-- .site-info -->
Note: See TracChangeset for help on using the changeset viewer.