From 262545acd521c7eb6383c1f6ae8cecd624b48879 Mon Sep 17 00:00:00 2001 From: nacin Date: Wed, 26 May 2010 02:57:40 +0000 Subject: [PATCH] Missing translated string in ms-upgrade-network. props dd32. git-svn-id: http://svn.automattic.com/wordpress/trunk@14926 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/ms-upgrade-network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/ms-upgrade-network.php b/wp-admin/ms-upgrade-network.php index 12d5f56c8..499dec8f8 100644 --- a/wp-admin/ms-upgrade-network.php +++ b/wp-admin/ms-upgrade-network.php @@ -47,7 +47,7 @@ switch ( $action ) { echo "
  • $siteurl
  • "; $response = wp_remote_get( trailingslashit( $siteurl ) . "wp-admin/upgrade.php?step=upgrade_db", array( 'timeout' => 120, 'httpversion' => '1.1' ) ); if ( is_wp_error( $response ) ) - wp_die( "Warning! Problem updating {$siteurl}. Your server may not be able to connect to sites running on it.
    Error message: " . $response->get_error_message() ."" ); + wp_die( sprintf( __( 'Warning! Problem updating %$1s. Your server may not be able to connect to sites running on it. Error message: %2$s' ), $siteurl, $response->get_error_message() ) ); do_action( 'after_mu_upgrade', $response ); do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] ); }