summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-03-20 11:08:39 +0100
committerLukas Reschke <lukas@statuscode.ch>2017-03-20 11:08:39 +0100
commit1e61c17932d3c0425c220507ce661ec94d14cb3c (patch)
tree4351c03cb5a6137e95dc8a9412c2b62d044c40a6 /apps
parent11f838f9e4302154ebbcf5bad51faca4a0e28607 (diff)
downloadnextcloud-server-1e61c17932d3c0425c220507ce661ec94d14cb3c.tar.gz
nextcloud-server-1e61c17932d3c0425c220507ce661ec94d14cb3c.zip
Fix grammar
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index 38a08d4888c..5b345a45b67 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -102,7 +102,7 @@
} else if (trimmedName.length === 0) {
throw t('files', 'File name cannot be empty.');
} else if (OC.fileIsBlacklisted(trimmedName)) {
- throw t('files', '"{name}" is not an allow filetype', {name: name});
+ throw t('files', '"{name}" is not an allowed filetype', {name: name});
}
return true;