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/twentyfourteen/footer.php

    r43051 r45609  
    2525                                ?>
    2626                                <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint">
    27                                         <?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?>
     27                                        <?php
     28                                        /* translators: %s: WordPress */
     29                                        printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' );
     30                                        ?>
    2831                                </a>
    2932                        </div><!-- .site-info -->
Note: See TracChangeset for help on using the changeset viewer.