More string cleanups.

git-svn-id: https://develop.svn.wordpress.org/trunk@25658 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2013-10-02 18:50:45 +00:00
parent 7755927e7d
commit 64d3d53838
2 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -742,7 +742,7 @@ function update_core($from, $to) {
// If we don't have enough free space, it isn't worth trying again
if ( $total_size >= disk_free_space( ABSPATH ) )
$result = new WP_Error( 'disk_full', __( "There isn't enough free disk space to complete the upgrade." ), $to );
$result = new WP_Error( 'disk_full', __( 'There is not enough free disk space to complete the update.' ), $to );
else
$result = _copy_dir( $from . $distro, $to, $skip );
}