diff options
author | gorhill <rhill@raymondhill.net> | 2015-01-07 17:42:13 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-01-07 17:42:13 -0500 |
commit | cf446e97c89d62d99e933f1f9d240920fac44635 (patch) | |
tree | 683b71e56c39681968cea0e1514f795d6e6d658b | |
parent | cef1ac0ec9d9ed5c5933fc36a877e2f17fe2c3d7 (diff) | |
download | uBlock-cf446e97c89d62d99e933f1f9d240920fac44635.zip uBlock-cf446e97c89d62d99e933f1f9d240920fac44635.tar.gz uBlock-cf446e97c89d62d99e933f1f9d240920fac44635.tar.bz2 |
output localized numbers
-rw-r--r-- | src/js/popup.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/popup.js b/src/js/popup.js index 29b1ce0..ad3ee7f 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 ) { |