From cf446e97c89d62d99e933f1f9d240920fac44635 Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 7 Jan 2015 17:42:13 -0500 Subject: [PATCH] output localized numbers --- src/js/popup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/popup.js b/src/js/popup.js index 29b1ce0ac..ad3ee7fdf 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -235,8 +235,8 @@ var syncAllDynamicFilters = function() { } var summary = vAPI.i18n('popupHitDomainCountPrompt') - .replace('{{count}}', touchedDomainCount) - .replace('{{total}}', allDomainCount); + .replace('{{count}}', touchedDomainCount.toLocaleString()) + .replace('{{total}}', allDomainCount.toLocaleString()); uDom('#privacyInfo').text(summary); if ( dfPaneBuilt !== true ) {