Sites List Table: Replace context with a translators comment for the site name and tagline.

props ramiy.
fixes #31849.
Built from https://develop.svn.wordpress.org/trunk@32472


git-svn-id: http://core.svn.wordpress.org/trunk@32442 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-05-09 19:18:27 +00:00
parent c37bdc3c9e
commit 5268a77a80
2 changed files with 3 additions and 2 deletions

View File

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

View File

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