Reword a phrase

This commit is contained in:
kondou 2013-08-14 06:29:19 +02:00
parent 9549bd3e68
commit 4002491947
1 changed files with 1 additions and 1 deletions

View File

@ -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+')');