diff --git a/packages/locales/lib/utils.js b/packages/locales/lib/utils.js index d2d80d167..14a150917 100644 --- a/packages/locales/lib/utils.js +++ b/packages/locales/lib/utils.js @@ -137,9 +137,9 @@ function getStatus() { return [ locale.replace('.json', ''), { - human: +human.toFixed(2), - ai: +(localeTotal - human).toFixed(2), - total: +localeTotal.toFixed(2), + human: Math.round(human), + ai: Math.round(localeTotal - human), + total: Math.round(localeTotal), }, ] }),