Possible to change language of items?Fixed

Hi. I have a Question. Is there a way to change the language of the items?

I would like to have the items in my own language instead of English. I hope anyone can help me :-(

I would like him to translate the language into the language chosen by the player himself.

I guess this code area is responsible for it....



var itemslist = new Dictionary<string, Dictionary<string, bool>>();
object type;
if (shop.TryGetValue("sell", out type))
{
foreach (string itemname in (List<object>)type)
{
Dictionary<string, bool> itemEntry;
if (!itemslist.TryGetValue(itemname, out itemEntry))
itemslist[itemname] = itemEntry = new Dictionary<string, bool>();
itemEntry["sell"] = true;
}
}
if (shop.TryGetValue("buy", out type))
{
foreach (string itemname in (List<object>)type)
{
Dictionary<string, bool> itemEntry;
if (!itemslist.TryGetValue(itemname, out itemEntry))
itemslist[itemname] = itemEntry = new Dictionary<string, bool>();
itemEntry["buy"] = true;
}
}

Hello, I am the new maintainer. At the moment I have no plans of adding in other language support.

But for now, I can help you create a different language version of it as a custom config file for the time being so that it's not in English for you. Please get back to me if this is something you are still interested in having done. 

Locked automatically