So, unfortunately, Roblox currently does not support Arabic text. The letters themselves carry over just fine, but the right-to-left character order, and the different forms of the letters (Arabic characters change form depending on the next character) is currently not available. This has been a very big roadblock for many translators, and obviously for the many Arabic players.
Here is an example of what a text box displays, for the word “مرحبا.”
The technical details are that we will begin using a library called Harfbuzz, which is used for a process called “shaping”, which is the stage in text rendering of converting a string of Unicode codepoints into a string of glyphs for render. In the current system on Roblox, we assume a 1:1 relationship between codepoints and glyphs (with a special case exception for emoji), which is wrong. Many web browsers also use Harfbuzz (Firefox, Chrome, etc.).
I’m currently fixing a bug, once the fix ships I’ll be able to try turning it on again in ~2 weeks. If no more issues pop up then it will stay on, otherwise we may have to turn it off again.
I don’t know Arabic so I never actually noticed that issue… I’ll look into it, but I won’t let it block release (unless this is actually worse than how it is now?).
This is the source string from the text label, which I got from google translate:
I did not give a specific day. I’ve submitted the fix, but it will take a while before it makes its way into a release. It took a while to get through code review.
I tried to turn the new typesetter on again last week and ended up having to turn it off again. There were two issues that came up and I now have fixes for both of them.
I’ll probably be turning it on again in 2-3 weeks. Hopefully there won’t be further issues that requires the new typesetter to be turned off. I’ll also try to get time to work on making Arabic work properly under the new typesetter soon.
The new typesetter supports this, but none of our current fonts are cursive. We would have to add a new font for it such as Lobster.
We’re currently avoiding shipping additional fonts because of download size limitations. I want to fix this in the future so that we can ship more fonts.