Make WordPress Core


Ignore:
Timestamp:
07/05/2019 08:03:40 AM (7 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/twentyseventeen/template-parts/footer/site-info.php

    r43051 r45604  
    1717        ?>
    1818        <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>" class="imprint">
    19                 <?php printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' ); ?>
     19                <?php
     20                        /* translators: %s: WordPress */
     21                printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' );
     22                ?>
    2023        </a>
    2124</div><!-- .site-info -->
Note: See TracChangeset for help on using the changeset viewer.