Make WordPress Core


Ignore:
Timestamp:
02/24/2016 01:05:50 AM (8 years ago)
Author:
SergeyBiryukov
Message:

I18N: Remove <em> tag from translatable string in wp-admin/includes/class-wp-ms-sites-list-table.php.

Props ramiy.
Fixes #35676.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-ms-sites-list-table.php

    r36572 r36663  
    316316        if ( 'list' !== $mode ) {
    317317            switch_to_blog( $blog['blog_id'] );
    318             /* translators: 1: site name, 2: site tagline. */
    319             echo '<p>' . sprintf( __( '%1$s &#8211; <em>%2$s</em>' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '</p>';
     318            echo '<p>';
     319            printf(
     320                /* translators: 1: site name, 2: site tagline. */
     321                __( '%1$s &#8211; %2$s' ),
     322                get_option( 'blogname' ),
     323                '<em>' . get_option( 'blogdescription ' ) . '</em>'
     324            );
     325            echo '</p>';
    320326            restore_current_blog();
    321327        }
Note: See TracChangeset for help on using the changeset viewer.