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

    r44496 r45609  
    1919        <?php if ( have_posts() ) : ?>
    2020            <header class="archive-header">
    21                 <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>
     21                <h1 class="archive-title">
     22                <?php
     23                /* translators: %s: category title */
     24                printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
     25                ?>
     26                </h1>
    2227
    2328            <?php if ( category_description() ) : // Show an optional category description ?>
Note: See TracChangeset for help on using the changeset viewer.