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

    r31266 r45609  
    1414
    1515<?php if ( have_posts() ) : ?>
    16                 <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
     16                <h1 class="page-title">
     17                <?php
     18                /* translators: %s: search query */
     19                printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' );
     20                ?>
     21                </h1>
    1722                <?php
    1823                /*
Note: See TracChangeset for help on using the changeset viewer.