summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-14 06:29:19 +0200
committerkondou <kondou@ts.unde.re>2013-08-14 06:29:19 +0200
commit400249194726e7cf6fc79d5fe7e92ccca8539244 (patch)
tree02382e1f161b78db497ecc8b59ae5938795cbcc6 /apps/files
parent9549bd3e68aa32bb9fa1a9a54bda84fa5070966f (diff)
downloadnextcloud-server-400249194726e7cf6fc79d5fe7e92ccca8539244.tar.gz
nextcloud-server-400249194726e7cf6fc79d5fe7e92ccca8539244.zip
Reword a phrase
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index e0c72295702..f7cc3767b25 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -452,7 +452,7 @@ $(document).ready(function(){
var currentUploads = parseInt(uploadtext.attr('currentUploads'));
currentUploads += 1;
uploadtext.attr('currentUploads', currentUploads);
- var translatedText = n('files', '%n file uploading', '%n files uploading', currentUploads);
+ var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', currentUploads);
if(currentUploads === 1) {
var img = OC.imagePath('core', 'loading.gif');
data.context.find('td.filename').attr('style','background-image:url('+img+')');