mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-04 20:54:29 +00:00
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:
@@ -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 – <em>%2$s</em>' ), get_option( 'blogname' ), get_option( 'blogdescription ' ) ) . '</p>';
|
||||
echo '<p>';
|
||||
printf(
|
||||
/* translators: 1: site name, 2: site tagline. */
|
||||
__( '%1$s – %2$s' ),
|
||||
get_option( 'blogname' ),
|
||||
'<em>' . get_option( 'blogdescription ' ) . '</em>'
|
||||
);
|
||||
echo '</p>';
|
||||
restore_current_blog();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user