diff options
author | kondou <kondou@ts.unde.re> | 2013-08-14 06:29:19 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-14 06:29:19 +0200 |
commit | 400249194726e7cf6fc79d5fe7e92ccca8539244 (patch) | |
tree | 02382e1f161b78db497ecc8b59ae5938795cbcc6 /apps/files | |
parent | 9549bd3e68aa32bb9fa1a9a54bda84fa5070966f (diff) | |
download | nextcloud-server-400249194726e7cf6fc79d5fe7e92ccca8539244.tar.gz nextcloud-server-400249194726e7cf6fc79d5fe7e92ccca8539244.zip |
Reword a phrase
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
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+')'); |