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

    r44574 r45609  
    1616    <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
    1717
    18     <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentyfourteen' ), admin_url( 'post-new.php' ) ); ?></p>
     18    <p>
     19        <?php
     20        /* translators: %s: post editor URL */
     21        printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentyfourteen' ), admin_url( 'post-new.php' ) );
     22        ?>
     23    </p>
    1924
    2025    <?php elseif ( is_search() ) : ?>
Note: See TracChangeset for help on using the changeset viewer.