Make WordPress Core


Ignore:
Timestamp:
07/09/2019 01:08:47 AM (5 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/twentytwelve/footer.php

    r43051 r45609  
    2020            ?>
    2121            <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>">
    22                 <?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?>
     22                <?php
     23                /* translators: %s: WordPress */
     24                printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' );
     25                ?>
    2326            </a>
    2427        </div><!-- .site-info -->
Note: See TracChangeset for help on using the changeset viewer.