Make WordPress Core


Ignore:
Timestamp:
11/21/2016 02:45:53 AM (9 years ago)
Author:
johnbillion
Message:

I18n: Introduce more translator comments for strings that contain placeholders but don't have an accompanying translator comment.

See #38882

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/customize/class-wp-customize-theme-control.php

    r39140 r39326  
    8888            <# } #>
    8989
    90             <div class="theme-author"><?php printf( __( 'By %s' ), '{{ data.theme.author }}' ); ?></div>
     90            <div class="theme-author"><?php
     91                /* translators: Theme author name */
     92                printf( _x( 'By %s', 'theme author' ), '{{ data.theme.author }}' );
     93            ?></div>
    9194
    9295            <# if ( data.theme.isActiveTheme ) { #>
Note: See TracChangeset for help on using the changeset viewer.