Quick Start
Installation
Import the library
To start working with sl10n
, we need to import the main parts of the library.
Define a locale container
Locale container is an important part of sl10n functionality.
Create a SLocale
subclass and define all translation keys you will have.
Note
All locale container strings, even multiline ones, have str
type.
Initialize the SL10n
To reference the SL10n
system, create an SL10n
object.
Warning
You can't use SLocale
directly in SL10n
.
Treat it as an abstract dataclass.
You can also define a path where your translation files are stored,
what language is default, what filenames should be ignored
and what parsing implementation (implements pimpl.ParsingImpl
) to use:
Note that it only creates a reference to your localization system.
To load all locale files and pack their content into locale containers,
call SL10n.init()
:
Tip
SL10n.init()
returns a reference to your SL10n
object,
so you can use this oneline to initialize it immediately:
Put your strings into translation files
At first init, SL10n will create a default translation file
([working_dir]/lang/en.json
by default).
It will look like this:
{
"greetings_text": "greetings_text",
"main_menu_title": "main_menu_title",
"success_text": "success_text",
"error_text": "error_text"
}
Put in your actual text.
{
"greetings_text": "Hello World!",
"main_menu_title": "Main menu",
"success_text": [
"Success!",
"Now you can go back."
],
"error_text": [
"Error!",
"Please try again."
]
}
Later on, you can use modifiers in these files.
{
"greetings_text": "Hello World!",
"main_menu_title": "Main menu",
"success_text": [
"Success!",
"Now you can go back."
],
"error_text": [
"Error!",
"Please try again."
],
"$redump": true // redumps the file anyway
}
You can also create new lang files:
Tip
You can pass in override
argument to override existing file.
Warning
You can create lang files only before SL10n
init.
This is important to ensure that all translation files were initialized.
Get needed locale
After initializing the SL10n, you can access your locale
by using SL10n.locale(lang)
.
You can access locale strings just like object attributes. If you do need to use a string key:
Warning
If you pass an undefined key to locale.get(key)
-
it will return the key itself.
Set up locale lookups
You can define this function for fast locale lookups:
Basic template
To summarize it up, here's the basic template for sl10n
integration
you can use as a starting point:
If you want to know more details about each part of sl10n
- check other pages.