Not going to deal with merging locales right now
This commit is contained in:
parent
39fd9b55d7
commit
8012d08354
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue