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/search.php

    r43571 r45609  
    1616
    1717            <header class="page-header">
    18                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     18                <h1 class="page-title">
     19                <?php
     20                /* translators: %s: search query */
     21                printf( __( 'Search Results for: %s', 'twentytwelve' ), '<span>' . get_search_query() . '</span>' );
     22                ?>
     23                </h1>
    1924            </header>
    2025
Note: See TracChangeset for help on using the changeset viewer.