Make WordPress Core


Ignore:
Timestamp:
09/02/2019 12:42:01 AM (7 years ago)
Author:
SergeyBiryukov
Message:

I18N: Split translatable strings located on the same line preceded with a translator comment, where the first string needs that comment, but the second does not.

Props johnbillion.
See #44360.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/customize/class-wp-customize-themes-panel.php

    r41788 r45927  
    7272                                <span class="preview-notice">
    7373                                        <?php
    74                                         /* translators: %s: themes panel title in the Customizer */
    75                                         echo sprintf( __( 'You are browsing %s' ), '<strong class="panel-title">' . __( 'Themes' ) . '</strong>' ); // Separate strings for consistency with other panels.
     74                                        printf(
     75                                                /* translators: %s: themes panel title in the Customizer */
     76                                                __( 'You are browsing %s' ),
     77                                                '<strong class="panel-title">' . __( 'Themes' ) . '</strong>'
     78                                        ); // Separate strings for consistency with other panels.
    7679                                        ?>
    7780                                </span>
Note: See TracChangeset for help on using the changeset viewer.