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

Props ramiy.
Fixes #35676.

git-svn-id: https://develop.svn.wordpress.org/trunk@36663 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2016-02-24 01:05:50 +00:00
parent 32c15871bf
commit 78391f6ebb

View File

@ -315,8 +315,14 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
<?php
if ( 'list' !== $mode ) {
switch_to_blog( $blog['blog_id'] );
/* translators: 1: site name, 2: site tagline. */
echo '<p>' . sprintf( __( '%1$s &#8211; <em>%2$s</em>' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '</p>';
echo '<p>';
printf(
/* translators: 1: site name, 2: site tagline. */
__( '%1$s &#8211; %2$s' ),
get_option( 'blogname' ),
'<em>' . get_option( 'blogdescription ' ) . '</em>'
);
echo '</p>';
restore_current_blog();
}
}