Not going to deal with merging locales right now

This commit is contained in:
Dan Stillman 2008-12-01 08:57:46 +00:00
parent 39fd9b55d7
commit 8012d08354

View file

@ -2143,10 +2143,15 @@ Zotero.Sync.Storage.QueueManager = new function () {
Zotero.Utilities.prototype.numberFormat(remaining / 1024, 0)
);
var totalRequests = queue.totalRequests;
// TODO: localize
/*
var filesRemaining = Zotero.getString(
'sync.storage.filesRemaining',
[totalRequests - unfinishedRequests, totalRequests]
);
*/
var filesRemaining = (totalRequests - unfinishedRequests)
+ "/" + totalRequests + " files";
var status = Zotero.localeJoin([kbRemaining, '(' + filesRemaining + ')']);
return status;
}