From: Robin Appelman Date: Thu, 7 Feb 2013 22:59:14 +0000 (+0100) Subject: Files: rename 'space' to 'storage' in upload.php X-Git-Tag: v5.0.0alpha1~77^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5ef9d96d10c2984f0a5c19f299312492387b5aec;p=nextcloud-server.git Files: rename 'space' to 'storage' in upload.php --- diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 676612c0e42..07977f5ddf1 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -49,7 +49,7 @@ foreach ($files['size'] as $size) { $totalSize += $size; } if ($totalSize > \OC\Files\Filesystem::free_space($dir)) { - OCP\JSON::error(array('data' => array('message' => $l->t('Not enough space available'), + OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'), 'uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize))); exit();