From 8012d0835499c3d99ce254ef555aa8ec04d276d1 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 1 Dec 2008 08:57:46 +0000 Subject: [PATCH] Not going to deal with merging locales right now --- chrome/content/zotero/xpcom/storage.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index e58508b42e..21ffdc7934 100644 --- 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; }