To add translations to your module is pretty simple.
1. Get a [translation object](https://docs.python.org/3/library/gettext.html#gettext.translation) for your domain using the internal [translation wrapper](https://gitlab.com/1337Misom/OpenRadio/-/blob/main/OpenRadio/core/Localizer.py) function `get_translator(DOMAIN: str, MODULE_FALLBACK=None)`. The first argument should be the domain for your module, the second one specifies the fallback language (after ISO 639-1) if it doesn't find it for `en`. e.g. `translator = self.Localizer.get_translator(builtin.about)`
2. Now use `install()` on the translation object to install it in your current function. e.g. `translator.install()`
3. You can now translate any string with `_()`. e.g. `_("Hello World")`