Localization File
With the default loader, the localization file is in JSON format, structured as follows:
{
// Localization file identifier.
// Automatically generated upon creation.
"_guid": "167dcd6f-c694-47ed-8cd9-226d73949f97",
// List of localizations.
"_localizations": {
// Localization identifier.
"Example": {
// Translation for this language. In this case, English.
"EN": "Example Text"
}
},
// List of languages used in the localization file.
"_languages": {
// Language name.
"EN": "english"
}
}
Last updated