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"
  }
}

Help Before version 1.0.0, the GUID field was absent. When using localization files from versions prior to this, the GUID will be filled with zeros.

Last updated