Use the user's locale (#8843)

This commit is contained in:
Amir Omidi
2020-01-08 12:02:18 -08:00
committed by GitHub
parent 8a0824c1c6
commit 833313c72b

View File

@@ -190,7 +190,7 @@ export class RowCountStatusBarContributions extends Disposable implements IWorkb
return rp + rc.rowCount;
}, 0);
}, 0);
const text = localize('rowCount', "{0} rows", rowCount);
const text = localize('rowCount', "{0} rows", rowCount.toLocaleString());
this.statusItem.update({ text });
this.show();
}