All of the LocalizationTable’s functions are now documented.
Most of these functions are designed to be handled directly with the data fetched from the GetEntries method.
I suspect there will be a plugin developed for editing LocalizationTables in-studio at some point in the future.
Man, some of these types are getting out of hand, there probably needs to be a more sensible way to document them eventually. Not particularly readable for anyone who hasn’t buried themselves in C++ template code before.
The tricky part is there’s 80,000 something ideographs for proper CJK support. We bundle a 16 MB font on most platforms that includes 65K glyphs for that. Adding Bold would be another 20 MB. We broke some limits and caused some panic when we added the last font so we’ll have to figure something out. That’s our problem though.
I’m sure we’ll have to do something for this when we’re looking towards supporting Japanese proper.
For things like this, keep bugging us if it’s a priority for you. It helps is justify taking time away from other things to fix this stuff sooner.
Are there any stats about which percentage of roblox users use what language as their system language?
This would be useful for deciding which languages to translate first I imagine.
This seems like a sketch way of creating a localisation system.
Once you have the two language types, will the game automatically choose the language based on the user’s language settings or will you have to publish a separate place for different language versions?
Will there be ways to change titles/descriptions/badges/gamepasses into other languages? (So players know that the game is available in their language before even entering)
Also will the discoverability of my games improve if i translate them? (i.e. will Spanish players see games with Spanish translations in their recommended sections, etc)
Ok, i found the issue - if team create is on it never works for me. I don’t know if this is a known problem, i haven’t seen anyone else mention team creates.
But i went into one of my games, turned team create off and the localization buttons were activated again. Then i turned it back on and they were deactivated.
What would be the best languages to start out supporting? Like aside from English, what is the second, third, fourth, etc. most sought after language of Roblox users.
The plug-in itself only supports Spanish (that we explain in the tutorial) but the systems its built on, LocalizationService and LocalizationTables, don’t have these same limits.
You can go ahead and add a de-de column to the spreadsheet, import it, and now you’ve got German. You can type game.LocalizationService.ForcePlayModeRobloxLocaleId = "de-de" in the command bar to test it. Users won’t be able to select this language in game yet at this time though.
In scripts you could still create a Translator object with GetTranslator(“de-de”) and look up German strings in code.
You can do your own analytics for your games by reporting LocalizationService.SystemLocaleId.
I’ll see if we can share any of the data we have on our end, but no guarantees that I’ll be able to.
Also at this very early point you should probably think more about potential in these new markets more than what the numbers currently are. As a developer this is more of a “explore and create a new market” stage than a “capitalize on an existing, well understood market” like what we have in English speaking countries. It’s a different mindset.