diff --git a/src/main.js b/src/main.js index 655cf88a..2671d470 100644 --- a/src/main.js +++ b/src/main.js @@ -88,7 +88,12 @@ const mixin = { return str; }, numberFormat(num) { - const formatter = Intl.NumberFormat(undefined, { notation: "compact" }); + const formatter = Intl.NumberFormat( + `${this.getPreferenceString("hl")}-${this.getPreferenceString("region")}`, + { + notation: "compact", + }, + ); return formatter.format(num); }, addCommas(num) {