Locale containers
Motivation
As your product expands and starts to be used worldwide, it becomes essential to think about your audience and how to wide it. Localization can greatly improve the reach and impact of your application, making it more accessible for people in different countries.
So you decided to integrate it into your application.
You ended up creating a lang
folder containing all translations...
...and a parser that reads and stores these files in a mapping.
You can take any string you want by its key.
You may think "Sounds pretty simple"... and you'd be right.
This approach is pretty common and used in many applications and games (even Minecraft uses it).
But it's really error-prone. You can easily make a typo or refer to a different key with a similar name.
This becomes a real trouble once you change the schema of your translation files...
...or add new keys and forget about updating all the files.
What we just described here is extremely similar to the difference between statically typed and dynamically typed programming languages.
Fun fact about JavaScript
This is a valid JavaScript.
The thing is nowadays we have smart IDEs and code editors that can check for those errors and highlight them even for dynamically typed languages and even before we launched our program. That's why prototyping algorithms in languages like Python is much easier and faster now.
Sadly, we can't rely on IDE when it comes to checking what translation keys we are accessing as it would be really challenging to add this kind of functionality.
This is where the locale containers start to play.
The concept of locale container
The idea is to define a spec which determines what keys we can use in our application. This also creates a layer between translation files and our program.
That way we can clearly define what localization keys we have and what we haven't, which makes debugging it much simpler.
As an example, the spec allows us to check for undefined, unfilled or odd localization keys in the files.
It's really that simple.
Defining a locale container
In sl10n
, locale containers are defined by subclassing SLocale
:
Note
All locale container strings, even multiline ones, have str
type.
Then you need to reference it when defining an SL10n
object:
Warning
You can't use SLocale
directly in SL10n
.
Treat it as an abstract dataclass.
That's it.