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

    r44496 r45609  
    1818
    1919            <header class="archive-header">
    20                 <h1 class="archive-title"><?php printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) ); ?></h1>
     20                <h1 class="archive-title">
     21                <?php
     22                /* translators: %s: category title */
     23                printf( __( 'Category Archives: %s', 'twentyfourteen' ), single_cat_title( '', false ) );
     24                ?>
     25                </h1>
    2126
    2227                <?php
Note: See TracChangeset for help on using the changeset viewer.