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:
parent
b55b6a03f4
commit
44aac380f4
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue