1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 01:59:38 +02:00

output localized numbers

This commit is contained in:
gorhill 2015-01-07 17:42:13 -05:00
parent cef1ac0ec9
commit cf446e97c8

View File

@ -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 ) {