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

    r44496 r45609  
    1717        <?php if ( have_posts() ) : ?>
    1818            <header class="archive-header">
    19                 <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) ); ?></h1>
     19                <h1 class="archive-title">
     20                <?php
     21                /* translators: category title */
     22                printf( __( 'Category Archives: %s', 'twentythirteen' ), single_cat_title( '', false ) );
     23                ?>
     24                </h1>
    2025
    2126                <?php if ( category_description() ) : // Show an optional category description ?>
Note: See TracChangeset for help on using the changeset viewer.