Make WordPress Core


Ignore:
Timestamp:
11/21/2016 02:45:53 AM (8 years ago)
Author:
johnbillion
Message:

I18n: Introduce more translator comments for strings that contain placeholders but don't have an accompanying translator comment.

See #38882

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-links-opml.php

    r37535 r39326  
    2727<opml version="1.0">
    2828    <head>
    29         <title><?php printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) ); ?></title>
     29        <title><?php
     30            /* translators: 1: Site name */
     31            printf( __('Links for %s'), esc_attr(get_bloginfo('name', 'display')) );
     32        ?></title>
    3033        <dateCreated><?php echo gmdate("D, d M Y H:i:s"); ?> GMT</dateCreated>
    3134        <?php
Note: See TracChangeset for help on using the changeset viewer.