I18N: Add translator comments for `Edit Site: %s` string in network admin.

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


git-svn-id: http://core.svn.wordpress.org/trunk@38261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-08-22 23:53:31 +00:00
parent b55b6a03f4
commit 44aac380f4
5 changed files with 5 additions and 1 deletions

View File

@ -131,6 +131,7 @@ if ( isset( $_GET['update'] ) ) {
}
}
/* translators: %s: site name */
$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
$parent_file = 'sites.php';

View File

@ -83,6 +83,7 @@ if ( isset($_GET['update']) ) {
$messages[] = __('Site options updated.');
}
/* translators: %s: site name */
$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
$parent_file = 'sites.php';

View File

@ -139,6 +139,7 @@ if ( isset( $_GET['action'] ) && 'update-site' == $_GET['action'] ) {
add_thickbox();
add_screen_option( 'per_page' );
/* translators: %s: site name */
$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
$parent_file = 'sites.php';

View File

@ -179,6 +179,7 @@ if ( isset( $_GET['action'] ) && 'update-site' == $_GET['action'] ) {
add_screen_option( 'per_page' );
/* translators: %s: site name */
$title = sprintf( __( 'Edit Site: %s' ), esc_html( $details->blogname ) );
$parent_file = 'sites.php';

View File

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