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

Props ramiy.
Fixes #35676.
Built from https://develop.svn.wordpress.org/trunk@36663


git-svn-id: http://core.svn.wordpress.org/trunk@36630 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-02-24 01:06:26 +00:00
parent 519cde5a18
commit 95bd9f37ca
2 changed files with 9 additions and 3 deletions

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();
}
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-36662';
$wp_version = '4.5-alpha-36663';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.