Thousands separator character not displayed correctly in some locales
See original GitHub issueUnicode code point in question is 'NARROW NO-BREAK SPACE' (U+202F)
I’m not even sure bmfont allows for exporting code points from that range. May require a framework-side bypass to make that alias with the space character.
Discussed in https://github.com/ppy/osu/discussions/15133
<div type='discussions-op-text'>Originally posted by MicrophoneJunkie October 16, 2021
I’ve had this problem for quite some time now, and I can’t figure it out. Moreover, I didn’t see anyone talking about it on Internet, so I’m posting it here.
(note that it’s the same on the end screen of any map.) </div>
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
toLocaleString thousand separator doesn't appear for Ewe ...
I'm on Firefox, and if I set the locale to "ee" to toLocaleString. The thousand separator won't appear below 100,000. (1111).toLocaleString("ee- ...
Read more >DAX FORMAT not using correct thousand separator
Hi,. I am facing an issue where the DAX FORMAT formula is not honoring the locale of the user. For example, in Dutch,...
Read more >Issue 1222: locale.format bug if thousand separator is space ...
It does not check that there were padding characters in the first place, and it assumes that the thousands separator is not a...
Read more >281 Change Thousands Separator for Displaying (and not ...
You left out a command. The idea of the first step is to change the decimal character from period (as it is in...
Read more >Decimal and Thousands Separators
The decimal separator is also called the radix character. Likewise, while the U.K. and U.S. use a comma to separate groups of thousands,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This will be fixed with new framework & resources bumps.
On a quick check with framework tests and Roboto font,
'NARROW NO-BREAK SPACE' (U+202F)
is supported bybmfont1.14a
(if the font supports it). Notice the different spacing in between the| |
.If Venera supports that character, it should be as simple as regenerating the font files with it selected. I couldn’t find a TrueType version online, so I’m leaving that to someone else.
If that’s not possible, then just overriding
SpriteText.FallbackCharacter
to be a space seems amicable.