Make WordPress Core


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

    r44496 r45609  
    4444
    4545                <div class="entry-content">
    46                     <p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p>
     46                    <p>
     47                    <?php
     48                    /* translators: %s: post editor URL */
     49                    printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) );
     50                    ?>
     51                    </p>
    4752                </div><!-- .entry-content -->
    4853
Note: See TracChangeset for help on using the changeset viewer.