summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-01-17 16:49:10 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-01-17 16:49:10 +0100
commitb7d3bf5f81d9b52c40363957dce87a3354f3985b (patch)
tree19983fd24782210a8a670582f5f28287898a6727 /apps/files
parent7fe8fb4248f71e89d53aeef2c57063507a4b61a0 (diff)
downloadnextcloud-server-b7d3bf5f81d9b52c40363957dce87a3354f3985b.tar.gz
nextcloud-server-b7d3bf5f81d9b52c40363957dce87a3354f3985b.zip
rename space -> storage
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/ajax/upload.php2
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();
}