diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-17 16:49:10 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-17 16:49:10 +0100 |
commit | b7d3bf5f81d9b52c40363957dce87a3354f3985b (patch) | |
tree | 19983fd24782210a8a670582f5f28287898a6727 /apps/files | |
parent | 7fe8fb4248f71e89d53aeef2c57063507a4b61a0 (diff) | |
download | nextcloud-server-b7d3bf5f81d9b52c40363957dce87a3354f3985b.tar.gz nextcloud-server-b7d3bf5f81d9b52c40363957dce87a3354f3985b.zip |
rename space -> storage
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/ajax/upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 2a2d935da6c..b6705db6712 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -42,7 +42,7 @@ foreach($files['size'] as $size) { $totalSize+=$size; } if($totalSize>OC_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' )))); exit(); } |