Fermi Translations
Translate Wiki
To sign up for translate wiki go to https://translatewiki.net/ and sign up for an account, then you'll be asked to verify you're able to translate into the languages you claim you can translate for. This may take a few days. Once you're verified, please go to Fermis translate page and start translating Fermi!
The main Fermi translate wiki page is found here
How to Make Use of Translations Within Fermi
This is for people wanting to work on Fermis codebase, not translators.
To use translations within Fermi, you just need to use the I18n class, which within functions should generally work as follows:
const str = I18n.key1.key2("param1");
this would work for an en.json that looks something like
{
"key1":{
"key2": "The first parameter is $1"
}
}
If you're using the string in a non-standard way, please add the value to the same key in the qqq.json translation documentation file.