Skip to content

Custom Dictionaries

Gargaj edited this page Dec 8, 2019 · 3 revisions

Adding custom dictionaries

Custom dictionaries will allow you to translate and localize things like newly added items.

To add a new dictionary, open a folder called "customDictionary" in your game root (data folder), and place a JSON file containing a key-value object where the key is the token and the value is the localized stream.

{
  "my_new_item": "This is my new item",
  "another_item": "This is a different item"
  [...]
}

Name the file according to the language ID, e.g. "0.json" for English, "1.json" for Hungarian, and so on.

Clone this wiki locally