The way the short number formatting works is it takes a number, say, 1045
and turns it into a string, e.g. 1
that is then passed into a phrase called x_k
and contains {number}K
. {number}
is replaced with 1
so the end result is we display 1K
.
We were (and now are) passing in an additional parameter in the phrase called {default}
. The value of default in the example above is 1,045
. So if you edit the phrase text from {number}K
to {default}
then the end result is we display 1,045
therefore restoring the long number format behaviour.
So we'll call this implemented. And, no, we will not be using long numbers by default. It will be down to the forum admins to choose a format that they prefer and modify the three phrases (x_b
, x_m
and x_k
) accordingly.