commit 8012d0835499c3d99ce254ef555aa8ec04d276d1
parent 39fd9b55d72db067937de725efdc946b2b31f1b2
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 1 Dec 2008 08:57:46 +0000
Not going to deal with merging locales right now
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js
@@ -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;
}